nate.rate
October 13th, 2009, 06:23 AM
I'm pretty new to flash so apologies if i use incorrect terminologies. I'm trying to create a sliding interface set in a manner demonstrated in the diagram above.
On MAIN PAGE there will be objects which will enable you to navigate around the site. i.e. if you click on the stick man the movie clip will navigate to the left and location you to the contributors page. If you click on the camera the movie clip will navigate to the right. Click on the TV the Movie will navigate downwards.
Each page is only visible when you click on the relevant icon (i.e if you click on the stick man the movie clip slides to the left locating you to CONTRIBUTORS PAGE and MAIN PAGE comes off the screen.
In order to construct a site which navigates this way.......how would i do it and what is the Actionscript for this sliding interface style
Do i combine all pages together and make one big movie clip...using script such as.....
public function moveX(event:Event):void {
Xspeed = (mover_mc.x-newX)/
2+Xspeed)/2.5;
mover_mc.x -=Xspeed;
etc etc etc.....
Thanks
On MAIN PAGE there will be objects which will enable you to navigate around the site. i.e. if you click on the stick man the movie clip will navigate to the left and location you to the contributors page. If you click on the camera the movie clip will navigate to the right. Click on the TV the Movie will navigate downwards.
Each page is only visible when you click on the relevant icon (i.e if you click on the stick man the movie clip slides to the left locating you to CONTRIBUTORS PAGE and MAIN PAGE comes off the screen.
In order to construct a site which navigates this way.......how would i do it and what is the Actionscript for this sliding interface style
Do i combine all pages together and make one big movie clip...using script such as.....
public function moveX(event:Event):void {
Xspeed = (mover_mc.x-newX)/
2+Xspeed)/2.5;
mover_mc.x -=Xspeed;
etc etc etc.....
Thanks