I've made a *.swf file of the sprite sequences of 1000 images with (780 x 480) size. After that I embed this with another one class to show but every time it crushes during run time because of insufficient memory (assume that I have 2GB memory space). Which is the best way to implement such big sprite sequences in AS3 by avoiding the memory problem? Please help if you have any good suggestions.. Thanks a lot.

link|improve this question
780x480 @ 72 dpi with 24 bit color is around 1 meg each so your trying to embed over 1 gig of images in your swf. Your users are going to have to download all that before they can use your software. – Feltope Jun 7 '11 at 9:11
feedback

3 Answers

You are probably trying to load them all at a time in memory. That is a huge amount of memory. You really don't need 1000 images at a time. May be you can load 10 - 20 at once and while running the sequence remove the previous onces from memory. In this way you can reduce the memory footprint.

And are you embedding 1000 images in the main swf? What is the size of the swf in that case? That will be huge and user have to wait too long to load. Instead of embedding in main swf, dynamically loading the images might be a better approach.

link|improve this answer
Thanks. But how to take these kind of sprite sequences. Assume that the swf file is 36.5 MB but when I play this it's taking around 2GB of my PC's memory. Please help (if possible), to fix it. Thanks a lot. – Emdad Jun 8 '11 at 2:12
feedback

Embad, and how will user download that huge swf? If you're targeting flash (not AIR) I think it'll be better to store images on server, and download them by request. If you're targeting AIR, do as Marty propses: devide swf into smaller swfs.

link|improve this answer
Thanks. Can you give me any example code to fix this problem please. Assume that it not AIR. A web based flash apps. Thanks a lot. – Emdad Jun 8 '11 at 2:14
hm. I think you should a closer look at flash.net.URLLoader class – Eugeny89 Jun 9 '11 at 19:38
feedback

Why don't you simply made a video of your images ?

link|improve this answer
Video? in which format? and can I embed a video file? – Emdad Jun 9 '11 at 3:39
You can play a streamed video : flashthusiast.com/2008/03/02/… – 2smacks Jun 9 '11 at 15:00
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.