I use javascript to play a flash file, and it plays correctly. But it also needs to parse some configuration files in the flash default directory. So the problem is: the flash file I am going to play can't access its config file for the wrong working directory.
For example, I specify the swf path value as 'falsh/list/test.swf', so my javascript will give this swf value by swfobject.embedSWF to play this flash. But the flash file flash/list/test.swf needs to parse a config file in the same directory with flash file like flash/list/config.xml. The problem is flash attempts to parse this config file under the current javascript working directory.
I've searched a lot, but haven't found a way to resolve this; can anyone help?
var name = parse_parameter('name');
var path = parse_parameter('path');
var swf = path+"/"+name+".swf";
swfobject.embedSWF(swf, "myContent", "800", "500", "9.0.0");