From: steeve on
There's more, but for some reason they wont render on this form
From: dzedward on
try

import mx.transitions.easing.Strong;
import mx.transitions.Tween;

var tw:Tween = new Tween(news_mc, "_width",
mx.transitions.easing.Strong.easeOut, news_mc._width, news_mc._width*2, 1,
true);
var tw2:Tween = new Tween(news_mc, "_height",
mx.transitions.easing.Strong.easeOut, news_mc._height, news_mc._height*2, 1,
true);

From: steeve on
darnit same errors
a bunch of "can not be found" and access errors.

I'm going to try it on a completely different machine
From: dzedward on
do you have any other AS3 specific code in the file? if not, publish down to AS2 and see if it works.. it should work regardless, but I'm just trying to eliminate things here.
From: steeve on
....same computer with another mac --

but then I tried it with AS2 and it worked!