;

PDA

Click to See Complete Forum and Search --> : Create a menu help


NotSoNormal
05-26-2007, 04:18 PM
Hello everyone,
I was wondering if this is possible to make. I want to make a moving menu for my website. What I mean is this is that have my set of links then when someone moves the mouse over a link it moves into the middle and maybe displays extra links. I have a 'small' knowledge of flash and a lot of knowledge of Paint Shop Pro and Photoshop so I know all about layers. If this is very difficult to do/Unclear about what I want, I'll understand just say :)
Thank-you

cancerinform
05-26-2007, 07:21 PM
If you are new to Flash start out out with frame to frame animation. When you have a button and want to move the menu:

myBut.onRelease = function()
{
this._parent.gotoAndPlay("frame2");
}

Which Actionscript do you want to use? The above example is AS2.