Questions tagged [rsl]

RSL stands for Runtime Shared Libraries, and is a means to externally store assets for Adobe Flash Player applications for reference in multiple applications to save space and bandwidth.

From adobe's docs: http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf674ba-7fff.html

One way to reduce the size of your applications’ SWF files is by externalizing shared assets into stand-alone files that can be separately downloaded and cached on the client. These shared assets can be loaded and used by any number of applications at run time, but are transferred only once to the client. These shared files are known as Runtime Shared Libraries or RSLs.

When multiple applications share a core set of components or classes, clients can download those assets only once as an RSL rather than once for each application. The RSLs are persisted on the client disk so that they do not need to be transferred across the network a second time. The resulting file size for the applications can be reduced. The benefits increase as the number of applications that use the RSL increases.

61 questions
1
vote
5 answers

Monkey patch flex framework when loaded as an RSL?

I want to load the flex framework as an RSL (SWZ, using player caching) but I need to monkey patch a couple of bug fixes in the framework. A number of forums suggest this is not possible. Has anyone gotten this to work?
Brian
  • 752
  • 6
  • 10
1
vote
2 answers

Mixing Flash and Flex-compiled ActionScript code through a runtime shared library

we are two people working on a Flash application. I work on some ActionScript 3 code, which I compile to a .swc file using the Flex SDK on Linux. My colleague uses the file as a library for his .fla file in the Flash IDE, uses my code in his…
Jérémie Koenig
  • 1,198
  • 6
  • 11
1
vote
1 answer

Use the framework RSL within an RSL

I have a rather large Flex SWF and am breaking it up into separate Modules. There is some overlap between the modules and I want to put all of this into one shared RSL. The problem is that this RSL gets really large as soon as I use any Flex code…
Adam Ullman
  • 1,517
  • 7
  • 12
1
vote
3 answers

Sharing code between swfs

Lets say I have two swfs A and B, and at runtime, swf A loads swf B, and I wish to share code between them, to minimize file size and download times. If swf B has some code (say. com.blah.HelloWorld), I tell the compiler to have swf B's source in…
whoisbenli
  • 1,095
  • 1
  • 9
  • 12
1
vote
0 answers

Intellij IDEA and Flex SDK runtime shared library

I am trying to make IntelliJ IDEA 12 configure rsl libraries for runtime loading. Do you have any experience with that, and do you maybe have a sample XML you put into aditional compiler options? Also, I didnt find the plugin for this, if you know…
1
vote
1 answer

Flex Framework RSL - Specifying location at runtime

Can anyone tell me if the following is possible and if so, how I would set it up… I have a Flex(3.3) web app which makes use of the Framework RSL. It currently loads the rsl from a location I have specified when compiling the app. However, for…
Undistraction
  • 42,754
  • 56
  • 195
  • 331
1
vote
1 answer

loading an RSL without using flex?

If I have rolled my own RSL, and I want to use it in my pure as3 apps, is there documentation or an example of how to do this? Or do I need to traverse the flex source code to figure out what adobe's engineers have done?
jedierikb
  • 12,752
  • 22
  • 95
  • 166
1
vote
1 answer

Where are signed and unsigned Flex RSLs on Windows and OS X cached?

I'm looking for the directory where Flex framework swf and swz files are cached. It's been so long since I've needed to know that I've forgotten. For testing, I need to remove the files and force the browser to download them again.
user56512
0
votes
1 answer

Large flex project, how can I convert my swc libraries to a RSL?

my Flex project has grown to over 1 Mb in size in release mode and now I am trying to cut it up into modules. One of my SWC libraries is fairly large and I want to use it in multiple modules, so I think I can turn it into a RSL? how can I go about…
Phil
  • 46,436
  • 33
  • 110
  • 175
0
votes
1 answer

How to make a RSL with Flash CS5.5?

Is it possible to make a RSL with Flash Professional? I've tried it in the past before CS5.5 was released with no success, and lately wanted to try it again in order to make some tests, but it seems it's not possible. I know plain SWCs can be built,…
Neverbirth
  • 1,044
  • 8
  • 20
0
votes
1 answer

RSL used in FLEX

How to use RSL(Runtime shared library) in flex ? how can decrease loading time of swf using rsl? please give answer
rejo
  • 3,352
  • 5
  • 27
  • 34
0
votes
1 answer

How do you use RSL with swc

This is the setup: 1) I have an SWF in which I have defined a component in the library with a custom class as the linkage. The component has been set up for "export for run time sharing" 2) I have an fla where I copied over the component and linked…
Tarek
  • 759
  • 2
  • 8
  • 17
0
votes
1 answer

Why isn't my standard RSL being loaded?

I've created a modular application where a parent SWF loads a number of other SWFs on demand. For optimization, I've created a standard RSL. I've compiled common code into a swc, and recompiled the application swfs to reference this swc, using the…
Cookie
  • 287
  • 4
  • 9
0
votes
2 answers

flexmojos - copy-flex-resources of rsls not working

I am trying to copy the the dependent rsls into war using the copy- flex-resources plugin. However I'm getting the following error : [ERROR] Failed to execute goal org.sonatype.flexmojos:flexmojos-maven- plugin:3.8:copy-flex-resources…
JWhiz
  • 681
  • 3
  • 10
  • 22
0
votes
2 answers

What is the URL for Adobe Flex 4 RSLs?

What is the URL that Flex 4 uses to download RSLs at runtime? I want to check if I have access to this URL and that it is not blocked by the proxy that I am behind and would like to be able to put the URL into a browser to do this. Obviously there…
chris
  • 1,731
  • 4
  • 26
  • 33