[flexcoders] Re: Research - Flex Metatags useable in F.C.K.

2008-11-04 Thread florian.salihovic
The Bindbale Metatag will be compiled into the bytecode so when u implement 
accessors 
by hand and dispatch the events yourself, the designer can already implement 
the whole 
basecomponent. The developer just has to subclass when logic get involved.

Best regards.

--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote:

 Ah ok,
 
 Don't know that answer. :)
 
 Mike
 
 On Thu, Sep 18, 2008 at 8:37 AM, florian.salihovic 
 [EMAIL PROTECTED] wrote:
 
Hi, that would be if i used MXMLC for compilation. What i was asking for
  is, when the
  *.swc gets compiled in Flash with the FCK.
 
  Best regards.
 
 
  --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Michael
  Schmalle teoti.graphix@ wrote:
  
   Hi,
  
   you would use;
  
   -keep-as3-metadata MetaTagName
  
   to keep any meta data tags at compile time. If you look in the build.xml
   file for the framework the keep;
  
   target name=framework description=Builds libs/framework.swc
   compc include-classes=FrameworkClasses
   output=${basedir}/libs/framework.swc locale= accessible=true
   include-namespaces uri=http://www.adobe.com/2006/mxml/
   namespace uri=http://www.adobe.com/2006/mxml;
   manifest=${framework.dir}/manifest.xml/
   source-path path-element=${framework.dir}/src/
   external-library-path dir=${basedir}/libs/player
   includes=playerglobal.swc/
   library-path/
   include-file name=defaults.css
   path=${framework.dir}/defaults.css/
   include-file name=defaults-2.0.0.css
   path=${framework.dir}/defaults-2.0.0.css/
   include-file name=defaults-2.0.1.css
   path=${framework.dir}/defaults-2.0.1.css/
   include-file name=Assets.swf
   path=${framework.dir}/assets/Assets.swf/
   keep-as3-metadata name=Bindable /
   keep-as3-metadata name=Managed /
   keep-as3-metadata name=ChangeEvent /
   keep-as3-metadata name=NonCommittingChangeEvent /
   keep-as3-metadata name=Transient /
   /compc
   /target
  
   Mike
  
   On Thu, Sep 18, 2008 at 5:51 AM, florian.salihovic 
   florian.salihovic@ wrote:
  
I'm currently doing a research on the Flex Component Kit. I need to
outsource some custom
components to a designer. The baseclasses are defined, but will the
metatags (custom events
used for the databinding) also be recognized/compiled into the source?
   
Best regards.
   
   
   
  
  
  
   --
   Teoti Graphix, LLC
   http://www.teotigraphix.com
  
   Teoti Graphix Blog
   http://www.blog.teotigraphix.com
  
   You can find more by solving the problem then by 'asking the question'.
  
 
   
 
 
 
 
 -- 
 Teoti Graphix, LLC
 http://www.teotigraphix.com
 
 Teoti Graphix Blog
 http://www.blog.teotigraphix.com
 
 You can find more by solving the problem then by 'asking the question'.






[flexcoders] Re: Research - Flex Metatags useable in F.C.K.

2008-09-18 Thread florian.salihovic
Hi, that would be if i used MXMLC for compilation. What i was asking for is, 
when the 
*.swc gets compiled in Flash with the FCK.

Best regards.

