PDA

View Full Version : how to make that kind of sliding menu?


Tinobee
08-22-2009, 04:42 PM
hello :-)

i would like to know if one could tell me, how to create that kind of fade in buttons as to see here (http://www.5min.com/Video/Adobe-After-Effects-7---How-to-Use-the-Adobe-After-Effects-7-85331983). don't wanna ad this site but mean the player there which offers extra features hidden under the little arrow icon on each side of the player's video window.

could you pros probably give me some startup help and tell me how to create this?

regards, clubnite :)

omega3d12
09-02-2009, 10:06 AM
hello :-)

i would like to know if one could tell me, how to create that kind of fade in buttons as to see here (http://www.5min.com/Video/Adobe-After-Effects-7---How-to-Use-the-Adobe-After-Effects-7-85331983). don't wanna ad this site but mean the player there which offers extra features hidden under the little arrow icon on each side of the player's video window.

could you pros probably give me some startup help and tell me how to create this?

regards, clubnite :)

It would probably be easier in jQuery / JS... But in flash you can use Tweener and then just increment the delay prop.

var delay:Number = .03;

for each (var $item:Item in menuItems) {
Tweener.addTween($item, { y:yValue, alpha:1, delay:delay, transition:"easeOutExpo"});
delay += .05;
yValue+=$item.height;
}