I've never tried to get a mouse event on a loader. Do you have a
progress bar? I would add a MouseEvent listener to the progress bar,
not the loader itself. If that doesn't work, add a movie clip with a 0
alpha on top of the loader, and attach the mouse listener to that. You
could use a standard Flash shape like a rectangle, and lengthen it in
sequence with the progress bar, You would want something like this to
keep it in sequence:

progBar.addEventListener(ProgressEvent.PROGRESS, progressHandler);

and, in your progressHanler function, set its length and height to
that of the progress bar.

Cordially,

Kerry Thompson

On Mon, Jun 11, 2012 at 1:08 PM, Ted Lehr <t...@qvine.com> wrote:
> So I have a Loader that is loading an image:
>
> var Img:Loader = new Loader();
> var urlReq:URLRequest = new URLRequest("http://www.someurl.com";);
>
> img.load(urlReq);
>
>
> and I am trying:
>
> img.addEventListener(MouseEvent.ROLL_OVER,xxxxx);
>
>
>
> this does not seem to work - does that make sense? and if so, how can I get a 
> mouse event on the loader - do I need to load it in another mc?
>
>
> Thanks!
>
> _______________________________________________
> Flashcoders mailing list
> Flashcoders@chattyfig.figleaf.com
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to