--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote:

 Hi,
 
 you would use;
 
  -keep-as3-metadata MetaTagName
 
 to keep any meta data tags at compile time. If you look in the build.xml
 file for the framework the keep;
 
 target name=framework description=Builds libs/framework.swc
 compc include-classes=FrameworkClasses
 output=${basedir}/libs/framework.swc locale= accessible=true
 include-namespaces uri=http://www.adobe.com/2006/mxml/
 namespace uri=http://www.adobe.com/2006/mxml;
 manifest=${framework.dir}/manifest.xml/
 source-path path-element=${framework.dir}/src/
 external-library-path dir=${basedir}/libs/player
 includes=playerglobal.swc/
 library-path/
 include-file name=defaults.css
 path=${framework.dir}/defaults.css/
 include-file name=defaults-2.0.0.css
 path=${framework.dir}/defaults-2.0.0.css/
 include-file name=defaults-2.0.1.css
 path=${framework.dir}/defaults-2.0.1.css/
 include-file name=Assets.swf
 path=${framework.dir}/assets/Assets.swf/
 keep-as3-metadata name=Bindable /
 keep-as3-metadata name=Managed /
 keep-as3-metadata name=ChangeEvent /
 keep-as3-metadata name=NonCommittingChangeEvent /
 keep-as3-metadata name=Transient /
 /compc
 /target
 
 Mike
 
 On Thu, Sep 18, 2008 at 5:51 AM, florian.salihovic 
 [EMAIL PROTECTED] wrote:
 
I'm currently doing a research on the Flex Component Kit. I need to
  outsource some custom
  components to a designer. The baseclasses are defined, but will the
  metatags (custom events
  used for the databinding) also be recognized/compiled into the source?
 
  Best regards.
 
   
 
 
 
 
 -- 
 Teoti Graphix, LLC
 http://www.teotigraphix.com
 
 Teoti Graphix Blog
 http://www.blog.teotigraphix.com
 
 You can find more by solving the problem then by 'asking the question'.






Re: [flexcoders] Re: Research - Flex Metatags useable in F.C.K.

2008-09-18 Thread Michael Schmalle
Ah ok,

Don't know that answer. :)

Mike

On Thu, Sep 18, 2008 at 8:37 AM, florian.salihovic 
[EMAIL PROTECTED] wrote:

   Hi, that would be if i used MXMLC for compilation. What i was asking for
 is, when the
 *.swc gets compiled in Flash with the FCK.

 Best regards.


 --- In flexcoders@yahoogroups.com flexcoders%40yahoogroups.com, Michael
 Schmalle [EMAIL PROTECTED] wrote:
 
  Hi,
 
  you would use;
 
  -keep-as3-metadata MetaTagName
 
  to keep any meta data tags at compile time. If you look in the build.xml
  file for the framework the keep;
 
  target name=framework description=Builds libs/framework.swc
  compc include-classes=FrameworkClasses
  output=${basedir}/libs/framework.swc locale= accessible=true
  include-namespaces uri=http://www.adobe.com/2006/mxml/
  namespace uri=http://www.adobe.com/2006/mxml;
  manifest=${framework.dir}/manifest.xml/
  source-path path-element=${framework.dir}/src/
  external-library-path dir=${basedir}/libs/player
  includes=playerglobal.swc/
  library-path/
  include-file name=defaults.css
  path=${framework.dir}/defaults.css/
  include-file name=defaults-2.0.0.css
  path=${framework.dir}/defaults-2.0.0.css/
  include-file name=defaults-2.0.1.css
  path=${framework.dir}/defaults-2.0.1.css/
  include-file name=Assets.swf
  path=${framework.dir}/assets/Assets.swf/
  keep-as3-metadata name=Bindable /
  keep-as3-metadata name=Managed /
  keep-as3-metadata name=ChangeEvent /
  keep-as3-metadata name=NonCommittingChangeEvent /
  keep-as3-metadata name=Transient /
  /compc
  /target
 
  Mike
 
  On Thu, Sep 18, 2008 at 5:51 AM, florian.salihovic 
  [EMAIL PROTECTED] wrote:
 
   I'm currently doing a research on the Flex Component Kit. I need to
   outsource some custom
   components to a designer. The baseclasses are defined, but will the
   metatags (custom events
   used for the databinding) also be recognized/compiled into the source?
  
   Best regards.
  
  
  
 
 
 
  --
  Teoti Graphix, LLC
  http://www.teotigraphix.com
 
  Teoti Graphix Blog
  http://www.blog.teotigraphix.com
 
  You can find more by solving the problem then by 'asking the question'.
 

  




-- 
Teoti Graphix, LLC
http://www.teotigraphix.com

Teoti Graphix Blog
http://www.blog.teotigraphix.com

You can find more by solving the problem then by 'asking the question'.