Flasher Archive
[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]
Subject: | RE: FLASH: Load Movie question |
From: | Fabienne Hadkova |
Date: | Thu, 4 Nov 1999 06:59:33 GMT |
Thanks a lot, John, it seems now that I should have thought of it...
May I ask another question? Now movie2 loads inside of movie1. What if I
want movie1 to 'disappear'? I tried to play a bit with targets but it didn't
do anything. Is loadmovie the wrong approach - Should I use geturl instead?
I couldn't get it to work either.
Thanks again
Fabienne
-----Original Message-----
From: ownerchinwag [dot] com [ownerchinwag [dot] com]On">mailto:ownerchinwag [dot] com]On Behalf Of John
Croteau
Sent: Do, 4. November 1999 07:12
To: flasherchinwag [dot] com
Subject: Re: FLASH: Load Movie question
Hi Fabienne,
> I have a movie, let's call it movie1
> I have a button with 2 conditional actions:
> if (a<20)
> Go to Next Scene
> if (a>40)
> Load Movie ("movie2.swf", 1)
> End If
> End If
The above has a nested if statement inside of an if statement.
So a>40 will be activated when a<20 which of course will never happen.
Try something like:
if (a<20)
Go to Next Scene
End if
if (a>40)
Load Movie ("movie2.swf", 1)
End If
or
If (a < 20)
Go to Next Scene
Else If (a > 40)
Load Movie ("movie2.swf", 1)
End If
BTW, I would suggest not using scenes.
--
Coming Soon Flash 4 Web Animation F/X and Design
http://www.amazon.com/exec/obidos/ASIN/1576105555/flashcentral
----------- -----------------------
John Croteau croteauerols [dot] com (mailto:croteauerols [dot] com)
------------- -------------------------
FlashTek (Advanced Websites with Flash) http://www.FlashTek.com/
Flash Bible (Fast track to good Flash) http://www.FlashBible.com/
Flash Central(The Universe Starts Here) http://www.FlashCentral.com/
The Flash Tech Resource (Tech Notes) http://www.FlashCentral.com/tech/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California
Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpchinwag [dot] com
Replies
Re: FLASH: Load Movie question, John Croteau
Replies
Re: FLASH: Load Movie question, John Croteau
[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]