Jun 11, 2003 #1 simonWMC Programmer Dec 2, 2002 180 GB hello, i feel a bit stupid asking this question, as i really should know........ what is the actionscript command to close down the movie ? ta muchly
hello, i feel a bit stupid asking this question, as i really should know........ what is the actionscript command to close down the movie ? ta muchly
Jun 11, 2003 1 #2 billwatson Instructor Dec 18, 2002 2,312 CA close_btn.onRelease = function(){ getURL("javascript:self.close()" } Upvote 0 Downvote
Jun 11, 2003 Thread starter #3 simonWMC Programmer Dec 2, 2002 180 GB that is brilliant Bill - thankyou. only, what about if not viewing in a browser, i need to publish for projecter. ie, as an exe Upvote 0 Downvote
that is brilliant Bill - thankyou. only, what about if not viewing in a browser, i need to publish for projecter. ie, as an exe
Jun 11, 2003 2 #4 wangbar Programmer Jul 23, 2001 1,906 GB Then it's: close_btn.onRelease = function(){ fscommand('quit'); } Upvote 0 Downvote
Jun 11, 2003 Thread starter #5 simonWMC Programmer Dec 2, 2002 180 GB Thankyou. You both deserve a star !!!!! Upvote 0 Downvote