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

Why are some users getting rsl error in flash app?

When some of my users try to access my flash application, they receive an error RSL Error 1 of 1 That is it, there is no error code or anything. This page works for them in Internet Explorer, but they primarily use Chrome. It also works fine for me…
AllisonC
  • 2,973
  • 4
  • 29
  • 46
5
votes
1 answer

The meaning of "External" linking mode in Flex Builder

There are three modes to link an SWC library to a flex application: "Merged into code", "External" and "RSL". I understand what is "RSL", but I don't understand what is "External". "RSL" works just fine for me, without any code changes. However,…
5
votes
2 answers

Dynamic RSL URLs. Is it possible?

Ok, so here's my problem. I have several SWFs pulled in at runtime from different domains (we're using a CDN). There are some shared fonts within the SWFs. I'm trying to minimize file sizes as much as possible, so that means either not embedding the…
Eoin
  • 51
  • 1
5
votes
2 answers

How do I eliminate the call to http://fpdownload.adobe.com/pub/swz/crossdomain.xml in my Adobe AIR application?

I have an Adobe AIR application and at a certain point it issues the warning: Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml. The 'secure' attribute is only permitted in HTTPS and socket…
kpatelPro
  • 287
  • 2
  • 10
4
votes
1 answer

SSAS Multidimensional Dynamic Dimension Security MDX

I tried to implement Dynamic Dimension Security in SSAS 2012 Multidimensional Model. I have a little knowledge on this for I have already implemented row level security in SSAS Tabular using DAX. What I did in Tabular is exactly the same as…
user2107971
  • 215
  • 1
  • 4
  • 9
4
votes
1 answer

RSL, LoaderContext and ApplicationDomain. Can I pass an application Domain to an RSL?

So, I've a few libraries that I'm loading as RSL's to my project. I do this in Flash Professional, since it's the easiest way to give your RSL's to your project with fallback. I'm loading other swf's into my main swf via Loader and I NEED to give…
GV3
  • 491
  • 3
  • 16
4
votes
1 answer

Flex custom RSL library caching issue

I'm a little bit confused about how to avoid RSL caching on client's machine. I have many modules and one main application which loads them. Almost each module and the application itself are using the RSL library (which is my common library…
Yevdo Abramov
  • 609
  • 4
  • 10
3
votes
1 answer

Flex / Flash: How to embed the same font in multiple SWCs

I have the following project structure: - A Flex Project (SDK 3.3) - Multiple SWCs with grafics and textfields that are used as components in the Flex project. Since I have a lot of SWCs that all use the same font in dynamic textfields, I do not…
kolt siewerts
  • 41
  • 1
  • 3
3
votes
3 answers

"Error #1014: Class mx.core::BitmapAsset could not be found" while trying to use Runtime Shared Library

I've made a runtime shared library for my project, let's call it ResourceLibrary. It contains all of the embedded assets for my project (images, sounds, movie clips) and it's used as a singleton in a lot of other bits of code. I am compiling it…
Zambini
  • 43
  • 2
  • 5
3
votes
2 answers

Why FlashPlayer is looking for textLayout_1.1.0.604.swz?

I have a flex application, that compiled for flash player version 10.1. I just realized, when I load the movie in "clean" computer, the movie doesn't work, it try to look for textLayout library. I compile the movie not using RSL. Error #2032: Stream…
James
  • 89
  • 4
  • 16
3
votes
1 answer

Can't inherit from classes defined in an RSL?

Note: This is an Actionscript project, not a Flex project. I have class A defined in an RSL (technically, it's an art asset that I made in the Flash IDE and exported for actionscript. The entire .FLA was then exported as a SWC/SWF). I my main…
Ender
  • 27,153
  • 7
  • 30
  • 34
2
votes
3 answers

Cannot get Flash Runtime Shared Library to work

I am using Flash CS5 (assets) and FlashDevelop (code) for my project. We have about 20 fla/swf's that contain textfields. All of our textfields use the same Font, and the font is specific to our company so won't be installed on anyones computers,…
2
votes
3 answers

Flex RSL Error: the loaded file did not have a valid signature

I'm using Flex SDK 4.5 to create swf files, recently I got the following error when try to open my swf file: [trace] Warning: Ignoring 'secure' attribute in policy file from http://fpdownload.adobe.com/pub/swz/crossdomain.xml. The 'secure'…
James
  • 89
  • 4
  • 16
2
votes
1 answer

Flash: Runtime Shared Libraries - Memory Benefit?

Suppose that I have two applications running on the same page. I have the Libraries compiled into the SWF file: Suppose MemoryFootPrint(App A) = App A SWF + Libraries MemoryFootPrint(App B) = App B SWF + Libraries So: MemoryFootPrint(total) =…
sixtyfootersdude
  • 25,859
  • 43
  • 145
  • 213
2
votes
2 answers

Can one rely exclusively on Adobe for Flex/Flash RSL's (to avoid using own bandwidth)?

If you have limited server resources and expect a lot of traffic to a Flash site, is there a way of NOT having to serve Run-Time Shared libraries, but rely on Adobe to do this for you? For example, if you want to make sure…
W3Coder
  • 620
  • 8
  • 20
1
2 3 4 5