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 the unsigned version (.swf) or also add the
target-player=9.0.60 (signed rsl support is only available from 9.0.60
onwards)
As to why you don't see difference in size between in FB and ant
tasks. I would recommend you to compare all setting once again (look
in the .actionScriptProperties file), if you don't find any
differences file a bug (with your test case).
Thanks,
Gaurav
--- In [email protected], "lytvynyuk" <[EMAIL PROTECTED]> wrote:
>
> 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:
>
> W:\jboss-4.0.5\server\default\deploy\Myapp.war\build.xml:64: Invalid
> element: path-element
>
> But:
> <runtime-shared-library-path
> path-element="${FLEX_HOME}/frameworks/libs/framework.swc">
> <url
> rsl-url="${FLEX_HOME}/frameworks/rsls/framework_3.0.189825.swz"/>
> </runtime-shared-library-path>
>
> Actually builds OK, but doesn't affect size of code at all.
>
> ${FLEX_HOME} = W:/Program Files/Adobe/Flex Builder 3
> Plug-in/sdks/3.0.0
>
> I run Flex Builder Plug-in 3, build 3.0.190133 beta 3
>
> Also I'm getting this warning:
> [mxmlc] Warning: A signed RSL was specified for library W:\Program
> Files\Adobe\Flex Builder 3
> Plug-in\sdks\3.0.0\frameworks\libs\framework.swc without an unsigned RSL
> as a failover. To avoid runtime errors, either require player version
> 9.0.60 in your HTML wrapper or add an unsigned RSL as a failover for the
> signed RSL. Use -target-player=9.0.60 if you choose to require player
> version 9.0.60.
>
> --- In [email protected], "Gaurav Jain" <gauravj@> wrote:
> >
> > 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"
> > context-root="ISP"
> > locale="en_US" as3="true"
> > optimize="true" static-rsls="false" headless-server="true">
> > <!--
> > <runtime-shared-libraries url="framework_3.0.189825.swf"/>
> > -->
> > <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>
> >
> > <source-path path-element="${FLEX_HOME}/frameworks"/>
> > <compiler.keep-as3-metadata>false</compiler.keep-as3-metadata>
> > <compiler.debug>false</compiler.debug>
> > <compiler.library-path dir="${FLEX_HOME}/frameworks"
> > append="true">
> > <include name="libs" />
> > <include name="../bundles/{locale}" />
> > </compiler.library-path>
> > </mxmlc>
> >
> > if you are using FB 3, it would use <runtime-shared-library-path> and
> > not <runtime-shared-libraries>.
> >
> > <runtime-shared-library-path> was introduced in flex 3 to support
> > framework caching.
> >
> > Thanks,
> > Gaurav
> >
> > --- In [email protected], "lytvynyuk" lytvynyuk@ wrote:
> > >
> > > 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 really affect anything, with or
> > without
> > >
> > > <runtime-shared-libraries
> url="${BUILD_SPACE}framework_3.0.189825.swf"/>
> > >
> > > it produces same size app, but when I compiled it WITH and run it it
> > > demands presence of framework_3.0.189825.swf.
> > >
> > > With ECLIPSE it actually decreases size of application.
> > >
> > > What is the syntax of correct usage of RSL in ant?
> > >
> > > --- In [email protected], "Gaurav Jain" <gauravj@> wrote:
> > > >
> > > > These numbers are after only switching debug (true|false) using
> flex
> > > > tasks.
> > > >
> > >
> >
>