| 1. |
I Have I Input Text Field On Stage And I Have A Button Also, Further I Am Writing Some Text In That Input Text Field. I Want To Save My Written Data On My Local System (on My Computer), How Can I Do This? |
|
Answer» To achieve this you have to use FLASH CS4 with Flash Player 10 or above. Using the new method of filereference class you can save you typed text on your computer as a text file. FIRST create a object of filereference… then use the save method and pass your data to it. Code: var TxtF:TextField = new TextField(); To achieve this you have to use flash CS4 with Flash Player 10 or above. Using the new method of filereference class you can save you typed text on your computer as a text file. First create a object of filereference… then use the save method and pass your data to it. Code: var TxtF:TextField = new TextField(); |
|