超级简单的例子:
var Path:String="E:\SWF Security\Acess Current Path\Access SWF URL.swf"
var Path1:Array = Path.split("\\") // Split using the backslash as delimiter (No limit the number of returned tokens)
trace(Path1)
您对path1的期望是什么? E:? 没有它的E:SWF SecurityAcess当前PathAccess SWF URL.swf,我不明白为什么。
答案 0 :(得分:1)
在这种情况下,您应该在路径中使用正斜杠而不是反斜杠。当您尝试加载文件时,AS3会将它们视为相同。
然后你可以使用Path.split(“/”);
进行拆分