View Full Version : menu
T-O
June 26th, 2003, 05:23 AM
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.
Voetsjoeba
June 26th, 2003, 06:58 AM
Well you could use
onClipEvent(load){
_root.targW = 15;
}
onClipEvent(enterFrame){
_root.bar._width = _root.targW - (_root.targW - _root.bar._width)/1.2;
}
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)
on(rollOver){
_root.targW = 150;
}
on(rollOut){
_root.targW = 15;
}
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.
cool blue
June 26th, 2003, 07:05 AM
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.
jain
June 26th, 2003, 07:11 AM
yeah that looks like the menu she is after.....now we just have to get it to really work as a proper nav ;-))))
T-O
June 26th, 2003, 01:55 PM
it's he
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.