我使用JPEXS Free Flash Decompiler 10.0.0反编译* .swf文件
添加新功能,将字符串保存到文本文件
代码:
package
{
...
import flash.filesystem.*; // my code
public class NewSocket extends SecureSocket
{
....
public function send(param1:String) : void
{
// my code
var file : File = File.desktopDirector.resolvePath("your_file_name.txt");
var fs : FileStream = new FileStream();
fs.open(file, FileMode.WRITE);
fs.writeUTFBytes(param1);
fs.close();
// my code
...
}
...
}
}
我收到消息"不是类型字符串№.."
此字符串
var file:File = File.desktopDirector.resolvePath(" y our_file_name.txt&#34);
检入闪存CS6
import flash.filesystem;
我没有这个库
adobe AIR is instaled
我该如何解决这个问题
谢谢!