Re: [Flashcoders] getting data from outside servers

2014-08-11 Thread Ross P. Sclafani
google crossdomain.xml
On Aug 11, 2014, at 10:54 AM, Ted Lehr t...@qvine.com wrote:

 So it seems Flash by default does not allow a movie to get data (say xml) 
 from another server. So if I have a movie on 
 http://www.thissite.com/movie.swf and in that movie I have:
 
 var xmlLoader:URLRequest = new URLRequest(http://www.thissite.com/data.xml;);
 
 Is there anyway around this?
 
 T
 ___
 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


[Flashcoders] getting data from outside servers

2014-08-11 Thread Ted Lehr
So it seems Flash by default does not allow a movie to get data (say xml) from 
another server. So if I have a movie on http://www.thissite.com/movie.swf and 
in that movie I have:

var xmlLoader:URLRequest = new URLRequest(http://www.thissite.com/data.xml;);

Is there anyway around this?

T
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Re: [Flashcoders] getting data from outside servers

2014-08-11 Thread Mike Starr
enforce coerce
(null)var xmlLoader:URLRequest = new URLRequest(
http://www.thissite.com/data.xml;);


On Mon, Aug 11, 2014 at 7:54 AM, Ted Lehr t...@qvine.com wrote:

 So it seems Flash by default does not allow a movie to get data (say xml)
 from another server. So if I have a movie on
 http://www.thissite.com/movie.swf and in that movie I have:

 var xmlLoader:URLRequest = new URLRequest(
 http://www.thissite.com/data.xml;);

 Is there anyway around this?

 T

 ___
 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


Re: [Flashcoders] getting data from outside servers

2014-08-11 Thread Karl DeSaulniers
Edit the swf to look for a relative path to find its XML.

Best,

Karl DeSaulniers
Design Drumm
http://designdrumm.com



On Aug 11, 2014, at 9:54 AM, Ted Lehr t...@qvine.com wrote:

 So it seems Flash by default does not allow a movie to get data (say xml) 
 from another server. So if I have a movie on 
 http://www.thissite.com/movie.swf and in that movie I have:
 
 var xmlLoader:URLRequest = new URLRequest(http://www.thissite.com/data.xml;);
 
 Is there anyway around this?
 
 T
 ___
 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