Heya i managed to get a tutorial to make this menu in flash 5, however its 2004 now! hrm well im lookin to recode it somewhat into a newer version.
iterations=7;
_root.object0.number=0;
_root.object0.iterations=iterations;
for (i=1; i<(iterations+1); i++) {
duplicateMovieClip (“object0”, “object”+i, i);
_root[“object”+i].number=i;
_root[“object”+i].iterations=iterations;
_root[“object”+i].gotoAndStop(i+1);
}
Movieclip.prototype.tan_load=function(){
boolean=0;
mycol=new Color(this);
x=(2Math.PI)(number/iterations);
};
Movieclip.prototype.tan_update=function(){
x -= (_parent.tracer._x-400)/7000;
t = Math.tan(x);
_x = (t140)+400;
_xscale = Math.abs(t20)+100;
white=Math.abs(t40);
if(this.hitTest(_root._xmouse,_root._ymouse,true)){invert();} else {
mycol.setTransform({ra:100,ga:100,ba:100,rb:white,gb:white,bb:white})
_visible=1;
boolean=0;}
};
Movieclip.prototype.invert=function(){
boolean=!boolean;
_visible=!_visible
ca=(boolean200)-100;
cb=255-(boolean*255);
mycol.setTransform({ra:ca,ga:ca,ba:ca,rb:cb,gb:cb,bb:cb});
};
Movieclip.prototype.tracer=function(delay){
_x+=(_root._xmouse-_x)/delay;
_y+=(_root._ymouse-_y)/delay;
};
it should also be at http://pastebin.coconut.se/?id=2118
Thanks. the .fla is included… take a look at it and see if you can help