home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2004 June
/
Chip_2004-06_cd1.bin
/
program
/
flash
/
download
/
Textove_menu.swf
/
scripts
/
frame_1
/
DoAction.as
Wrap
Text File
|
2004-04-18
|
561b
|
17 lines
function testSelect(objekt, menu)
{
_root.txtStatus.text = "Klepnutí do textového pole";
}
function testMovie(objekt, menu)
{
_root.txtStatus.text = "Klepnutí do klipu";
}
var menuText = new ContextMenu();
var menuMovie = new ContextMenu();
menuText.hideBuiltInItems();
menuMovie.hideBuiltInItems();
menuText.customItems.push(new ContextMenuItem("Testovací položka",testSelect,true,true));
menuMovie.customItems.push(new ContextMenuItem("Další položka",testMovie,true,true));
_root.txtTest.menu = menuText;
_root.menu = menuMovie;