Hi. :)

I'm not sure if this could be an issue in your situation or not - or if you
already have it taken care of - but it came up on a project I worked on
recently and I thought I'd mention it:  If you are loading the images from a
different domain than the one that the Flash file is on, you have to set the
"context" property of the Loader class when you call the "load()" method.
For example:

image_loader.load(new URLRequest(image_url), new LoaderContext(true));

This will cause the Loader to check for a cross domain policy file on the
image file's server.  You have make a crossdomain.xml file which gives
access permissions to the Flash file's server and place it in the root
folder of the image file's server, or just add the Flash file's server if
the image file's server already has a cross domain policy file.

You should be able to load the image if you skip setting the Loader's
context and setting up the cross domain policy, but when you try to access
it's bitmap data you'll get a Security error.


------------------------------
Andrew Murphy
Interactive Media Developer
amur...@delvinia.com

Delvinia 
370 King Street West, 5th Floor, Box 4 
Toronto Canada M5V 1J9
P (416) 364-1455 ext. 232
F (416) 364-9830  
W www.delvinia.com




CONFIDENTIALITY NOTICE
This email message may contain privileged or confidential information. If
you are not the intended recipient or received this communication by error,
please notify the sender and delete the message without copying or
disclosing it.

AVIS DE CONFIDENTIALITÉ
Ce message peut contenir de l'information légalement privilégiée ou
confidentielle. Si vous n'êtes pas le destinataire ou croyez avoir reçu par
erreur ce message, nous vous saurions gré d'en aviser l'émetteur et d'en
détruire le contenu sans le communiquer a d'autres ou le reproduire.




-----Original Message-----
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Kevin
Holleran
Sent: March-28-11 11:25
To: Flash Coders List
Subject: [Flashcoders] Reusing an Image

Hi,

I am loading some images into an array of loaders.  Is there a way to bind
these to a class or something to reuse?  So the image at images_loader[0]
may be used three times.

Thanks for your help.

Kevin
_______________________________________________
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