Hello all and thank you for looking over this. I am using php to read a file (specified by a cookie on the users machine) with the function readfile(). the file i am reading is an actionscript 3 flash file that depends on a configuration file appended to the url to function properly.
ex: http://www.pathToFlash.com/file.swf?CONFIG_URL=http://www.pathToConfig.com/config.xml
When I use readfile - the headers are set properly and the swf is returned to the browser which then runs it. I have discovered that using this method the config file (CONFIG_URL) has to be appended to the php file's url to be read properly by the swf - as the swf considers the path to the php file it's own.
This is fine when these are the only two elements involved - but when loading the php>read(swf) combination into another swf - the 'read' swf returns a url that is null (using this.root.loaderInfo.url) and therefore fails to execute properly as there is no config file (CONFIG_URL).
My question is: how can I load in a swf file from a php page (using readfile, fopen, whatever) and pass in $get parameters?
Thank you
-Nathan