[AS]Motion Tween bug?

[FONT=Tahoma]Hi,

One small question: there it is a bug in the motion tween class?
Because when load a movie like this:
[AS]
[/FONT]import mx.transitions.Tween;
import mx.transitions.easing.*;
var tw:Tween = new Tween (main_headline, “_xscale”, Elastic.easeOut, 0, 100, 3, true);
var tw1:Tween = new Tween (main_headline, “_yscale”, Elastic.easeOut, 0, 100, 3, true);
btn_home.onRelease = function () {
loadMovie (“home.swf”, “home”);
[FONT=Tahoma]}
[/AS]

the movieClip it is rotated with 90* ( degrees ). Do you have any answers???

Thank you!
[/FONT]

i don’t know why that <font face=“tahoma”> is there!

i will write the code again here:


import mx.transitions.Tween;
import.mx.transitions.easing.*;
btn_home.onRelease = function () {

var tw:Tween = new Tween(home,"_xscale",Elastic.easeOut,0,100,3,true);
var tw2:Tween = new Tween(home,"_yscale",Elastic.easeOut,0,100,3,true);
var tw3:Tween = new Tween(home,"_alpha",Elastic.easeOut,0,100,3,true);
loadMovie("home.swf","home");
}