views:

555

answers:

2

I'm attempting to create a Flex Project that will cause the Flash Player to cache the Flex framework. Flex Builder comes with Flex SDK 3.2.0.3958 and setting the Framework Linkage to use Runtime shared Library (RSL) under Project Properties -> Flex Build Path will separate the framework from my main application and I see that my project's bin-debug directory contains framework_3.2.0.3958.swf and *.swz for distribution.

Flex SDK 3.4 fixes a few bugs, so I configured it as another available sdk and set it as the default SDK. When I compile, I expect the bin-debug directory to contain framework_3.4.0.9271.swf and *.swz; however, Flex Builder is still writing framework_3.2.0.3958.swf and *.swz.

How do I configure Flex Builder to package the correct framework files for Flash Player caching?

A: 

Is the 3.4 framework listen in the libraries tab for build path in flex builder? It it still listed as RSL or Merged into Code? Are these settings global or just for that project?

Have you tried exporting the project as a release build? That should recompile everything and recreate your RSL's. Then go back to compiling a debug version until your code is ready?

ethyreal
A: 
Joel Hooks