Button.menu - MACROMEDIA FLASH MX 2004-ACTIONSCRIPT LANGUAGE Reference

Actionscript language reference
Table of Contents

Advertisement

Button.menu

Availability
Flash Player 7.
Usage
my_btn.menu = contextMenu
Parameters
contextMenu
Description
Property; associates the ContextMenu object
The ContextMenu class lets you modify the context menu that appears when the user right-clicks
(Windows) or Control-clicks (Macintosh) in Flash Player.
Example
The following example assigns a ContextMenu object to a button instance named
The ContextMenu object contains a single menu item (labeled "Save...") with an associated
callback handler function named
Add the button instance to the Stage and name it myBtn_btn.
var menu_cm:ContextMenu = new ContextMenu();
menu_cm.customItems.push(new ContextMenuItem("Save...", doSave));
function doSave(menu:Object, obj:Object):Void {
trace( " You selected the 'Save...' menu item ");
}
myBtn_btn.menu = menu_cm;
Select Control > Test Movie to test the SWF file. With the pointer over
Control-click. The context menu appears with Save in the menu. When you select Save from the
menu, the Output panel appears.
See also
ContextMenu
class,
140
Chapter 2: ActionScript Language Reference
A ContextMenu object.
doSave
ContextMenuItem
with the button object
contextMenu
.
class, MovieClip.menu,
my_button
myBtn_btn
, right-click or
myBtn_btn
TextField.menu
.
.

Advertisement

Table of Contents
loading

This manual is also suitable for:

Flash mx

Table of Contents