Flash Menu AS Help
- Started
- Last post
- 4 Responses
- stevegee
I need some actionsript help...
I have a list of headings for a bar graph that'll be animated in flash and I want to make the list so that when the user rolls over the word gets bigger and eases forward.There's an example using blocks here but I don't know the script too well...
http://www.flashkit.com/movies/I…Can someone help me break it down so I can implement it on my project?
- fusionpixel0
you can dowload the FLA
http://www.flashkit.com/download…
that will help you to understand better the script.
- cvirus0
newBut.onRollOver = function() {
this.onEnterFrame = function() {
if (this._xscale100) {
this._xscale-=5;
this._yscale-=5;
}
}
}
- cvirus0
ergh, code didn't take.
- stevegee0
I've downloaded the file, trying to dig through it.
cvirus... can you help me understand how to implement it?