
If anyone can point me to some tutorials, or provide a basic idea of what I should do for this. Thanks for the help in advanced its greatly appreciated.
Posted 29 January 2007 - 03:00 PM

Posted 29 January 2007 - 04:23 PM
Posted 29 January 2007 - 04:37 PM
Posted 29 January 2007 - 05:13 PM
Posted 29 January 2007 - 05:19 PM
darkson01, on Jan 30 2007, 09:13 AM, said:
on(rollOver) {
this.onEnterFrame = function() {
rectMc._x -= (rectMc._x-this._x)/5;
}
}
on(rollOut) {
delete this.onEnterFrame;
}
Posted 29 January 2007 - 05:51 PM
Ben, on Jan 29 2007, 10:19 PM, said:
darkson01, on Jan 30 2007, 09:13 AM, said:
on(rollOver) {
this.onEnterFrame = function() {
rectMc._x -= (rectMc._x-this._x)/5;
}
}
on(rollOut) {
delete this.onEnterFrame;
}
Posted 29 January 2007 - 08:54 PM
on(rollOver) {
rectMc.onEnterFrame = function() {
this._x -= (this._x-BUTTONNAME._x)/5;
}
}
//NO NEED FOR ROLLOUT CODE
//Also, replace BUTTONNAME with, well, the buttons name I guess...
Posted 29 January 2007 - 11:37 PM
Posted 30 January 2007 - 04:11 AM
Posted 30 January 2007 - 03:01 PM
Edited by DJayAA, 30 January 2007 - 03:02 PM.
Posted 30 January 2007 - 09:44 PM
0 members, 1 guests, 0 anonymous users