bluearrow VIP Member VIP โ 20 โ Impact 124 Jun 30, 2006 769 views 1 reply #1 hey guys just need to know few code likes 01. Action script for disable the flash menu bar in swf or exe files 02. command for stoping music
hey guys just need to know few code likes 01. Action script for disable the flash menu bar in swf or exe files 02. command for stoping music
Mr. Websites VIP Member VIP โ 20 โ Impact 34 Jun 30, 2006 #2 1. You can use this to remove the menu bar from the projector: Code: fscommand ("showmenu", "false"); 2. To stop the music, replace "name" with the instance name of your button: Code: name.onRelease = function(){ StopAllSounds; }
1. You can use this to remove the menu bar from the projector: Code: fscommand ("showmenu", "false"); 2. To stop the music, replace "name" with the instance name of your button: Code: name.onRelease = function(){ StopAllSounds; }