win8_appbar_remove_element(id);
Argument | Description |
---|---|
id | The id string of the element to be removed. |
Returns: N/A
With this function you can remove a previously defined element
from the App Bar for your game. The element id is the one that is
returned when using the function win8_appbar_add_element.
var i;
for (i = 0; i < 3; i += 1)
{
win8_appbar_remove_element(ab_element[i]);
}
The above code will remove three elements that have been created and had their ids stored in the variable array "ab_element" from the App Bar.