View Single Post
  #2 (permalink)  
Old Mar 24th, 2007, 16:35
JacobHaug's Avatar
JacobHaug JacobHaug is offline
SuperMember

SuperMember
Join Date: Dec 2005
Location: On Internet
Posts: 4,859
Thanks: 0
Thanked 0 Times in 0 Posts
Re: slideshow custom nav

Okay, so you make the forward and back buttons.

Then you make the slideshow, put the slide show into one big movieclip, and give that movieclip an instance name. Then use the following code to activate the buttons.

Code: Select all
on (release) {
    _root.billy.nextFrame();
}
Code: Select all
on (release) {
    _root.billy.prevFrame();
}
Reply With Quote