Quote:
Originally Posted by daveystew
Create some tab-separated values in Flash, then copy it to the clipboard...
ActionScript Code:
text = "Animal\tColor\nFrog\tGreen\nBunny\tBrown";
System.setClipboard(text)
Swap to excel and paste...
|
It's exactly what I ended up using...
On a side note for anybody else interested on this an directly passing the data to excel I have come with a solution with Visual Basic..
Since I am working on a local .EXE file and no need to connect back to the device or internet once I get my data on flash I managed to use fscommand( "exec" , "program.exe") to open up a VB program that runs Excel, pastes the Clipboard data, then closes itself (a few more lines and it can save the file into a folder without any more trouble and not popping any more windows..) giving the possibility of running the Flash exe for monitoring while preserving logs of data with Excel in your computer.
If there's anybody interested on this I can post it or PM me so I send it to you, but the mechanics are already explained above so if you're good with VB then you wont have any trouble in coding that little program.