4/8/2011 10:19:06 PM
Title:
How to optimize the loading time of flex application
Hi
In my server i m running more than 10 flex application and loading time is more for every application . my application swf size is 200kb to 1 mb . The 6 basic swf are loading every time for every application so it is taking more time so i want to load basic 6 swf ones and loads the application swf when i load the application so it may reduces the time for loading.
so if anyone knows the solution for this please help me..
Rayan
Points: 700
Posts:0
4/9/2011 2:18:35 AM
have you checked this article about reducing the loading time of flex application , follow the steps and you should surely benefit
http://askmeflash.com/article/9/optimize-flex-swf-filesize-performance-loading
4/9/2011 5:14:02 AM
your six basic swf files should be cached by the browser and should not be loaded again and again. Unless you have changed browser cache setting which forces it to load new files every time. Actionscript can not do anything in this. Make sure that while loading these swf files you are not using a querystring in the end like this
"a.swf?var1=somthing" (this will force browser to load a new file each time)
name should be simple like "a.swf" wile loading external swf files.