Link to home
Start Free TrialLog in
Avatar of jayyu2k
jayyu2k

asked on

loading a movie, and playing a particular frame

I want to load something.swf and go to a particular frame, on release of a Button.

I am playing, this.swf, When i click on products i have to load something.swf and go to frame 300 .

 How do i do this ?

ThanX in advance
Avatar of Zeffer
Zeffer
Flag of New Zealand image

on (release) {
  loadmovie("your_movie.swf",_root.your_instance);
  gotoAndPlay(300);
 }

Z
ASKER CERTIFIED SOLUTION
Avatar of Zeffer
Zeffer
Flag of New Zealand image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial