as3 loading images slowing everything
- Started
- Last post
- 3 Responses
- harrytime
i have a page which is loading a lot of images (about 100)
and as they images load i have an animation which needs to still be smooth
any tips? because at the moment it is completely slowing down
it's not the amount of movieclips causing any problems it is only when i begin loading images. BIG PROBLEM!
- CyBrain0
Can you post it?
- harrytime0
this is basically it
private function loadStart(theMc, toLoad) {_loader = new Loader();
_loader.load(new URLRequest(String(toLoad)));
_loader.contentLoaderInfo.addEve... onLoadCompletee)
function onLoadCompletee(event:Event):voi... {
var targetLoader:Loader = Loader(event.target.loader);
_loader.contentLoaderInfo.remove... onLoadCompletee);
_loader.removeEventListener(Even... onLoadCompletee);
placeImage(theMc, targetLoader)
}}
- acrossthesea0
Stagger the loading