I hate resolving Flash issues once running under http. I found to make that
more pleasan I have a Debug version that loads a floating draggable
textfield so I can trace variables while running on the server and avoid the
Flash debugger.
Perhaps you might want to create a simple dynamice multiline Textfield
somewhere on the app and attach a UIScroller and dump some values to it.
In any case I ran a test on a live server as follows:
Using PHP on an Apache server I ran a test of an app we are currently
developing that calls both PHP returning XML and then proceeds to load SWFs:
A bunch of XML sendAndLoad and loadClip the next swf kind of thing.
Before the test the server script was in the same folder as the swf and
after I moved it to a sub folder. In both cases the path was relative.
I moved the .PHP script to a subfolder for the test and it seemed to work
using XML.sendAndLoad
appScriptPath = "_Testing/"
script = Config_Response.php"
trace (tr("\tappScriptPath + script = " , appScriptPath + script))
myRequest_xml.sendAndLoad(appScriptPath + script, myResponse_xml)
Trace showed: appScriptPath + script = : _Testing/Config_Response.php
Once the XML load is fired with success the program based on the download
swf name provided data goes off to load a swf using MovieClipLoader again
relative to the main.swf.
Not sure that should be any different with an ASP server side.
--
Lon Hosford
www.lonhosford.com May many happy bits flow your way!
[quoted text, click to view] "goodbyemoto" <webforumsuser@macromedia.com> wrote in message
news:dmmjdd$fnu$1@forums.macromedia.com...
No, I know exactly where it's running: what I'm trying to do is run the
movie
on a live web server, but it must use relative URLs. Absolute URLs, which I
normally use, are no good for this application.
The problem is that, when using relative URLs, Flash will happily open
other
local SWFs (that's local to the server, not local as on my machine) but will
not properly call an ASP page (via XML.load) that returns valid XML.