Free flash menu - Reorder menu
I've been doing a "spring cleaning" of files on hard disk and I've found this little experiment I've done, some time ago.
I haven't look at the code, it probably can be done more elegant, but it will do the job.
I have use Tweener at first, but change this version to use Tweensy instead.
Beside Tweensy (in com and fl folders) you'll find 3 files in subhaus folder, ReorderMenuUp.as, ReorderMenuDown.as and MenuItm.as. You can delete the last one and create you own "menu itm" - movie clip. Just make sure to put inside it dynamic text field named itm_txt and in Library under Properties check "Export for Action Script" and under Class put MenuItm.
Usage:
import subhaus.reorderMenu.*;
var myArr:Array = new Array("1.about", "2.biography", "3.work",
"4.links", "5.contact");var myMenuUp:ReorderMenuUp = new ReorderMenuUp();
myMenuUp.Meni(myArr);
addChild(myMenuUp);
and you'll get something like this...
In zip, you'll also find a .fla file, in case you didn't understand explanation.
You can use it where ever you like.




Comments