The Tween class and speed

Im using the Tween class to change alpha of objects… though, setting speed to lowest “1”, the fade transition is rather slow still (with 24fps)

My code is:

import mx.transitions.Tween;
import mx.transitions.ease.*;
// alpha fra start
test._alpha = 0;
// rollover sæt til 100%
test.onRollOver = function(){
var mxTw = new Tween(this,"_alpha",Strong.easeOut,this._alpha,100,1,true);
}
// rollout sæt til 0%
test.onRollOut = function(){
var mxTw = new Tween(this,"_alpha",Strong.easeOut,this._alpha,0,1,true);
}
stop();

Any way to enchance the transition/fade/alpha change speed?

Best regards
Kasper

ahh got it … it’s ofcause x.x for speed… and not x,x … Duh !

x.x and not x,x … duh! :slight_smile: