What is the best way to remove flickering from a fast series of image loads in Flash?

Posted by msandbot on Stack Overflow See other posts from Stack Overflow or by msandbot
Published on 2010-05-26T20:40:41Z Indexed on 2010/05/26 20:51 UTC
Read the original article Hit count: 217

Filed under:
|

Hi, working on making a flash program that loads about 1000 jpegs and then plays them like a movie. Have all the buttons and stuff working but the time it takes for an image to load is so high that the movie can't be played at 30 fps. I've tried multiple ways of fixing this

  1. using 1 scrollpane and changing its source ever 30 ms. This one is the worst but simplest. Flickers cause strobing and it is unwatchable.

  2. used 2 scrollpanes that were duplicates of each other until I had to load. I would then make that one invisible, load it , then make it visible. Then load the background one. Works but same problem as the first at high speeds, just less severe.

  3. used 1 scrollpane per image . This works great, except that it fails miserably on any more than 100 of them due to the number of objects.

Has anyone else experienced/solved/wants to help me solve this? None of my fixes have worked.

Currently using action script 3, but will change if its not possible in that.

Also, I want to be able to zoom in and then scroll around the window hence the scrollpanes, but if that's not possible its a sacrifice I'm willing to make

© Stack Overflow or respective owner

Related posts about flash

Related posts about actionscript-3