This code was given to me to help out with a problem that I’m having::::
mymovie.onRollOver=function(){
this.gotoAndStop(2);
}
mymovie.onRelease=function(){
this.gotoAndStop(3);
}
mymovie.onRollOut=function(){
this.gotoAndStop(1);
}
My issue is this… where it says ‘function’ - does that get taken out or does something go in its place?
Also, what would go in the ()?
I’ve looked at AS3 tutorials, but none of them are really helpful to me to figure out what to use and how and when to use it.
I don’t know enough AS3 to just go and write something from a template and the reading I’ve been doing hasn’t been the right stuff I guess cause I’m not really learning enough.
The effect I’m trying to get is to have a movie clip act as a button.
I can’t believe I’ve been looking into this for 3 days and I can’t get anywhere with it. It shouldn’t be this hard…there really should be tutorials for things like this. I know there’s AS3 tutorials, but they DON’T go over everything. There should be more tutorials for flash…like there are for Photoshop or other graphic software…but it takes me DAYS just to find a partial answer to my question, it’s REALLY frustrating especially since I’m only learning this software for my employer.
So, if someone could please, just help me write this, I would be really appreciative.
Thank you.