OSXtotheZ
Feb 7 2008, 09:39 AM
i need flash actionscript help too. I did this mock up for a friend but I use traditional flash methods to accomplish it i guess flash pros would say i faked it. There's probably an actionscript way to do it better? Not sure maybe one of you guys can tell me, show me, point me in the right direction.
http://www.idgraphic.com/greyrock/grey_rock.html Anyway any help would be appreciated
trioptic
Feb 8 2008, 08:25 PM
once again ill suggest the fusekit at mosessupposes.com
to acheive the same effect it would be fairly easy (although a steep learning curve).
you would just write
clipname_mc.onRollOver=function(){
this.scaleTo(150);
}
that would make the clip grow to 150% it's original size when hovering over it. Then you can shrink it back to place like this:
clipname_mc.onRollOut=function(){
this.scaleTo(100);
}