This content has been marked as final.
Show 3 replies
-
1. Re: load SWF that loads SWF
anirudhs Feb 4, 2009 2:32 AM (in response to Damon Edwards)Hi,
You can either make the SWF that is getting loaded by your SWF in app sandbox an RSL. Or you could try using loader.loadBytes() with a loaderContext whose allowLoadBytesCodeExecution set to true. -
2. Re: load SWF that loads SWF
Casey Teamwork Feb 15, 2009 8:41 AM (in response to Damon Edwards)what is an RSL? -
3. Re: load SWF that loads SWF
anirudhs Feb 15, 2009 9:03 PM (in response to Casey Teamwork)RSL = Runtime Shared Library
You can compile Flex code into an RSL and that (usually) gets loaded during startup. Since the RSL is a separate file, multiple applications can use the same RSL and you get benefits because it would have been cached by the browser the first time its used.
More importantly, there are Adobe signed RSLs like the Flex framework that gets cached by the flash player (doesn't get removed if the browser cache expires or is cleared).
The idea is to save on download time.

