ActionScript 3.0 :: Load External Swf From Different Domain?
Nov 26, 2010I've been google'ing about it for hours and couldn't find the solution. I want to load external swf file wich is hosted in another domain.
View 1 RepliesI've been google'ing about it for hours and couldn't find the solution. I want to load external swf file wich is hosted in another domain.
View 1 Repliesi am trying to load an image from external domain and i got this message,
Code:
Attemping to launch and connect to Player using URL C:xampphtdocsuploading agimageshowtags.swf
[SWF] C:xampphtdocsuploading agimageshowtags.swf - 64905 bytes after decompression[code]....
Below is the script I'm using to pass a parameter to a script in the same server (and folder) as the flash file. It gives "null" as the required variable (use_url) value, instead of what the script is giving. The script itself works, when tested in a browser.
What it should do - it receives a value for "lesson_id" variable, passes it on to a script "movie_url" and receives a response with a new variable "real_url" and it's value.[code]...
i've done just about everything i can think of to load an external .swf located on a different domain.i have the crossdomain.xml file that reads like this:[code]my .swf is working when i test it offline, but when i upload it to another server, it completely fails at loading any external swfs.
View 5 RepliesI am trying to get a swf to load a xml that is hosted on an external server.As most of you probably know flash sandbox does not allow this though I have been told there is a work around by using a proxy.
View 2 RepliesI am trying to get a xml into flash from an external domain using a PHP proxy to get around the cross domain issue.
I have created a simple swf file that is meant to load the xml and print out some data from the received file. Unfortunately I havent been able to get it to work as yet. Here is the action script
Code:
var Sender = new LoadVars();
var GetData = new XML();
GetData.ignoreWhite = true;
[Code]....
I have a flash that loads from an rss feed (xml). It works great if i putt (www + my domain dot com) in the url, but wont load the data if I just use mydomain dot com (without the www). I have heard of crossdomain.xml.
[Code]...
I'm successfully loading swf from another domain, but when i addChild loaded content, it doesn't appear on the stage. My firebug shows that swf loaded with status (304 Not Modified), means no problem.
Why i cannot see loaded swf content on the stage?
I have to load xml from external domain , so my code looks like this.[code]crossdomain xml file also loaded and security allodomain is in(*).
View 2 RepliesI am trying to get a xml into flash from an external domain using a PHP proxy to get around the cross domain issue.
I have created a simple swf file that is meant to load the xml and print out some data from the received file. Unfortunately I havent been able to get it to work as yet. Here is the action script
Code:
var Sender = new LoadVars();
var GetData = new XML();
GetData.ignoreWhite = true;
[Code].....
All right got that working as it was a simple syntax error with the php file!
Now all I need is to make the url dynamically sent from the flash
I have an issue with a Flash applet that I've written; it's an MP3 player that is supposed to load an MP3 file from a web address.
When I run the SWF on my local computer, it works like a charm. However, when I put it on a webpage, it does not load the MP3 file. (I guess that's what I get for not testing it that way beforehand.) I've double-checked permissions and it seems that everything is as it should be.
I know that AS3 has some cross-domain policies, but I'm loading the MP3 file from the same domain. I understand that Flash has sandbox properties, but I would expect that a file in the same domain shouldn't be a problem. I've heard of people having problems with SWFs before, but not regular media files.
If possible, I'd like find a solution that doesn't require rewriting the code, as I have a release version of the SWF on my site currently. (Rewriting won't be a problem, but I have to wait until the end of the day to do it, and the SWF is on display now.)
Edit: I had three friends test this, and it worked for them. However, it still didn't work for me. I'm at home now, and I'm testing - my applet loads an MP3 in Firefox, but not in Chrome. (Oddly, the friends who tested were using Chrome, which loaded it with no issues.) At work, my applet would not load an MP3 in Chrome or Firefox.
i am trying to load swf from other domain in to my air application. but it gives security sandbox error and i use Security.allowInsecureDomain("*") and it work perfectly in normal Flash but Air gives another eror:
[Code]...
I'm try to load an images from other domain using Action Script 3.0 Domain A (.swf) ----------> Access file -------> Domain B (.JPG)
I also placed the crossdomain.xml file on Domain A and allow the domain in action script as well, and i also set checkPolicyFile = true;
I have Domain1 that is hosting my flash .swf file, and Domain2 that is linking to that .swf file. In the flash file I have a;loadVars.send "POST");command. When the flash file is placed anywhere on a page on Domain1, this works perfectly fine. But when placed on Domain2 (and other domains), this loadVars statement does not work and does not forward to But when I change "_self" to "_blank" - the statement works fine on Domain2.
View 4 RepliesI have Domain1 that is hosting my flash .swf file, and Domain2 that is linking to that .swf file. In the flash file I have a; loadVars.send("another-[URL]", "_self", "POST"); command. When the flash file is placed anywhere on a page on Domain1, this works perfectly fine. But when placed on Domain2 (and other domains), this loadVars statement does not work and does not forward to another- [URL]. But when I change "_self" to "_blank" - the statement works fine on Domain2. Why doesn't "_self" work on external domains?
View 3 RepliesI have three (3) buttons in my main movie. And I just realized that everytime I press the "about me" button, it keep loading, reloading, the same movie. Its kinda lame! So I searched for VARIABLES and thought I could work my way around it.What I did was, on the first frame of my movie, I declared 3 variables; namely:
PHP Code:
var portfolio = false;
var aboutme = false;
[code]......
Is it possible to load an image(jpg, png, gif) from another domain and manipulate the pixels? I guess when the image is downloaded/copied it is in my domain.
Using the Loader and add the content to an Image component I get an error in my debugger. I guess there are some cross domain polices at work here.
But I need to be more sure how this works before moving on. I guess, if it is not possible to load the image directly I could create a local proxy.
[URL]when i test the site on my computer with flash it works. when i upload to the internet the xml data is not picked up. when i had the xml data in the same subdomain it worked both on my computer and in the internet...but i need the data to be accessible...
i have tried adding cross domain "policy files" for permission, but either they are not working, or i am doing it incorrectly...
If you load a Bitmap object from a domain other than that of the Loader object used to load the image, and there is no URL policy file that permits access to the domain of the Loader object, then a script in that domain cannot access the Bitmap object or its properties and methods. I can understand this to some degree but all I want to do is scale the image and so that it doesn't look completely gash I want to smooth it and hence need Bitmap.
Smoothing to be accessible (I dont and never will have a cross-domain policy file). With video you can apply smoothing and thats coming from another domain, I can even take a bitmap snapshot of the video and so I really dont understand why they wont allow this. I am scaling the image to fit the screen either as bestfit or streched and so scaling at 0.5, 2, 4 etc wont work.
I have three (3) buttons in my main movie. And I just realized that everytime I press the "about me" button, it keep loading, reloading, the same movie. Its kinda lame! So I searched for VARIABLES and thought I could work my way around it.
What I did was, on the first frame of my movie, I declared 3 variables; namely:
PHP Code:
var portfolio = false;
var aboutme = false;
var contact = false;
[Code]....
But I think I missed something along the lines because evertime I click on ABOUT ME, I still get the movie to load. My point here is that once I have CLICKED one button and the designated movie for that button is loaded, I can not reload it again 'cause it's already there.
What am I missing? I hope someone can push me at the right direction here Here is the FLASH MOVIE I am trying to developing. [URL]
I'm trying to load text from another domain into my website. Heres the code I'm using:
[Code]...
With no luck. I verified that the URL is correct. When I point to the text file on my local drive like this:
[Code]...
PS - I've tried setting up a crossdomain.xml file on the domain where I'm trying to pull the data from
I have some problems with security file e load xml.
I have u file xml on
[URL]
but the file swf is on
[URL]
in local inside IDE of flash is ok but online don't work
this is as:
System.security.allowDomain("http://www.centrocartucce.it");
//System.security.loadPolicyFile("http://www.centrocartucce.it/slideshow.xml")
var myXML:XML= new XML();
[Code].....
Loading xml file from another domain or host?
View 1 RepliesI need to load a swf in other domain and call its functions and access its variables, in the same domain I can load it and access its functions successfully, but in different domains no.
View 3 Replies1 - SWF must have ability to loading binary data from any domain.
2 - SWF cant load policy XML file from url, cause upload form allows me only to upload swf files, so I cant include any other data.
I tried:
Security.allowDomain("*");
But it works only for SWF files.I tried to embed policy XML file:
var dataXML:XML =
<?xml version="1.0"?>
<!-- http://www.foo.com/crossdomain.xml -->
<cross-domain-policy>
[code]....
This will make an security error, if file is from different domain than SWF file.Its possible to get binary data from JavaScript using ExternatInterface in AS3 code.Here is cross-browser library for reading files binary: binary reader and later version jDataView.
post the code for a working cross-domain securityfile that allows access only from the same domain as all the flashfiles and xml files are in?used to be easy in as2 but i think i dont know what i need to know about it in as3..
View 3 RepliesWe are running FMS3 on Windows 2003 Server. Videos stream and play fine when inside our domain, but outside the domain the videos take anywhere from 20 or more seconds before playing.
After analizing the connections it was determined that the player is randomly trying to access ports until it gets to the one that works, but this is ONLY happening from people trying to view videos from outside our domain.
is it possible for flash widge on site a.com to send POST request to b.com ?If so, couldn't this be quite dangerous ? A user would be performing POST to an unknown host
View 1 RepliesI have recently uploaded my flex applicaiton on server, it works fine on my system (localhost) but on the production server it tries to access[URL]..which is not available and end up showing "loading" eternally.
View 2 RepliesI have moved a web application from old domain to new domain. I cannot get Flash to engage. I have changed the domain in flash_images.php file to the new domain. I have a flash_box.swf file and I have a js file these are the only flash components that I see--old domain is e.g. www.example.com new domain is [URL]..I am not a flash developer, how do I get flash to work on the new domain?
View 3 Replies