PDA

View Full Version : Nav system of 0-to-1.com


wownflutter
10-11-2002, 02:14 AM
I was just written that this is an easy navigational effect.

An mc with a dynamic label, some buttons and a bit of actionscripting in frame one.

I am still baffled.

Anyone game to make a quik-n-dirty tutorial for me (us) or whip up an fla I can rip apart and learn from...(?)

:-) Thanks

farafiro
10-16-2002, 02:31 PM
if u mean the mouse-follower buttons down, this is a bit easy//make a button
//convert it to a mc
//attach that code to it
onClipEvent(load){
speed = 10 //higher is slower
this._x = this._width/2 //to snap it to the right edge of the stage
//if the registration point is in its center
}
onClipEvent(enterFrame){
this._x +=(_root._xmouse-this._x)/speed
}