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
2
votes
2 answers

Is it possible to put a Class linked to a document (aka Document Class) into a RSL and still have it as Document Class?

Firstly, my environment. My question is if it's possible to do so using Flash Professional and not Flex, FlashBuilder or the like (I don't have those environments at the moment). Here is the thing: we have several .fla files with a Document Class…
Shadow
  • 29
  • 1
  • 9
2
votes
1 answer

DataStage 11.3 Assembly Editor flash popup

Our organisation is in the process of upgrading from DataStage 9.1 to 11.3. Problem: The DataStage 11.3 Assembly Editor fails to display, and falls over with an error. Backend OS: Red Hat Enterprise Linux Server release 6.6 (Santiago) Linux …
Bruce Smith
  • 41
  • 1
  • 4
2
votes
0 answers

Stack trace in release RSLs

Since flash player 11.5 it is possible to get stack trace for uncaught errors, very handy for logging runtime errors in production and an immense help with debugging. But the problem I am facing atm is that the stack trace contains only the…
wlad
  • 60
  • 6
2
votes
0 answers

Flex Maven how to create rsl from third party swc library

there are some swc file used in my project,when I compile the project by maven,I have to install the swc to maven repository,like: mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swc -DgroupId=org.robotlegs…
Shawn
  • 21
  • 3
2
votes
1 answer

How do I build a Flex library that is compatible with client apps ranging from Flex 3.5B to Flex 4.6?

My aim is to build a Flex library that is compatible with clients (both other libraries and Flex applications) build on Flex versions ranging from 3.5B to 4.6. Also, I'd like to be able to use functionality from as recent a version of Flex as…
Steven
  • 17,796
  • 13
  • 66
  • 118
2
votes
0 answers

stream-error #2032

I'm new to flex and since monday I have a problem with the flex-application I'm maintaining. It seems that the spark-component tries to load some runtime-shared-libraries from the adobe-downloader-server, which are apparently (no longer?) …
hilbert
  • 266
  • 4
  • 15
1
vote
1 answer

Flex RSL Vs Modules

I am in the confusion advantages or uses of RSL and Modules. It is said that RSLs will be cached in the browser, so that they can be used across multiple applications without loading the same library again. My question is, Since the Modules also…
user1281276
  • 73
  • 2
  • 6
1
vote
1 answer

Memory consumption of nested flex applications with RSLs using SWFLoader?

these days I read a lot with regards to RSLs. One disadvantage is that RSLs must be loaded into memory but can save significant loading time. Now what happens in the following scenario: I have a superFramework.swf and a subapp.swf. subapp.swf is…
Yaba
  • 5,979
  • 8
  • 38
  • 44
1
vote
2 answers

Howto: Flex Module with its own custom RSLs loaded only into child ApplicationDomain?

I have a complicated application. I use Flex 4.1 RSLs and custom RSLs for all my libraries (and there are like 15 of custom SWCs - Flex Library Project) I would like to load main application with minimal RSLs needed and then load Flex Module with…
mizi_sk
  • 1,007
  • 7
  • 33
1
vote
2 answers

Flash failing with a RSL library, when main class extends a class and implements an interface

I'm trying to load a RSL library into a flash animation developed with Flash CS5 IDE, that extends a custom class and implements an interface. I have reduced the problem to the simplest setup and find that I can have my main class extend another…
dadasign
  • 11
  • 2
1
vote
1 answer

How to set up RSL (Runtime Shared Library)

Stack! I'm having a little trouble setting up a new project (an e-Learning) that I think will benefit a lot from RSL. My case is something like this: Main.fla - A Shell Scenes.fla - I'll explain this in a minute Navigation.fla - Some kind of…
NemoStein
  • 2,088
  • 2
  • 22
  • 36
1
vote
2 answers

Flex 4 Air 2 RSL (Runtime Shared Libraries)

Has anyone got any experience will loading SWC / SWZ's at runtime within a Flex 4 / Air 2 desktop application? The very rough idea would be to have a desktop Air app, which is able to "download" additional modules (eg, a SWZ/RSL representing a form)…
Henry
  • 13
  • 3
1
vote
1 answer

How do I export & use SWC for RSL with Flash Pro CS5?

I want to create a RSL with Flash Pro CS5 and then use it with another Flash file. I've created the following example: RSLLib.fla Create the file Create a new MovieClip symbol called Circle, export it for ActionScript as Circle and tick "Export for…
1
vote
0 answers

RSL caching not working on Flash Player

We have built a Flex application compiled into an swf file that uses RSL linkage for the different framework libraries it needs. This has been done to reduce the size of the swf file. We are using the URL of the signed version of the library while…
1
vote
1 answer

How to link library symbols in Flash CS4 to base classes from an external .swc (rsl)?

This question stems from this question that I asked yesterday. I've followed Theo's advice and created a .swc with all the common classes and added the .swc as an external library to my module .swf. This all seems to have worked smoothly--I don't…
Dane
  • 874
  • 12
  • 18