Help - Search - Members - Calendar
Full Version: Me Too. Help with Flash Actionscript
InsanelyMac Forum > Everything Else > Creativity > Web and Graphical Design
OSXtotheZ
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
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);
}
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.