Link to home
Start Free TrialLog in
Avatar of gbrandallen
gbrandallen

asked on

Navigation Action Script

I am trying to add navigation action scripting to my buttons which are imbedded in another movie. I seem to be doing something wrong because when I add the

on (release) {
      gotoAndPlay("Scene 1",25);
}

to the embedded button within the movie it goes to the frame within that movie instead of going to the main movie frame 25...help me please!

On a side note, what is the best way to create navigation script with in a web-site using action scripting.
Thank you!
Avatar of nysurf1
nysurf1

on (release) {
     _root.gotoAndPlay("Scene 1",25);
}
My suggestion of making the navigation via actionscript is keeping the root of the site with minimum frames - 1 frame for home 1 for about 1 for portfolio etc. inside them have the movieclips that can be with the actual movie-frames ,
p.s.
In general its recommended to use labels and not scenes
ASKER CERTIFIED SOLUTION
Avatar of Aneesh Chopra
Aneesh Chopra
Flag of India 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