Controlling flash

x-eagle

New Member
I want to be able to controll all my flash movies that i have on a page.


I want to have something like this

frame 1

frame 2

i want all the flash movies on my page to goto frame1 when this is clicked

and frame 2 when you click the second link.


Can anyone help me i am sure its easy.....i hope.


Thanks


Tim:D
 
strange ???
put these command in each frame

stop();
movie1.play();
movie2.play();
...
movieN.play();

put this command for a link (link made of button symbol not dynamic text)

on(release)
{
gotoAndStop(1); //or gotoAndStop(2)
}

anyway, it's strange :D
 
thanks for the reply but i need something more than that.

i need something to change all movies within my page it has about 10 now and its growing...

So i need a document.gotoframe(1) or (2) somert like that ??


Any ideas ?? thanks btw and whats strange ??


Tim
 
do you mean your movie can move back or forward between frame 1 and frame 2
oh no, the movies is fixed at a frame
hope I understand you right, anyway, strange means your flash has only two frame :)
 
i will explain fully...


I have a clan website and it has a roster with pictures of all our members.
when you click on the flash it goes to frame 2 witch has the members details.
Click it again and it will go back to the picture (frame 1).

I would like to make it so all the flash movies on the roster page change when i click a link like.


Show : Pic | Details


Somert like that...is it possible to do that ??


Thanks

Tim:D
 
Back
Top