User Guide
activateButton() 229
Parameters
point(x, y)
Required. A point in Stage coordinates that specifies the location of the embedded
DVD menu item.
Example
This statement activates the hilite of the menu item at a specified Stage location:
-- Lingo syntax
member("movie1").activateAtLoc(point(100, 200))
// JavaScript syntax
member("movie1").activateAtLoc(point(100, 200));
See also
DVD
activateButton()
Usage
-- Lingo syntax
dvdObjRef.activateButton()
// JavaScript syntax
dvdObjRef.activateButton();
Description
DVD method; activates the currently selected menu button.
This method returns 0 if successful.
Parameters
None.
Example
This statement activates the menu button on a specified cast member:
-- Lingo syntax
sprite(1).member.activateButton()
// JavaScript syntax
sprite(1).member.activateButton();
See also
DVD