Anonymous
|
Hi. I have a problem with flash.geom.triangle in mTasc.
I have tried in Macromedia Flash:
import flash.geom.Rectangle;
var rec:Rectangle = new Rectangle(0, 0, 100, 40);
text1.text = rec.toString();
and it worked. I saw {0,0,100,40} on screen.
I tried to add this code to my project, which is compiled by mTasc.
import flash.geom.Rectangle;
.........
var rec:Rectangle = new Rectangle(0, 0, 100, 40);
textTak.text = rec.toString();
|