Reputation: 9006
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
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
Reputation: 13327
You should separate your application into modules. Another alternative is to split it into sub-applications.
Upvotes: 3