Jump to content

Me Too. Help with Flash Actionscript


OSXtotheZ
 Share

2 posts in this topic

Recommended Posts

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

Link to comment
Share on other sites

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);

}

Link to comment
Share on other sites

 Share

×
×
  • Create New...