home *** CD-ROM | disk | FTP | other *** search
- 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;
-