timeline to tween
timeline to tween
Out of context: Reply #3
- Started
- Last post
- 3 Responses
- fyoucher10
if ur using mctween, why not just use frameTo() ?
btn1.onRollOver=function():Void {
this.frameTo(rolloverEndFrameNum... 0.4, "linear");
};btn1.onRollOut = function():Void {
this.frameTo(rolloverStartFrameN... 0.4, "linear");
////// or.... ///////
this.frameTo(this._totalframes, 0.4, "linear");
////// or.... ///////
this.frameTo(1, 0.4, "linear");
};