Registered User
Registered User

Reputation: 9006

Make Flex 4 web application load faster

I made a Flex 4 web application. Upon testing locally, I already got satisfied at how it looks like. However, the swf's file size grew to around 6mb in size so when I uploaded it to my website and viewed it, it takes forever to load on a computer with quite slow internet connection. So my question is, how do I make it load faster? Should I:

Please do help me?

Upvotes: 0

Views: 914

Answers (2)

Christophe Herreman
Christophe Herreman

Reputation: 16085

Besides splitting up your application into Modules and/or sub-applications, try to use RSLs where possible. Especially the RSLs of the Flex framework.

Here's documentation on how to do this: http://livedocs.adobe.com/flex/3/html/help.html?content=rsl_09.html

Upvotes: 3

splash
splash

Reputation: 13327

You should separate your application into modules. Another alternative is to split it into sub-applications.

Upvotes: 3

Related Questions