Re: [Flashcoders] Trying to know size of loading swf

2007-06-20 Thread natalia Vikhtinskaya
Thank you very much. Yes this is the reason. 2007/6/20, elibol <[EMAIL PROTECTED]>: I believe it's a timing issue. It may take an extra frame to actually initialize... Try running an onEnterFrame from onLoadInit to check the size continually until it's greater than 0. function onLoadInit(_mc:M

Re: [Flashcoders] Trying to know size of loading swf

2007-06-20 Thread elibol
I believe it's a timing issue. It may take an extra frame to actually initialize... Try running an onEnterFrame from onLoadInit to check the size continually until it's greater than 0. function onLoadInit(_mc:MovieClip) { _mc.onEnterFrame = function(){ trace(this._width); trace(this._height); //