[flexcoders] Re: Framework Caching not working

2007-10-17 Thread Darrell Loverin
-target-player=9.0.60 like you said, but i getting error: command line: Error: configuration variable 'runtime-shared-library-path' requires a value for 'rsl-url' --- In flexcoders@yahoogroups.com, Darrell Loverin darrell_loverin@ wrote: Yes, that is a correct way of using

[flexcoders] Re: Framework Caching not working

2007-10-17 Thread Darrell Loverin
, but i getting error: command line: Error: configuration variable 'runtime-shared-library-path' requires a value for 'rsl-url' --- In flexcoders@yahoogroups.com, Darrell Loverin darrell_loverin@ wrote: Yes, that is a correct way of using a swz (signed by Adobe) RSL. The first URL

[flexcoders] Re: Framework Caching not working

2007-10-17 Thread Darrell Loverin
=9.0.60 if you don't require that version of the player in your html-wrapper. --- In flexcoders@yahoogroups.com, Darrell Loverin [EMAIL PROTECTED] wrote: This looks correct. You don't need -target-player=9.0.60 but it is not hurting anything. -Darrell --- In flexcoders@yahoogroups.com

[flexcoders] Re: Framework Caching not working

2007-10-18 Thread Darrell Loverin
=no arg line=Headlines.mxml -static- rsls=false -target-player=9.0.60 -load-externs=PainelAdmAppReport.xml -output ${deploy.dir}/Headlines.swf / /exec /target /project --- In flexcoders@yahoogroups.com, Darrell Loverin darrell_loverin@ wrote

[flexcoders] Re: Missing classes when using RSL cache

2007-12-06 Thread Darrell Loverin
Yes, dependent RSLs must be included as well. The datavisualization RSL is dependent on the framework RSL. This means when you use datavisualization as an RSL you must also use the framework as an RSL. Also note that since the datavisualization is dependent on the framework RSL, the

[flexcoders] Re: framework caching is not working

2008-01-24 Thread Darrell Loverin
Error code #2046 means the signature of the signed RSL is invalid. Since I know framework_3.0.189825.swz is correctly signed I think the problem your running into is the player does not currently support 64-bit Suse. It may be support in Player 10. -Darrell --- In flexcoders@yahoogroups.com,

[flexcoders] Re: Testing with Flex Framework RSL's

2008-03-12 Thread Darrell Loverin
The Flash Player framework cache is location if different places depending on the OS. You can use the Global Storage Settings Panel (http://www.macromedia.com/support/documentation/en/flashplayer/help/ settings_manager03.html) to delete the Player cache. To delete the cache uncheck the Store

[flexcoders] Re: modal PopUp with one component, that should accept user interaction

2008-10-10 Thread Darrell Loverin
I may be misunderstanding your question but the third parameter of the PopUpManager.addPopUp() fucntion is a Boolean that controls whether the popup is modal or non-modal. -Darrell --- In flexcoders@yahoogroups.com, Christoph Leva [EMAIL PROTECTED] wrote: Hi all, I use the popUpManager

[flexcoders] Re: framework issues

2008-11-26 Thread Darrell Loverin
It's possible the two machines are compiling with different SDK versions even though the RSL URL is the same. It is a known problem that when you switch to a different SDK, the RSL URLs are not updated to match the new SDK. To debug the issue you can you the -keep compiler option to keep the

[flexcoders] Re: RSL Error in Flex 2.0.1

2008-12-04 Thread Darrell Loverin
Try changing the load order so that framework.swf is loaded first. --- In flexcoders@yahoogroups.com, t_varada [EMAIL PROTECTED] wrote: Hi All I am trying to convert my project to RSL based. I followed all the steps in the document but never got it worked. Basically we have two custom

[flexcoders] Re: RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-06 Thread Darrell Loverin
flex-compiler-mojo to build flex 2. i upgrade from 3.0.0.477 to 3.2.0.3958 3. it has no when compiling but when i start my app, it gives me error: VerifyError: Error #1079: Native methods are not allowed in loaded codeand cascade the errors... Darrell Loverin wrote: Would you

[flexcoders] Re: RSL VerifyError: Error #1079: Native methods are not allowed in loaded code.

2009-01-07 Thread Darrell Loverin
compiler.services D:\flex\buspinoy-project\buspinoy\buspinoy-ui\target\generated- resources\services-config.xml ...still error. Thanks. Darrell Loverin wrote: This error is caused by trying to load playerglobal.swc as an RSL. playerglobal.swc must always be linked as external

[flexcoders] Re: recompiling framework shared library?

2009-01-12 Thread Darrell Loverin
The reason you are having a problem is because of the first in wins rule that applies to loading classes. Your monkey patched VideoPlayer class is in your swf file, but in frame 2. The framework swz file is loaded in frame 1, so its definition of VideoPlayer wins. The way to work around this

[flexcoders] Re: VerifyError when switching from RSLs to 'Merge into code'

2009-01-22 Thread Darrell Loverin
If you are using FlexBuilder I would first do a clean build to make sure the application was rebuilt and try again. It could be some sub-applications or modules that are being loaded by the main application are dependent on the classes listed in the VerifyErrors being in the main application's

[flexcoders] Re: AxisRenderer Embedded Font Bug?

2009-02-05 Thread Darrell Loverin
The problem sounds like it might be this bug https://bugs.adobe.com/jira/browse/FLEXDMV-1883 which was fixed in Flex 3.2. -Darrell --- In flexcoders@yahoogroups.com, Battershall, Jeff jeff.battersh...@... wrote: Additional info - the chart is in a TitleWindow. There seems to be a lot of

[flexcoders] Re: AxisRenderer Embedded Font Bug?

2009-02-05 Thread Darrell Loverin
] On Behalf Of Darrell Loverin Sent: Thursday, February 05, 2009 7:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: AxisRenderer Embedded Font Bug? The problem sounds like it might be this bug https://bugs.adobe.com/jira/browse/FLEXDMV-1883 which was fixed in Flex 3.2

