<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1022041" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1022041</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/dynamically-switching-scenes-flash-w-actionscript#comment-1136051</link>
    <description> &lt;p&gt;or just do this.. &lt;/p&gt;
&lt;p&gt;make each section a different .swf file.&lt;/p&gt;
&lt;p&gt;make a black (empty) movie clip on your main (nav) stage (Positioned in the top left corner of where you want your sections loaded) - name it loader.&lt;/p&gt;
&lt;p&gt;put an action on each button like so (changing the name of &quot;yoursection.swf&quot; to the name of the section file for each corresponding button).. &lt;/p&gt;
&lt;p&gt;---&lt;/p&gt;
&lt;p&gt;on (release) {&lt;br /&gt;
    unloadMovie(&quot;loader&quot;);&lt;br /&gt;
    loadMovie(&quot;yoursection.swf&quot;, &quot;loader&quot;);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;---&lt;/p&gt;
&lt;p&gt;bang your done - quick and painless - no need for extensive frameage.&lt;br /&gt;
make sure the sction file is exactly the size you want it (use masking and preloader to make it clean)&lt;/p&gt;
 </description>
     <pubDate>Mon, 11 Aug 2003 02:00:57 +0000</pubDate>
 <dc:creator>forwardtrends</dc:creator>
 <guid isPermaLink="false">comment 1136051 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/dynamically-switching-scenes-flash-w-actionscript#comment-1135944</link>
    <description> &lt;p&gt;There could be a better way of doing this, but this is what I did:&lt;/p&gt;
&lt;p&gt;This is in the button, setting a variable (in this case &quot;samples&quot;) for the script to use later on.  &lt;strong&gt;goto&lt;/strong&gt; being the name of the variable.&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;on (release) {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; goto = &amp;quot;samples&amp;quot;;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; gotoAndPlay (205);&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Then this is in the last frame of the scene (since it goes to frame 205 and plays to the end)&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;if (goto == &amp;quot;websites&amp;quot;) {&lt;br /&gt;	gotoAndPlay (&amp;quot;websites&amp;quot;, 1);&lt;br /&gt;} else if (goto == &amp;quot;samples&amp;quot;) {&lt;br /&gt;	gotoAndPlay (&amp;quot;samples&amp;quot;, 1);&lt;br /&gt;} else if (goto == &amp;quot;about&amp;quot;) {&lt;br /&gt;	gotoAndPlay (&amp;quot;about&amp;quot;, 1);&lt;br /&gt;} else if (goto == &amp;quot;resume&amp;quot;) {&lt;br /&gt;	gotoAndPlay (&amp;quot;resume&amp;quot;,1);&lt;br /&gt;} else if (goto == &amp;quot;home&amp;quot;) {&lt;br /&gt;	gotoAndPlay (&amp;quot;main page&amp;quot;, 1);&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;That&#039;s it!  Pretty simple.  Oh, and be careful if you put your navbar in a symbol - you&#039;ll need to go _root or _parent (forget exactly) to go up to the main level before sending it to the next scene.&lt;/p&gt;
 </description>
     <pubDate>Sat, 09 Aug 2003 01:28:00 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1135944 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/dynamically-switching-scenes-flash-w-actionscript#comment-1135907</link>
    <description> &lt;p&gt;that is exactly what im talking about....&lt;br /&gt;
*waits*&lt;/p&gt;
 </description>
     <pubDate>Fri, 08 Aug 2003 15:12:49 +0000</pubDate>
 <dc:creator>ianrules</dc:creator>
 <guid isPermaLink="false">comment 1135907 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/dynamically-switching-scenes-flash-w-actionscript#comment-1135904</link>
    <description> &lt;p&gt;This is excactly how the navbar on my flash site works, if I understand what you&#039;re talking about.  What it does is when the user clicks on a button, it plays a section in the current scene and then goes to another scene based on which button was clicked (if you look at it that&#039;s how the wipe in/wipe out works).  I&#039;ll have to wait until I&#039;m home to check the code for that, but I think it just sets a variable and then in the  last frame it says got to and play (variable).&lt;/p&gt;
 </description>
     <pubDate>Fri, 08 Aug 2003 13:43:01 +0000</pubDate>
 <dc:creator>Megan</dc:creator>
 <guid isPermaLink="false">comment 1135904 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-design-and-graphics/dynamically-switching-scenes-flash-w-actionscript#comment-1135895</link>
    <description> &lt;p&gt;Although I haven&#039;t done any Flash for ages I believe this is possible. Although it&#039;s a little easier than the method you&#039;ve described...Unfortunately I&#039;m at my day job right now so can&#039;t go in to Flash and check, I&#039;ll have a look tonight if I get time &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 08 Aug 2003 09:44:51 +0000</pubDate>
 <dc:creator>JeevesBond</dc:creator>
 <guid isPermaLink="false">comment 1135895 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
