Forum Moderators: not2easy
Now the problem I encountered is that after a while my movie clips will stop playing. And I have no idea why. Here are two links so you know what I mean.
This one [snowman.ca] is the example that 'helpful' gave me. The movie clips just keep playing randomly.
This one [snowman.ca] is my flash movie (8 movie clips). If you let it play for 10, 15, or 20 mins the letters will stop falling. You will only see the snow and the logo.....
The flash files (.fla & .swf) are also uploaded if you want to save them and look at them. Thanks to anyone who tries to help me figure this one out!
Z
however, this is an undesired effect for you, so i'll give it a shot. are your letters contained within their own movie clip? if not, definitely place them in their own MC, this will run outside of the main timeline.
if so, look for any stop() actions that may be present on the MC timeline. look for any stated number of iterations for looping of your Flash in the HTML.
hope this helps... =]
Now some answers for you:
- The letters are contained within their own movie
- There are stop() actions but they are a part of the movie. And the movie is set to 'loop' so it should just keep looping then
I received help regarding making the MCs random. Both flash files can be accessed via links above. You download them and look at them that way if you want. Thanks...
since you are controlling it w/ ActionScript you should be able to count exactly when the titles quit. did you write the AS? if not, try to contact the scripter to see if you can insert a trace() and count the iterations your MC goes thru before it completely stops. (my actionscript chops are fairly rusty so it would take me awhile to find where in the code it breaks out of the title control loop.)
Playing .swf file locally with the flash player:
49 iterations / stopped at 'title'4
Running SnowmanHeader1.html locally:
41 iterations / stopped at 'title2'
Running SnowmanHeader1.html in Netscape using the link above:
25 iterations / stopped at 'title1'
Running SnowmanHeader1.html in IE using the link above:
41 iterations / stopped at 'title1'
Since there are 8 MCs it always stops when playing the first movie after randomizing the array:
8*6 + 1
8*5 + 1
8*4 + 1
8*5 + 1
I'm gonna look more into it in a little while but if you come up with an idea please share it :)