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
Text File  |  2004-04-18  |  561b  |  17 lines

  1. function testSelect(objekt, menu)
  2. {
  3.    _root.txtStatus.text = "Klepnut├¡ do textov├⌐ho pole";
  4. }
  5. function testMovie(objekt, menu)
  6. {
  7.    _root.txtStatus.text = "Klepnut├¡ do klipu";
  8. }
  9. var menuText = new ContextMenu();
  10. var menuMovie = new ContextMenu();
  11. menuText.hideBuiltInItems();
  12. menuMovie.hideBuiltInItems();
  13. menuText.customItems.push(new ContextMenuItem("Testovac├¡ polo┼╛ka",testSelect,true,true));
  14. menuMovie.customItems.push(new ContextMenuItem("Dal┼í├¡ polo┼╛ka",testMovie,true,true));
  15. _root.txtTest.menu = menuText;
  16. _root.menu = menuMovie;
  17.