Menu

can some one make a menu like this

don’t know if you can see what i mean. but I would like to have rollover. buttons that expand.

they start
15 px. _x
15 px. _y

and expand to
150 px. _x
15 px. _y

when you rollover.

The button next to the expanting one move up to the left.

Well you could use

[AS]
onClipEvent(load){
_root.targW = 15;
}
onClipEvent(enterFrame){
_root.bar._width = _root.targW - (_root.targW - _root.bar._width)/1.2;
}
[/AS]

on a new movieclip somehwere on the stage (doesn’t matter where)

And then use this for the bar (which should be a button with the registration point on the right side I think)
[AS]
on(rollOver){
_root.targW = 150;
}
on(rollOut){
_root.targW = 15;
}
[/AS]

But then there’s the problem of the other buttons that have to move along … I’ll see what I can do, or else leave that someone else.

try this link…
i gues u will get it
http://www.newarchitectmag.com/archives/2001/08/hall/

or atleast understand the concept…

also i am sending u the file…check iT out is this wat u want.

this by jain.

yeah that looks like the menu she is after…now we just have to get it to really work as a proper nav ;-))))

it’s he