{"id":566,"date":"2008-03-09T19:35:00","date_gmt":"2008-03-10T02:35:00","guid":{"rendered":"http:\/\/webmaster.www.websitesinaflash.com\/?p=105"},"modified":"2022-08-08T16:20:05","modified_gmt":"2022-08-08T23:20:05","slug":"flash-random-scene-actionscript","status":"publish","type":"post","link":"https:\/\/www.websitesinaflash.com\/2008\/03\/flash-random-scene-actionscript\/","title":{"rendered":"Flash Random Scene ActionScript"},"content":{"rendered":"

I recently created a Flash Animation that would randomly play one of three different Flash scenes. Then after each scene, it would go back to the beginning and randomly choose another scene to play. This was all programmed in ActionScript in Flash.<\/p>\n

I have a feeling that even though this code is very simple, it will save a little bit of time if I have it stored here for the future.<\/p>\n

\/\/ First Choose a random number
\n\/\/from 0 to the number of scenes
\nnum = random(3);<\/p>\n

\/\/Depending on which random number
\n\/\/was chosen, go to a flash scene
\nswitch (num)
\n{
\ncase 0:
\ngotoAndPlay(“scenename”, 1);
\nbreak;
\ncase 1:
\ngotoAndPlay(“scenename1”, 1);
\nbreak;
\ncase 2:
\ngotoAndPlay(“scenename2″, 1);
\nbreak;
\ndefault:
\ntrace ( ” no case tested true ” )
\n}<\/p><\/blockquote>\n

That’s it!
\n-Ashton Sanders<\/p>\n","protected":false},"excerpt":{"rendered":"I recently created a Flash Animation that would randomly play one of three different Flash scenes. Then after each scene, it would go back to the beginning and randomly...","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[405],"tags":[68,96,161,162,295],"acf":[],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/posts\/566"}],"collection":[{"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/comments?post=566"}],"version-history":[{"count":0,"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/posts\/566\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/media?parent=566"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/categories?post=566"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.websitesinaflash.com\/wp-json\/wp\/v2\/tags?post=566"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}