The Tween Class

as simple as it could be… working on the example that i found in gotoandlearn.com about The Tween Class

my code goes like so: [AS]stop();
import mx.transitions.Tween;
import mx.transitions.easing.*;
// BOT ANIMATION
animStore = function (rotWhere, from, where) {
var rot:Tween = new mx.transitions.Tween(newStore, “_rotation”, Bounce.easeOut, this._rotation, rotWhere, 1, true);
var xScale:Tween = new mx.transitions.Tween(newStore, “_xscale”, Bounce.easeOut, from, where, 1, true);
var yScale:Tween = new mx.transitions.Tween(newStore, “_yscale”, Bounce.easeOut, from, where, 1, true);
};
newStore.onRollOver = function() {
if (this._rotation < 300) {
animStore(360, 100, 130);
}
};
[/AS]

but the object just freaks out, really dunno whats going on in here :q:
could someone just point me a way out in this dark room :stuck_out_tongue:
thx
am