mordaut
September 3, 2004, 3:24pm
1
ok so i have made this module using a tutorial. it is a bunch of squares and each one enlarges when you roll the mouse over them. im thinking of modifying the module to make a sorta flash menu type thing.
however, when you move the mouse to fast over a few adjacent squares, they enlarge and shrink really really fast; it looks like they are spazing…is there a way to prevent this from happening?
i probably didnt give enough info…but yea…thanks to anyone who helps me out…
system
September 3, 2004, 3:30pm
2
mordaut:
ok so i have made this module using a tutorial. it is a bunch of squares and each one enlarges when you roll the mouse over them. im thinking of modifying the module to make a sorta flash menu type thing.
however, when you move the mouse to fast over a few adjacent squares, they enlarge and shrink really really fast; it looks like they are spazing…is there a way to prevent this from happening?
i probably didnt give enough info…but yea…thanks to anyone who helps me out…
this might help
(i answerd a question similar to this in the link):
http://www.kirupaforum.com/forums/showthread.php?t=68616" target=“_blank”>[url=“http://www.kirupaforum.com/forums/showthread.php?t=68616”]http://www.kirupaforum.com/forums/showthread.php?t=68616
system
September 3, 2004, 3:30pm
3
mordaut:
ok so i have made this module using a tutorial. it is a bunch of squares and each one enlarges when you roll the mouse over them. im thinking of modifying the module to make a sorta flash menu type thing.
however, when you move the mouse to fast over a few adjacent squares, they enlarge and shrink really really fast; it looks like they are spazing…is there a way to prevent this from happening?
i probably didnt give enough info…but yea…thanks to anyone who helps me out…
this might help
(i answerd a question similar to this in the link):
[color=#003366]http://www.kirupaforum.com/forums/showthread.php?t=68616 [/color]
system
September 3, 2004, 3:46pm
4
eh thanks, but my comp wont open the flash file the swf file doesnt do anything…
could you try explaining it to me?
system
September 3, 2004, 4:12pm
5
well ok i was lazy so i gave u the url…
anyways here is want u can do:
in the first frame put the following actions:
mSpeed = 7;
dX = 110;
dY = 100;
sX = 100;
sY = 100;
MovieClip.prototype.mScale = function(){
if(this.hitTest(_root._xmouse,_root._ymouse,true)){
this.onEnterFrame = function(){
this._xscale+=(dX-this._xscale)/mSpeed;
this._yscale+=(dY-this._yscale)/mSpeed;
}else{
this._xscale+=(sX-this._xscale)/mSpeed;
this._yscale+=(sX-this._yscale)/mSpeed;
}
}
}
and put the following on the mc:
onClipEvent(enterFrame){
this.mScale();
}
if u have any questions just ask!!!(don’t be afraid)…
by the way what virsion of flash are u using?