ActionScript 3.0 :: Loading Xml To Flash - Error #2044: Unhandled IOErrorEven
Jan 24, 2009
when i tried to load xml from php file to flash i got the error
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
at Stroop_fla::MainTimeline/frame1()
although i managed to get all the data from xml
flash side
xmlLoader.load(new URLRequest('http://127.0.0.1/stroop/xmlstroop.php'));
heres my xml output that will appear on localhost/stroop/xmlstroop.php (only if i use IE7 to run it, opera and firefox gave me error)
and when i tried to debug it (ctrl+shift+enter)i got a pop up telling me to enable domain trusting , i enabled but i still get the same thing, and btw the pop up came with :
Quote:
Attemping to launch and connect to Player using URL C:wampwwwStroopStroop.swf
[SWF] C:wampwwwStroopStroop.swf - 16457 bytes after decompression
*** Security Sandbox Violation ***
Connection to http://127.0.0.1/stroop/xmlstroop.php halted - not permitted from file:///C|/wamp/www/Stroop/Stroop.swf
[code]....
and i thought it was ok as long as i got the variables from xml, but when i publish it and put the swf into my server (same folder with the xml fille) i got this
which everything seems fine, but when i implement a slider on a page inside a folder in the root (i.e. aboutus/index.aspx) i get that error when the slider is trying to call the images.I have similar slider animations in pages located in the root folder and in those i get no problem at all, seems it only happens when the page is located inside a folder.The website is done using main.master on asp, maybe the cache or rendering of the website is missing something, hope someone has had something similar or know how to get around this.
hey im trying to make a mp3 player and when u click on a play btn it plays that song. but i keep getting this output error "Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at slide_fla::MainTimeline/frame1()" this is my code
ActionScript Code: import fl.transitions.Tween; import fl.transitions.easing.*; var slidebind:Rectangle = new Rectangle(3, 3, 159, 0); var loadsnd:URLRequest = new URLRequest ("s1.mp3"); var thissnd:Sound = new Sound();
This is the error I'm getting with my code and I believe it has to do with the sounds needed to be played back. Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at workingg_fla::MainTimeline/stage_EnterFrame()
My code:
import flash.events.ActivityEvent; import flash.events.StatusEvent; import flash.media.Microphone; //line code belowvar container1:Sprite = new Sprite();var container2:Sprite = new Sprite();var container3:Sprite = new Sprite();var container4:Sprite = new Sprite();var container5:Sprite = new Sprite();//random coordinates for container1var corcon1x:Number = Math.round(Math.random()*600);var[code].......
What I need from this code is the following:
a. to pick up the mic activity level, read it, and based on the number put out a line
b. it to be kept to a minute, after the minute the screen is cleared and it plays back the lines and sounds that had been generated.
c. that nothing appears when the mic.activityLevel is 0
d.that when lines hit each other, a sound is made
I don't care if there is no playback, but right now I can't even get the lines to appear and I need the sounds to play when the lines hit each other.
I'm making a system to upload photos to a gallery. I'm using filereference, and it's working alright. I can upload like 20 files fine sometimes.. but when I do like 50, it starts giving me errors on over half the files.
The error is: Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error.
This may be a php error, or server error, I'm not sure. Because the file isn't even uploading at all.
I have an swf that sends info to a PHP file which in turn gets a SWF to FLV converter running. If I try this with a small 1kb swf file it works great and returns the results with in 5 seconds.However now that I step it up to convert the files in which it was intended, files ranging around 2 mbs, I get this error..
I have been following the Flash CS3 Portfolio website tutorial on [url].... exactly and haven't run into any problems until this one.I am getting this error?
I have a Android Actionscript project that I am trying to incorporate sound in, but having a problem that I cannot figure out. I have the sound file in the same directory as my class file and my .xfl file. I am trying to start the music file as soon as the application starts via class reference, but am getting the same error everytime:
Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error. at playAudio()[C:pathtoerrorplayAudio.as:9] at networkScores/frame1()[networkScores::frame1:7]
I have a function in my AS3 that frequently calls a PHP file. Most of the time it works but occasionally it fails and throws the error I used in the title. I researched this fairly extensively and started capturing the event in the following manner:
public static function Bar():void { var request:URLRequest = new URLRequest("path/to/file.php"); var requestVariables:URLVariables = new URLVariables(); var loader:URLLoader = new URLLoader();
I'm trying to include some text to speech function into my flash, the code above works perfectly fine when i open my class in AS3, however it fails when I uses adobe air to run my class below is the error message Error #2044: Unhandled IOErrorEvent:. text=Error #2032: Stream Error.
I have an XML MP3 player. The MP3 player works fine and i have managed to add a playlist. The problem i am having is that when the user clicks on a song from the playlist this error is produced
I have been following the Flash CS3 Portfolio website tutorial on [URL] exactly and haven't run into any problems until this one. why I am getting this error?
I am using the NetStream class with FMS to record the audio stream from the client's microphone to the FMS server.So far so good, the stream gets saved to the server as a .flv file. A php script grabs this file via ftp and copies it to the user's file store.What we need now is to either record the stream directly as .mp3 OR convert the recorded .flv to a .mp3 file - and this is where it gets interesting.
POSSIBLE SOLUTION 1 (preferred solution), Recording stream directly as .mp3:refer to Actionscipt Reference for Flash CS4:
The documentation suggests that it should be possible to directly record the audio stream as a .mp3 file. NOTE: this is with the new version, Flash CS4.I have tried this with both an Influxis account and with FMS 3.5 dev on my local machine. Both return this error:
I'm working on a Flex application that processes and displays small amounts of HTML, sometimes including images. I'm getting the HTML out of third-party RSS feeds. Sometimes, I see this in a pop-up window: Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
The RSS URL is just fine, but there's apparently something in the downloaded HTML that's causing a problem. Since the application is meant to run as part of a non-interactive digital sign, anything that requires a click to continue is completely unacceptable. I don't care how useless or malformed a URL is; the app needs to ignore the problem without pestering the user.
Unfortunately, I'm having no luck trapping this event. I'm sprinkling calls like this liberally through the code: [object].addEventListener(IOErrorEvent.IO_ERROR, handleIOError); where [object] is everything from the mx:Text object rendering the HTML to its mx:Canvas parent to the mx:Application top-level app, and handleIOError is a simple function that looks like this:
I'm building a site for a friend and I am having trouble getting rid of "Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found". I have the main site and 4 other swf's which are supposed to load and unload at the click of a button all together in a folder. Now, I've triple, quadruple-checked all paths and they're the same. It's really irritating me because I can't find the reason why these SWF files won't load at all. Here's my code:
flash CS4i trace the thumbURL it give me right path in output,but when i call it in new URLRequest. it give me Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
var thumbURL:String = "thumb/universe" + id + ".jpg"; trace(thumbURL); ///<<<<<<<<<<<<<<when i trace it it give me exact path var imageLdr:Loader = new Loader();
I am designing a mini-website that loads external swfs. One of my swfs is missing, so when I hit the button whose function is to load it, I get an output message that says:
Error #2044: Unhandled IOErrorEvent:. text=Error #2035: URL Not Found.
So far, this makes sense to me. I got curious about how to let the user know that the swf is missing or otherwise let him or her know that I made a mistake, so I've learned about IO_ERROR. I came up with the following code and now I am not getting any error messages - but also nothing is happening. If there is content in the Loader already, it doesn't go away. If the Loader is empty, it stays empty.
function page4content(evt:MouseEvent):void { var myURL:URLRequest=new URLRequest("page4.swf"); myLoader.contentLoaderInfo.addEventListener(IOErro rEvent.IO_ERROR, ioErrorHandler);
I have a projectthat relies heavily on LocalConnection to keep swfs communication with the master swf. Recently, i've been getting the following error at various points in the project: Code: Error #2044: Unhandled StatusEvent:. level=error, code= It seems to happen more often on page refresh, instead of on the initial page load. But it's not consistent. It does happen on page initialization sometimes as well. Anyone know what this means? It locks up my entire desktop for flash. If i try and even browse to another flash site after this, the plug in stalls out. The only solution is for me to reboot my system.
am having a little trouble with a simple form on one of my flash websites. The form takes three pieces of information (name, email and description) and should submit this data to a php page in the same directory where it emails it to me.
When I run the swf from the Flash CS3 Pro program, the connection and submission goes smoothly and I receive the email.But when I load the swf and the php file onto my site and try it over the internet, it gives me the following error:
Error #2044: Unhandled securityError:. text=Error #2048: Security sandbox violation: http://MYSITE/test/theswf.swf cannot load data from
I am new to flash and AS3 and kept getting this error. I have searched with no resolveI created a brand new page with nothing in it and simulated the download and the same error came up is there a broken file?