Hi guys, I'm buidling a website and i'm getting on. Made my design with photoshop, photoshopped a preloader and made it work, and now i'm about to add the content.
http://users.pandora.be/dj_exca/definitief.html . Didn't include the buttons and content-shapes yet...
I know this code does the trick to go to different pages:
code:
whateverbutton.onRelease = function () {
gotoAndStop(3);
}
But that's only for static pages. What if I want to use tweening effects while going to different pages? That would be
code:
whateverbutton.onRelease = function () {
gotoAndPlay(3);
}
But then it would play from frame 3 and continue to the end till it passed all my different pages. This is not what I want it to do
when clicking a button i'd like it to play a certain framerange (which includes my tweens building up the page) and then let it stop on the frame where everything is finally loaded
To make it even harder; I'd want my previous page to fade out, with presetted motion tweens, which is a different range of frames.
To make a story short: I'd need a actionscript which plays, after clicking, a certain framerange, and when done with that, play a second framerange without interrupting and then stop at the last frame.
Thanks for the help in advance...