views:

132

answers:

1

I have a flashbuilder project with a big image. The problem is that the default preloader does not load the images/swf's inside the project.

Is there a way to preload them?

A: 

Did you embed the images into your SWF? The preloader will load the complete SWF with everything embedded into it, so I assume you did not embed the images. You can do that using the @Embed() notation in MXML, see Embedding Assets for more details.

ilikeorangutans