2
我反編譯* .swf文件,與JPEXS免費的Flash閃客10.0.0反編譯添加新的功能* .swf文件
添加新funtion,字符串保存到文本文件
代碼:
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」);
入住閃存CS6
進口flash.filesystem;
我沒有這個庫
Adobe AIR在instaled
我該如何解決這個問題
謝謝!
@ ArtGrek13編輯。 – Organis
要在JPEXS Free Flash Decompiler中使用flash.Filesystem.FileStrem,您必須寫入大寫字母。謝謝! – ArtGrek13