Hello…
Im build my component, and im importing 2 mx classes
#initclip
function myComponent() {
import mx.transitions.Tween;
import mx.transitions.easing.*;
this.init();
}
…
on some method i have
var tween_handler:Object = new Tween(this.myObject, “_alpha”, Regular.easeIn, this.myObject._alpha, 100, 0.18, true);
trace("here: "+tween_handler);
my problem is…
if i test this component on the same FLA that im building it… everything goes ok… and the tween works, but if i make the SWC file and i try the componet in a new fla file, that tween handler is undefined…
and i only can put i working if i put on the movie that im using the component this
import mx.transitions.Tween;
import mx.transitions.easing.*;
tween_handler:Object = new Tween()
Any Help!!!
Best regards