Click to See Complete Forum and Search --> : Flash Emergency - Respond ASAP!
JaCkinbOx
12-10-2005, 03:08 AM
I've got a Flash movie and I've got MX 2004 and I've put in the stop action but I can't get it to play from a button. I've tried everything that I can think of, and it's due at 1:30 tomorrow.
To clarify, this is for my girlfriend's class, not me. ;p
Help! I've been looking for tutorials and references for hours but nothing's working. The college computers can't play Quicktime movies, and it's illegal to download anything so that rules out lynda.com as a resource. :(
John G
12-10-2005, 03:50 AM
On the button itself:
on(release){
gotoAndPlay(2);
}
2 being your frame number or your frame name in quotes.
There's a next frame call but I don't remember 100% right now.
DesignerScott
12-10-2005, 04:54 AM
First of all... Try this on the button.:
on(release){
_parent.gotoAndPlay(_parent._currentframe);
}
Use _parent because you actually want to play the timeline that the button is in, not the play the timeline of the button.
_parent._currentframe can be substituted for any number or "name".
There's a next frame call but I don't remember 100% right now
on(release){
_parent.nextFrame();
}
But it will only advance to the next frame and stop, not keep playing.
Hope that clears up the problem and isn't too late.
Mickoes
12-11-2005, 07:37 PM
if you can't download, can you acess the registry? cause some school block the acess of IE dl
DesignerScott
12-11-2005, 07:46 PM
One word.... HUH ?
JaCkinbOx
12-12-2005, 05:33 PM
Hey, folks, I just wanted to let you know that we did find a solution in time.
Thank you very, very much for your effort!
reuber1
12-12-2005, 07:32 PM
What fixed it?
JaCkinbOx
12-13-2005, 07:21 AM
I'm not sure. I didn't get a good look at it.