|
-
HELP: Howto Flush an array?
Hello folks,
I´m trying to save some data of my aplication with the Flush(). I´ve created the new Arrays and the interaction is doing the changes that they should. The problem is simple: Why is not saving the data? Follows the code:
Time Line:
editor = sharedObject.getLocal ("texteditor");
editor.data.field1 = new Array ();
editor.data.field2 = new Array ();
number = 0;
num.text = editor.data.field2 [number];
_root.action.text = "Rename File";
The Save Button:
on (release){
editor.data.field1.push (_root.textfield.text);
editor.data.field2.push (_root.num.text);
//(until now...everything is working)
editor.data.flush();
TKS....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|