Ask a Question related to Macromedia Flash Data Integration, Design and Development.
-
ChrisRauh #1
Help: Catching a "Error opening URL" error fromXML.sendAndLoad
If you pass an invalid url the output window prints an "Error Opening URL
Error" error.
How can I catch/identify this error and handle it?
When this error happens the XML object does not call my XML.onLoad(false) so I
figure I have to look somewhere before that in the call sequence.
Any help greatly appreciatted,
Christian
ChrisRauh Guest
-
"The filename or extension is too long" Error when opening Acrobat 6.0
I get the same error. It just hangs at the splash screen, taking 100% CPU and then after about an hour I get that error. When I click ok, I get a... -
Help! Can not save anything in Illustrator format - Error message "unknown error has occured"
I am using Illustrator CS on XP, I was trying to save my work, it was a template and about 10 layers. I got the error message "unknown error has... -
Error "creating file: 1008:5, -5000 Access Denied Error"
I'm unable to install Flash Player 9 in OS X (10.4.8). I followed the following tech note: http://www.adobe.com/go/4aa64290 * I uninstalled Flash... -
"There was an error opening this document. This file cannot be found."
Myself and a co-worker get this error when attempting to open an Adobe PDF directly from the SQL Reporting Services package EXPORT feature. If we... -
#12029 [Com]: "--with-apxs" can cause the error "MySQL: Unable to save result set in"
ID: 12029 Comment by: sietzepost at streetwisedd dot nl Reported By: root at byone dot com Status: Bogus Bug... -
perry #2
Re: Catching a "Error opening URL" error from XML.sendAndLoad
use onData instead of onLoad:
x=new XML();
x.load("my.xml");
x.onData=function(s){
if(s==undefined){
trace("error loading xml file");
} else{
trace(s);
}
}
"ChrisRauh" <webforumsuser@macromedia.com> schrieb im Newsbeitrag
news:dcgdem$k18$1@forums.macromedia.com...so I> If you pass an invalid url the output window prints an "Error Opening URL
> Error" error.
> How can I catch/identify this error and handle it?
> When this error happens the XML object does not call my XML.onLoad(false)> figure I have to look somewhere before that in the call sequence.
>
> Any help greatly appreciatted,
>
> Christian
>
perry Guest



Reply With Quote

