[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-21 Thread lytvynyuk
I see, still I have debug version, which popups exceptions when something happened. (BTW, how to distinguish between debug and non debug, size?) But another fun started when I deployed everything under Linux (Red Hat) Application was build and linked using framework_3.0.189825.swz under

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
In my simple test I see size changing from 241kb to 149kb. I would suggest you log a bug at http://bugs.adobe.com/flex with your test case Thanks, Gaurav --- In flexcoders@yahoogroups.com, lytvynyuk [EMAIL PROTECTED] wrote: Nothing happened, same size. That is mean, It didn't checks that

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread lytvynyuk
Did you get 241kb and 149kb only switching debug option in ant task or one of results is after FB another after ANT? --- In flexcoders@yahoogroups.com, Gaurav Jain [EMAIL PROTECTED] wrote: In my simple test I see size changing from 241kb to 149kb. I would suggest you log a bug at

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
These numbers are after only switching debug (true|false) using flex tasks. --- In flexcoders@yahoogroups.com, lytvynyuk [EMAIL PROTECTED] wrote: Did you get 241kb and 149kb only switching debug option in ant task or one of results is after FB another after ANT? --- In

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread lytvynyuk
In that case no point to report bug, everything works for me too. Problem for me is different actually it is about RSL. I try to build everytinh with RSL which suppose to decrease size of my application. WQhich is not happening. AS you see I included RSL into my flex build task but it doesnt

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
I think you should modify your ant task to following: mxmlc file=${BUILD_SPACE}ActiveUpdate.mxml output=${DEPLOY_DIR}/ActiveUpdate.swf actionscript-file-encoding=UTF-8 services=${BUILD_SPACE}res/services-config.xml

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread lytvynyuk
with runtime-shared-library-path path-element${FLEX_HOME}/frameworks/libs/framework.swc/path-element rsl-url${FLEX_HOME}/frameworks/rsls/framework_3.0.189825.swf/rsl-url /runtime-shared-library-path in my ant build file I getting:

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-20 Thread Gaurav Jain
My bad. The syntax I sent was incorrect. It was meant to be runtime-shared-library-path path-element=${FLEX_HOME}/frameworks/libs/framework.swc The warning you get is because you have specified the signed version of the framework rsl (.swz) in the arguments. It would go away if you either use

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-19 Thread Gaurav Jain
What happens when you compile with Ant task using debug=true? If it generates swf of size more than 190 kb, then probably the difference you are seeing is due to some other difference between FB and ant task arguments. Look in the .actionScriptProperties file to see what libraries FB is

[flexcoders] Re: Flex Ant Task for F3b3 genereates ALWAYS debug version, how to fix that?

2008-02-19 Thread lytvynyuk
Nothing happened, same size. That is mean, It didn't checks that options or I do something wrong. Need to do deeper investigation. All that FlexAntTasks story is so confusing - there is no proper documentation, I figured some options only by analyzing java source files!...g --- In