Greetings everyone...
I've made a little flash, with AS3, to view the data generated by some program I wrote... The data is in a .csv file and are loaded to the memory with a URLLoader
object.
The flash loads well .csv files which can come to almost 50 MB in size... But when I try to load a file with 160 MB, the player just stop working... I run the last flash player version, outside of the browser...
I've heard that the Flash has limitations on the amount of memory it can store... But in another question, they say it has not.
What may be causing the crash? - I don't think it is the code, since it runs smooth for small files...
Thank you in advance!
Working with flash now, it came to me the error:
Error: Error #1502: A script has executed for longer than the default timeout period of 15 seconds.
In the menu File
> Publish Settings...
, we can make the timeout period longer on the Flash
tab.
I also found an implementation of something like asynchronous processing in actionscript... It's a very interesting approach and I'll try to implement my loading method that way...
Thank you all for your help!