Hello,
if I create a new Flash file (AS3), press F9 and enter
stop();
trace("-----");
then it will print that line just once as expected.
But if I enter:
stop();
trace("-----");
var user:User = new User();
addChild(user);
user.x = user.y = 200;
user.userid = 53;
user.username = 'Алекс';
user.trix = 4;
user.bid = 1<<17;
user.scaleX = user.scaleY = 0.8;
user.avatar = '2_1211369175.jpg';
user.avatar = '458_1211369175.jpg';
Then I will see "-----" being printed again and again.
I wonder what's happening here.
My class User uses a Loader and is listed at http://pastebin.com/m60cbb775
Thank you for any hints
Alex
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders