Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Alex Harui
On 9/19/16, 12:01 AM, "lizhi" wrote: >so,can not get the js file ,as createjs. I haven't looked at what CreateJS really does. You may want to contact them and ask. They may simply be removing headers and concatenating files. GCC has a "WHITESPACE_ONLY" optimization. Not sure

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread Alex Harui
On 9/18/16, 10:34 PM, "lizhi" wrote: >pls look at the image there >https://github.com/fdorg/flashdevelop/issues/1212 > >not the flexjs output can not putin the fd result panel. > >but the 2nd image format can put in the result panel > >the 1st image look good,but can not work with

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread lizhi
and my code not the same as createjs. my code is baseon "flash api",so need remove-circulars. and the createjs is pure js project.so not have the bug. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-pack-full-folder-in-a-js-tp55085p55225.html Sent

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Alex Harui
On 9/18/16, 11:46 PM, "lizhi" wrote: >maybe pack the js need some option.it is the diff of mxmlc use and my >custom >option > >java -jar %FLEX_HOME%\js\lib\google\closure-compiler\compiler.jar --js >bin\js-swc --js

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread lizhi
this will good with col D:\proj\my\engine\tools\tools3d\src\ToolsMain.as(26): col: 8 Warning: variable 'a' has no type declaration. D:\proj\my\engine\tools\tools3d\src\ToolsMain.as(26): col: 4 Error: Access of undefined property a. a ^ -- View

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Alex Harui
On 9/18/16, 12:03 AM, "lizhi" wrote: >function JSCompiler_emptyFn() { >return function () {} > >} >function JSCompiler_set(a) { >return function (b) { >this[a] = b >} >} >function JSCompiler_get(a) { >return function () { >

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread lizhi
so,can not get the js file ,as createjs. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-pack-full-folder-in-a-js-tp55085p55222.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread lizhi
maybe i will try not use the compc. and use the mxmlc.and try include all class in main file. the cmopc,and gcc ,can not get the js file i want. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-pack-full-folder-in-a-js-tp55085p55223.html Sent from

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread lizhi
it is in one line. and with ":" after numline "8" and with "error:" string. -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-error-output-and-flashdevelop-tp55212p55228.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread lizhi
now the flexjs output. D:\proj\git\spriteflexjs\test\src\Main.as:8 所访问的属性 aaa 可能未定义。 aaa ^ and my like. D:\proj\git\spriteflexjs\test\src\Main.as:8: Error: 所访问的属性 "aaa" 可能未定义。 -- View this message in context:

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread lizhi
maybe pack the js need some option.it is the diff of mxmlc use and my custom option java -jar %FLEX_HOME%\js\lib\google\closure-compiler\compiler.jar --js bin\js-swc --js %FLEX_HOME%\frameworks\js\FlexJS\generated-sources\org\apache\flex\utils\Language.js --js

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Alex Harui
On 9/19/16, 12:09 AM, "lizhi" wrote: >and my code not the same as createjs. >my code is baseon "flash api",so need remove-circulars. IMO, if your code is a library that is eventually compiled into an application via MXMLC, then you only need -remove-circulars when MXMLC is run.

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread Alex Harui
I see. Please file a JIRA bug so we don't forget to fix this. -Alex On 9/19/16, 12:28 AM, "lizhi" wrote: >this will good with col >D:\proj\my\engine\tools\tools3d\src\ToolsMain.as(26): col: 8 Warning: >variable 'a' has no type declaration. > >

Re: 回复: flexjs error output,and flashdevelop

2016-09-19 Thread lizhi
thanks,is it this ok https://issues.apache.org/jira/browse/FLEX-35133? -- View this message in context: http://apache-flex-development.247.n4.nabble.com/flexjs-error-output-and-flashdevelop-tp55212p55240.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: mxmlc error null with "large" project

2016-09-19 Thread Justin Magnan
Alex, Modifying the mxmlc jvm arguments did the trick. Using "mxmlc jvmargs" in a google search found http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7fd9.html which lead to the answer. Thanks for the help. Justin On Mon, Sep 19, 2016 at 1:13 AM, Alex Harui

Re: [FlexJS} QName toString()

2016-09-19 Thread Harbs
Yes. I’m pretty sure it’s used to implicitly convert a qname into a proper string representation to an XML name. This can be in client code such as var foo:String = myXML.name(). It’s also used in XML.toAttributeName(). On Sep 19, 2016, at 9:35 PM, Alex Harui wrote: > Hi, >

Re: flexjs ,pack full folder in a js.

2016-09-19 Thread Peter Ent
This latest email is a really good explanation of how things work. Do we have this captured in a wiki page? Peter On Sep 19, 2016, at 11:51 AM, Alex Harui > wrote: On 9/19/16, 12:09 AM, "lizhi" > wrote: and my code

[FlexJS} QName toString()

2016-09-19 Thread Alex Harui
Hi, FlexJS has a Qname class. Looks like it is mostly used in XML. It has a toString() that adds a "::" between the uri and localname. Is toString() being used anywhere? I want to change Qname.toString() to produce a valid JS identifier. Then I can use Qname outside of XML. If mx_internal

Current FlexJS license/notice issues

2016-09-19 Thread Justin Mclean
Hi, As requested here’s an email with current outstanding issues. They are mentioned in the vote emails [1][2] but also previously in [3] and [4] and (the header issue) during the 0.6 release. - Missing text of MIT license for OpenFL. Fix add header to OpenFL and add pointer to license text in

Re: [FlexJS} QName toString()

2016-09-19 Thread Alex Harui
OK, I'll try to find another way. On 9/19/16, 12:12 PM, "Harbs" wrote: >Yes. I’m pretty sure it’s used to implicitly convert a qname into a >proper string representation to an XML name. This can be in client code >such as var foo:String = myXML.name(). It’s also used in