将flash'复选框'数据存储到本地文本文件

时间:2012-04-05 13:15:32

标签: flash actionscript-2

有人可以帮助我,或者告诉我这是否可行。我想在Flash(AS2)中创建一个简单的复选框问题,当用户提交表单时,该问题将数据存储到本地文本文件中。这么简单的东西就像你的男性女性等... 闪存是否可以在某处存储此信息。它适用于展览空间中的触摸屏,因此不会在线。提前致谢。

1 个答案:

答案 0 :(得分:0)

首先将您的选择按钮存储到变量中,而不是将您的答案转换为String()

var myVariable = whatever.toString();

function Writefile(event:MouseEvent) {
var file:FileReference = new FileReference();
var bytes:ByteArray = new ByteArray();
bytes.writeUTFBytes(myVariable);
file.save(bytes,"test.txt");//can be whatever.txt,php,hello just open in txtEditor
}

SaveBTN.addEventListener(MouseEvent.CLICK,Writefile );

添加一个按钮到舞台或updateEvent,这应该可以帮助你