[flexcoders] Re: RSL and RT loading CSS

2009-02-12 Thread Darrell Loverin
The problem with modules loading the same RSLs will be fixed in Gumbo i10 http://bugs.adobe.com/jira/browse/FB-15470. The StyleManager.loadStyleDeclarations issue sounds like the same kind of problem. To work around the problem I would compile my CSS swf and modules in a separate project where

[flexcoders] Re: RSL and RT loading CSS

2009-02-12 Thread Darrell Loverin
The problem with modules loading the same RSLs will be fixed in Gumbo i10 http://bugs.adobe.com/jira/browse/FB-15470. The StyleManager.loadStyleDeclarations issue sounds like the same kind of problem. To work around the problem I would compile my CSS swf and modules in a separate project where

[flexcoders] Re: Debugger can't find framework source

2009-03-16 Thread Darrell Loverin
The framework RSL does not contain debug information so you can't debug it. The debug infomation is removed from RSLs to make them smaller and download faster. -Darrell --- In flexcoders@yahoogroups.com, reflexactions reflexacti...@... wrote: I noticed that after I switch my app to use

[flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Darrell Loverin
By load it inside flex 3 do you mean compile with fp10 global swc? To use the fp10 global swc in Flex 3 you should compile with -target-player=10. Also verify you are running the fp10 player, fp9 can't run a swf compiled for fp10. -Darrell --- In flexcoders@yahoogroups.com, Gustavo Duenas

[flexcoders] Re: Debugger can't find framework source

2009-03-17 Thread Darrell Loverin
, as sometimes it is useful to be able to step through into adobe code. With our main application it is no longer really practical to change back to merged without a lot of other changes as well as going back to 30 min compiles. --- In flexcoders@yahoogroups.com, Darrell Loverin

[flexcoders] Re: flex 3 issue loading fp10

2009-03-17 Thread Darrell Loverin
. could you help me out step by step. Regards, gustavo On Mar 17, 2009, at 9:42 AM, Darrell Loverin wrote: By load it inside flex 3 do you mean compile with fp10 global swc? To use the fp10 global swc in Flex 3 you should compile with - target-player=10. Also verify you are running

[flexcoders] Re: Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Darrell Loverin
I don't think RSLs are a bad idea for a single application if you are using signed RSLs (swz files) because they may already be in the Flash Player Cache and therefore not need to be downloaded. But to guarantee your Flash Player can load a signed RSL you will need to require Flash Player

[flexcoders] Re: Smallest filesize of a swf in Flex 3 is larger then Flex 2?

2009-03-17 Thread Darrell Loverin
I don't think RSLs are a bad idea for a single application if you are using signed RSLs (swz files) because they may already be in the Flash Player Cache and therefore not need to be downloaded. But to guarantee your Flash Player can load a signed RSL you will need to require Flash Player

[flexcoders] Re: framework RSL deployment problem

2009-03-24 Thread Darrell Loverin
What are the RSL URLs you are using? Flex Builder will copy the RSLs it finds in your {sdk}/frameworks/rsls directory to the bin-debug directory. The rsls will be renamed to match the RSL URLs in your project settings. -Darrell --- In flexcoders@yahoogroups.com, Dana caid...@... wrote: Hi

[flexcoders] Re: framework RSL deployment problem

2009-03-24 Thread Darrell Loverin
What are the RSL URLs you are using? Flex Builder will copy the RSLs it finds in your {sdk}/frameworks/rsls directory to the bin-debug directory. The rsls will be renamed to match the RSL URLs in your project settings. -Darrell --- In flexcoders@yahoogroups.com, Dana caid...@... wrote: Hi

[flexcoders] Re: SWFLoader/Loader in AIR , connection is not closed and adl.exe stays in memory

2009-03-25 Thread Darrell Loverin
When you called SWFLoader.stopAndUnload(), did you compile your app with -target-player=10? If you didn't then stopAndUnload() will fallback to calling unload(). The reason is stopAndUnload() is a new api for Flash Player 10 and can't be called when you compile your app as a version 9 swf.

[flexcoders] Re: SWFLoader/Loader in AIR , connection is not closed and adl.exe stays in memory

2009-03-25 Thread Darrell Loverin
When you called SWFLoader.stopAndUnload(), did you compile your app with -target-player=10? If you didn't then stopAndUnload() will fallback to calling unload(). The reason is stopAndUnload() is a new api for Flash Player 10 and can't be called when you compile your app as a version 9 swf.

[flexcoders] Re: framework RSL deployment problem

2009-03-26 Thread Darrell Loverin
, Darrell Loverin darrell_loverin@ wrote: What are the RSL URLs you are using? Flex Builder will copy the RSLs it finds in your {sdk}/frameworks/rsls directory to the bin-debug directory. The rsls will be renamed to match the RSL URLs in your project settings. -Darrell