[Flashcoders] Movie Clip Loaded or not

2005-12-22 Thread Sumeet Kumar
Hi All I m using loadMovie Command to load a image in an empty Movieclip. but how to check whether the image is loaded or not. i.e mc.loadMovie (image.jpg) id = setInterval(fnCheckUploading,1) fnCheckUploading =function () { if (mc._width2){

RE: [Flashcoders] Movie Clip Loaded or not

2005-12-22 Thread Gaurav Kaushal
, December 22, 2005 3:53 PM To: Flashcoders mailing list Subject: [Flashcoders] Movie Clip Loaded or not Hi All I m using loadMovie Command to load a image in an empty Movieclip. but how to check whether the image is loaded or not. i.e mc.loadMovie (image.jpg) id = setInterval(fnCheckUploading,1

Re: [Flashcoders] Movie Clip Loaded or not

2005-12-22 Thread Roman Blöth
Sumeet Kumar schrieb: Hi All I m using loadMovie Command to load a image in an empty Movieclip. but how to check whether the image is loaded or not. i.e mc.loadMovie (image.jpg) id = setInterval(fnCheckUploading,1) fnCheckUploading =function () { if

Re: [Flashcoders] Movie Clip Loaded or not

2005-12-22 Thread Jorge Rego
. MovieClipLoader.onLoadComplete handler is invoked when a file has completed downloading. - Original Message - From: Sumeet Kumar [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Thursday, December 22, 2005 10:23 AM Subject: [Flashcoders] Movie Clip Loaded or not Hi