Buttons & MC's

i have the following code for an MC, thanks to pom :cool: :

onClipEvent(load){
ts=175;
k=.6;
damp=.8;
}
onClipEvent(enterFrame){
as=(ts-_xscale)k;
vs+=as;
vs
=damp;
_xscale+=vs;
_yscale+=vs;
}

if you create an MC and paste that code in the actions you will see my desired effect…

but i want to adapt the code to work the a button on the rollOver state, so when your cursor moves over the button the above effect takes place. I’ve tried experimenting around but i cant figure it out. :-\ I really need to work on my actionscript skills, i’d really appreciate some help from anyone…

hope you all can help :slight_smile: thanks…

hehe… Ask yourself: how is everything supposed to work, and when. What kind of event handlers you are going to use, etc.

pom :slight_smile:

give me another clue :stuck_out_tongue: lol, ive done changed the onClipEvent to on (rollOver) but the object moves diagnally to the bottom right corner while zooming and it zooms/moves in stages rather than clean and smooth :-\

cheers :slight_smile:

P.S. whats the best way to improve my actionscripting skills :frowning: ?

*Originally posted by joso *
**P.S. whats the best way to improve my actionscripting skills :frowning: ? **
Work, practice, read tutorials, articles, break flas, check the forums… But don’t attempt anything too crazy. :slight_smile:

Hint: Here is how I could describe that effect:

normal state: nothing happens.
rollover: the button calls the function. It must execute all the time, not simply on the rollover.

This last thing means that you have to manipulate dynamically the enterFrame of the clip…

at last!!! i have a button looking exactly the way i want it to. thanks pom :slight_smile:

check it out http://www.liquid2k.com/omd/button.html

i have to put each button in an MC though, which is kinda annoying :-\ dunno if theres any other way, but im proud of myself now :stuck_out_tongue:

thanks…:cool:

Looking very good, man! And with MX, you don’t need to put buttons inside clips or clips inside buttons: you can use clips with buttons handler. Basically, you did it the Flash 5 way (which is good but it’s too bad not to take advantage of the new possibilities).

But that’s really a cool effect. Why don’t you write a tutorial? :slight_smile:

pom :asian:

hehe :slight_smile: i might just do that, thanks for all your help pom :cool: