I'm having problems with the code below. For some reason when I export I only see the last tween appear and thats it. I'm using the overwrite manager but I'm not sure if it's working correctly or not. I'm not a advanced Flash user so any help would be greatly appreciated. I have the file attached as well.
import com.greensock.*;
import com.greensock.easing.*;
OverwriteManager.init(OverwriteManager.AUTO);
// Intro Animations
TweenLite.from (gfx7, 1, { _alpha:0 });
TweenLite.from (statement, .7, { _x:7, _y:175, _alpha:0, _delay:0.5 });
TweenLite.to (statement, .7, { _x:7, _y:175, _alpha:0, _delay:3.5 });