help!!
help!!
Out of context: Reply #7
- Started
- Last post
- 9 Responses
- autonoma0
Put the button in a movie clip. On that movie clip, add this script:
onClipEvent (enterFrame) {
if (over) {
this._xscale += (150-this._xscale)*.30;
this._yscale += (150-this._yscale)*.30;
}
if (!over) {
this._xscale += (100-this._xscale)*.30;
this._yscale += (100-this._yscale)*.30;
}
}Then add this script to the button:
on (rollOver) {
over = true;
}
on (rollOut) {
over = false;
}That's it.