Re: Custom ToggleSwitch in code

2015-04-28 Thread kevin.godell
One problem you have in your script is that you are not actually creating a 
toggleSwitch in your code.

It should be something like 

var tog:ToggleSwitch = new ToggleSwitch;

You have some options for assigning the skin.

If you are creating a class reference in the style section, such as 

s|ToggleSwitch.myTog
{
skinClass : ClassReference("skins.MyToggleSwitchSkin");
}

You can assign the class reference using styleName

tog.styleName = “myTog” or tog.setStyle("styleName", "myTog”) (I am not sure 
which is preferred, but both variations worked) 

If you are not using the class reference, you can just assign the skinClass

tog.setStyle("skinClass", skins.MyToggleSwitchSkin);


> On Apr 27, 2015, at 4:07 AM, WelshAndy [via Apache Flex Development] 
>  wrote:
> 
> Hi Om, 
> Thanks. Unfortunately, that skinClass suggestion didnt work :( Hope its 
> appropriate to post the following code - Ive reduced it to the minimum: 
> 
> CustomToggle.mxml 
> 
>  
> http://ns.adobe.com/mxml/2009";  
> xmlns:s="library://ns.adobe.com/flex/spark" 
> creationComplete="view1_creationCompleteHandler(event)">
> 
> @namespace s "library://ns.adobe.com/flex/spark"; 
> myTog 
> { 
> skinClass: 
> ClassReference("skins.MyToggleSwitchSkin"); 
> } 
> 
> 
>
> 
> 
> 
> 
> 
> 
> 
> and this is MyToggleSwitchSkin.as 
> 
> package skins 
> { 
> import spark.skins.mobile.ToggleSwitchSkin; 
> public class MyToggleSwitchSkin extends ToggleSwitchSkin 
> { 
> public function MyToggleSwitchSkin() 
> { 
> super(); 
> selectedLabel="Yes"; 
> unselectedLabel="No"; 
> } 
> } 
> } 
> 
> Hope thats okay to post. As its unlikely that Im the first person to need to 
> add custom toggle labels via code, Im guessing Im going about this in 
> completely the wrong way! Ready to be enlightened...   
> Thanks 
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://apache-flex-development.247.n4.nabble.com/Custom-ToggleSwitch-in-code-tp46201p46206.html
> To start a new topic under Apache Flex Development, email 
> ml-node+s247n1...@n4.nabble.com 
> To unsubscribe from Apache Flex Development, click here.
> NAML





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Custom-ToggleSwitch-in-code-tp46201p46234.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-10 Thread kevin.godell
@Piotr

Shouldn’t you target the mxmlc and compc that are in /js/bin? It seems like you 
are in /bin.

I am stuck at this point on intellij trying to use compc or mxmlc with the 
following message:

/Users/kevinGodell/Documents/flexjs0.0.3N-air17/js/bin/mxmlc
Using Falcon codebase: 
/Users/kevinGodell/Documents/flexjs0.0.3N-air17/js/bin/../..
Using Flex SDK: /Users/kevinGodell/Documents/flexjs0.0.3N-air17/js/bin/../..
Exception in thread "main" java.lang.UnsupportedClassVersionError: 
org/apache/flex/compiler/clients/MXMLJSC : Unsupported major.minor version 51.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:637)
at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

Process finished with exit code 1

I think my problem may be my java version.

> On May 10, 2015, at 5:01 AM, piotrz [via Apache Flex Development] 
>  wrote:
> 
> This is how it looks like [1] once I setup external tools in Intellij. 
> 
> [1] http://images.devs-on.net/Image/y69VNEEfTnlyFBfu-Cayekran.png 
> 
> 
> Piotr
> Apache Flex PMC 
> piotrzarzyck...@gmail.com
> 
> 
> If you reply to this email, your message will be added to the discussion 
> below:
> http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46377.html
>  
> 
> To start a new topic under Apache Flex Development, email 
> ml-node+s247n1...@n4.nabble.com 
> To unsubscribe from Apache Flex Development, click here 
> .
> NAML 
> 




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46381.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Falcon/FalconJX installation broken

2015-05-10 Thread kevin.godell
I have been trying to get falcon installed using the apache flex sdk
installer, but it fails with the same error message about FLEX_HOME not
being set. I have set it in terminal with the following command:
launchctl setenv FLEX_HOME "/Users/kevinGodell/Documents/flexjs0.0.3N-air17"
and I can verify it using getenv FLEX_HOME, just to be sure. I was looking
at the line 44 @
https://github.com/apache/flex-falcon/blob/aab2352e1876667880f447ba8a0931cd2cc897c9/installer.xml
and found a comment about falcon being installed inside of an existing sdk
in a folder structured like sdk/in/falcon. I am not sure if that is correct,
but I tried to target the /in/falcon folder and still have the same
FLEX_HOME warning upon which the installation fails. Can somebody clue me in
on how to install the nightly falcon using the installer?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Falcon-FalconJX-installation-broken-tp41165p46386.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Falcon/FalconJX installation broken

2015-05-11 Thread kevin.godell
Thanks Alex. I had already installed the flexjs nightly and was trying to
setup external tools on intellij. I was trying to mimic the launch config
settings found in /ide/flashbuilder which was targeting sdk/js/bin/mxmlc.
When running the external tool on intellij(after updating to java 1.7) there
were complaints about not being able to access some files. So, I assumed
that falcon was not included.

The contents of the launch config found in /ide/flashbuilder:










When setting up an external tool, should I target /js/bin/mxmlc or
/bin/mxmlc? I tried targeting /bin/mxmlc and had to chmod 744 the file
because it did not have execute permissions and intellij could not run it.
When I target /js/bin/mxmlc, I get warnings about some files not found:
Error: Unable to access jarfile /../lib/mxmlc.jar

I changed a little in the mxmlc to "$SCRIPT_HOME../lib/mxmlc.jar" from
"$SCRIPT_HOME/../lib/mxmlc.jar" and the error warning went away.

I guess the important thing that I need to clear up is which mxmlc location
should I target, the one in /js/bin or in /bin?

Thanks for the help.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Falcon-FalconJX-installation-broken-tp41165p46398.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-11 Thread kevin.godell
I was able to get the external tool setup on mac/intellij and got a .swf
using the DataBindingTest example with only 1 warning:

/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Loading configuration:
/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17/frameworks/flex-config.xml

41301 bytes written to
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.swf
in 3.894 seconds
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/MyInitialView.mxml:131
Warning: Data binding will not be able to detect assignments to 'strings'.
   
dataProvider="{MyModel(applicationModel).strings}" />
 
Process finished with exit code 0

Then I found the swf and double clicked it and found a nice little stock
quote checker:

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46404.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-11 Thread kevin.godell
And about the intellij external tools settings, you can use $FilePath$ in the
parameters box instead of hard coding the individual app's .mxml file. Just
make sure you have the main .mxml file open and it is focused, so that the
tool will target it's FilePath when launching. That way you can reuse the
external tool on other modules/projects without having to change the
parameter settings.

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46407.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-11 Thread kevin.godell
I changed it to /js/bin/mxmlc and got this response:

/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17
Using Flex SDK: /Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/StockDataJSONItemConverter.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/models/MyModel.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/controllers/MyController.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/MyInitialView.js
Could not find file for class: org_apache_flex_utils_EffectTimer
java.lang.NullPointerException
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getFilePath(GoogDepsWriter.java:494)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:164)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:184)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.buildDB(GoogDepsWriter.java:120)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getListOfFiles(GoogDepsWriter.java:72)
at
org.apache.flex.compiler.internal.codegen.mxml.flexjs.MXMLFlexJSPublisher.publish(MXMLFlexJSPublisher.java:274)
at org.apache.flex.compiler.clients.MXMLJSC.compile(MXMLJSC.java:462)
at 
org.apache.flex.compiler.clients.MXMLJSC._mainNoExit(MXMLJSC.java:326)
at org.apache.flex.compiler.clients.MXMLJSC.mainNoExit(MXMLJSC.java:254)
at
org.apache.flex.compiler.clients.MXMLJSC.staticMainNoExit(MXMLJSC.java:215)
at org.apache.flex.compiler.clients.MXMLJSC.main(MXMLJSC.java:165)


/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/MyInitialView.mxml:131
Data binding will not be able to detect assignments to 'strings'.
   
dataProvider="{MyModel(applicationModel).strings}" />
   
^


Process finished with exit code 3

There were some files output in /bin/js-debug, but I did not see a .html
there.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46408.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-11 Thread kevin.godell
@Piotrz, I found the FilePath when I was playing with the insert macros
button.

@Alex, the new message is slightly different, now complaining about a
different file:

/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17
Using Flex SDK: /Users/kevinGodell/Documents/flexjs-0.0.3nightly_air-17
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/StockDataJSONItemConverter.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/models/MyModel.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/controllers/MyController.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/MyInitialView.js
Could not find file for class: org_apache_flex_core_IEffectTimer
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/MyInitialView.mxml:131
Data binding will not be able to detect assignments to 'strings'.
   
dataProvider="{MyModel(applicationModel).strings}" />
   
^

java.lang.NullPointerException
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getFilePath(GoogDepsWriter.java:494)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:164)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:184)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:184)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.buildDB(GoogDepsWriter.java:120)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getListOfFiles(GoogDepsWriter.java:72)
at
org.apache.flex.compiler.internal.codegen.mxml.flexjs.MXMLFlexJSPublisher.publish(MXMLFlexJSPublisher.java:274)
at org.apache.flex.compiler.clients.MXMLJSC.compile(MXMLJSC.java:462)
at 
org.apache.flex.compiler.clients.MXMLJSC._mainNoExit(MXMLJSC.java:326)
at org.apache.flex.compiler.clients.MXMLJSC.mainNoExit(MXMLJSC.java:254)
at
org.apache.flex.compiler.clients.MXMLJSC.staticMainNoExit(MXMLJSC.java:215)
at org.apache.flex.compiler.clients.MXMLJSC.main(MXMLJSC.java:165)



Process finished with exit code 3




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46411.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-11 Thread kevin.godell
I did have to tweak the mxmlc file in /js/bin because the build would
immediately fail with the Error: Unable to access jarfile /../lib/mxmlc.jar.
I changed SCRIPT_HOME and removed the "/". Maybe that broke something? All
of the files I have were installed using the flex sdk installer with the
flex js nightly. About that first file mentioned, it was in already in core
swc.

I copied the whole src folder, but now the next complaint is "Could not find
file for class: org_apache_flex_html_beads_ContainerView." And yes, I found
that in HTML.swc. I will try again tomorrow, if you have more things for me
to try. Good luck.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46414.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-12 Thread kevin.godell
I saw the commit you made and tried to re-download the nightly this morning
with the installer. 3 failed attempts when it could not verify the air17. I
changed it to air 16 and it downloaded without failing. But unfortunately,
I ran out of time and had to leave for work. I am looking forward to
running it  later, maybe in about 6 hours.

Could there have been a better or faster way for me to get that changed
file without downloading the entire flexjs nightly with the installer? Keep
in mind that I am not knowledgable with command line things, but willing to
learn.

On Tuesday, May 12, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46422...@n4.nabble.com> wrote:

> Hi Kevin,
>
> Looks like the Falcon build passed, so please start over by re-installing
> FlexJS nightly which should pick up this new Falcon build.  Then the
> js/bin/mxmlc should have additional output about which SWCs it is looking
> for.  Maybe that will give us a clue why it can’t find these .js files
>
> -Alex
>
> On 5/11/15, 10:52 PM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46422&i=0>> wrote:
>
> >I did have to tweak the mxmlc file in /js/bin because the build would
> >immediately fail with the Error: Unable to access jarfile
> >/../lib/mxmlc.jar.
> >I changed SCRIPT_HOME and removed the "/". Maybe that broke something?
> All
> >of the files I have were installed using the flex sdk installer with the
> >flex js nightly. About that first file mentioned, it was in already in
> >core
> >swc.
> >
> >I copied the whole src folder, but now the next complaint is "Could not
> >find
> >file for class: org_apache_flex_html_beads_ContainerView." And yes, I
> >found
> >that in HTML.swc. I will try again tomorrow, if you have more things for
> >me
> >to try. Good luck.
> >
> >
> >
> >--
> >View this message in context:
> >
> http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-t
> >o-IDE-developers-to-support-FlexJS-tp32656p46414.html
> >Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46422.html
>  To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> 
> To unsubscribe from [FlexJS] Reaching out to IDE developers to support
> FlexJS, click here
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=32656&code=a2V2aW4uZ29kZWxsQGdtYWlsLmNvbXwzMjY1NnwyNTAxOTQ4MDU=>
> .
> NAML
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46423.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-12 Thread kevin.godell
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Using Flex SDK: /Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/StockDataJSONItemConverter.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/models/MyModel.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/controllers/MyController.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/MyInitialView.js
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/player/17.0/playerglobal.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Binding.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Charts.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Collections.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Core.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/CreateJS.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/DragDrop.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Effects.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Formatters.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/GoogleMaps.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Graphics.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/HTML.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/HTML5.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/JQuery.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Mobile.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Network.swc
Could not find file for class: org_apache_flex_utils_EffectTimer
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/MyInitialView.mxml:131
Data binding will not be able to detect assignments to 'strings'.
   
dataProvider="{MyModel(applicationModel).strings}" />
   
^

java.lang.NullPointerException
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getFilePath(GoogDepsWriter.java:498)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:168)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.addDeps(GoogDepsWriter.java:188)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.buildDB(GoogDepsWriter.java:124)
at
org.apache.flex.compiler.internal.graph.GoogDepsWriter.getListOfFiles(GoogDepsWriter.java:76)
at
org.apache.flex.compiler.internal.codegen.mxml.flexjs.MXMLFlexJSPublisher.publish(MXMLFlexJSPublisher.java:274)
at org.apache.flex.compiler.clients.MXMLJSC.compile(MXMLJSC.java:462)
at 
org.apache.flex.compiler.clients.MXMLJSC._mainNoExit(MXMLJSC.java:326)
at org.apache.flex.compiler.clients.MXMLJSC.mainNoExit(MXMLJSC.java:254)
at
org.apache.flex.compiler.clients.MXMLJSC.staticMainNoExit(MXMLJSC.java:215)
at org.apache.flex.compiler.clients.MXMLJSC.main(MXMLJSC.java:165)



Process finished with exit code 3




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46447.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-12 Thread kevin.godell
I had a little success getting the swf to connect to the debugging console in
intellij, I think.


 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46448.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-12 Thread kevin.godell
It created the index.html this time, and I was able to view the js app there.
Cool.
What is the difference between the release and the debug version? They
appeared identical in the browser.

/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Using Flex SDK: /Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/StockDataJSONItemConverter.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/models/MyModel.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/controllers/MyController.js
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/MyInitialView.js
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/player/17.0/playerglobal.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Binding.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Charts.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Collections.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Core.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/CreateJS.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/DragDrop.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Effects.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Formatters.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/GoogleMaps.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Graphics.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/HTML.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/HTML5.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/JQuery.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Mobile.swc
using SWC:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/frameworks/libs/Network.swc
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/utils/EffectTimer.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IEffectTimer.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/IEventDispatcher.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/ValuesManager.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IValuesImpl.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/EventDispatcher.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/ElementEvents.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/ValueEvent.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/SimpleStatesImpl.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IBead.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IStatesImpl.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IStrand.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/UIBase.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/HTMLElementWrapper.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/core/IBeadModel.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/BrowserEvent.js'
Dependencies calculated for
'/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/org/apache/flex/events/Event.js'
Depend

Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-13 Thread kevin.godell
Piotr, I had to tweak a few settings. I recorded a screen video from start to
finish of me creating a project ->module->external tool->changing others
settings. When I tried to upload to youtube last night, youtube complained
about the format after it hanged for a while. I am trying to upload it once
again before I have to head out the door for work.

Some things that I can remember right now:
1. create flexjs project
2. create DataBindingTest module in flexjs project
3. create the external test to use /bin/mxmlc
- I changed the settings on parameters to
$ModuleSourcePath$/$ModuleName$.mxml instead of $file path, that way it will
always target the main file, but this assumes that the module has the same
name as the main file that you target with mxmlc external tool
4. edit the Run/Debug configurations
-in the "before launch" section, delete "Make", then press the + and add our
external tool
-in the "Use debugger from sdk" section, I changed it to use a regular flex
sdk, not the flexjs sdk. Using the flexjs skd failed but flex one worked. I
did not find the reason yet for that.
5. open "Project Structure" and edit the module's output folder
-changed mine to /Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src
6. press the debug button and hope for the best

Ok, good, the video successfully uploaded while typing this.

My first video ever for youtube. No audio. Late at night and my wife wasnt
available to hold the queue cards.

https://www.youtube.com/watch?v=NBJEjIcfNs8&feature=youtube_gdata_player

https://www.youtube.com/embed/NBJEjIcfNs8"; frameborder="0"
allowfullscreen>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46459.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-13 Thread kevin.godell
I hope that the patch wasn't the cause of the build failing!

Quick question for you, I need to change the file permissions on the
/bin/mxmlc so that it is user executable. Every time I download the flexjs
nightly, I have to chmod 744 mxmlc so that IntelliJ wont complain about the
permission to execute. I understand how to edit a file using the online
interface on github, but how do you change the permissions of a file? And do
you know which repo that file is contained in? The installer grabs the files
and puts them all together for me, so I don't really know where it lives
before making it to my flexjs sdk.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46460.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-13 Thread kevin.godell
I will try to put in some echo statements and see whst scripthome is being
defined as when I get home tonight. I am not familiar with shell scripting,
but it looks like I could mess with it. Could that be defined as an
environmental variable? I know that I have to set flexhome and falconhome
to make mxmlc work using env vars.

On Wednesday, May 13, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46461...@n4.nabble.com> wrote:

>
>
> On 5/13/15, 4:35 AM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46461&i=0>> wrote:
>
> >I hope that the patch wasn't the cause of the build failing!
>
> The build likes to fail waiting for flexunit results.  At some point it
> will get past that failure point.
> That said, I’m not 100% sure that was the right patch.  IMO, the problem
> is that SCRIPT_HOME isn’t being set for some scenarios.  If SCRIPT_HOME
> does get set, I think you do want the slash.  But I could be wrong about
> that.
>
> >
> >Quick question for you, I need to change the file permissions on the
> >/bin/mxmlc so that it is user executable. Every time I download the
> flexjs
> >nightly, I have to chmod 744 mxmlc so that IntelliJ wont complain about
> >the
> >permission to execute. I understand how to edit a file using the online
> >interface on github, but how do you change the permissions of a file? And
> >do
> >you know which repo that file is contained in? The installer grabs the
> >files
> >and puts them all together for me, so I don't really know where it lives
> >before making it to my flexjs sdk.
> >
>
> I think bin/mxmlc comes in from the Falcon install in flex-falcon repo.
> The file is in the compiler/commandline folder.  The install script should
> be in root of flex-falcon in installer.xml, and the file gets packaged by
> build.xml.  Not sure where the right place is to do the chmod, but there
> is probably other chmod going on for js/bin somehow.
>
> Thanks again for your help on this.
>
> -Alex
>
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46461.html
>  To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> 
> To unsubscribe from Re: [3/3] git commit: [flex-asjs] [refs/heads/develop]
> - Revert "Revert "SCRIPT_HOME path had extra slash"", click here
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=46455&code=a2V2aW4uZ29kZWxsQGdtYWlsLmNvbXw0NjQ1NXwyNTAxOTQ4MDU=>
> .
> NAML
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46464.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-13 Thread kevin.godell
So, am I suppose to define env vars for flexhome and falconhome? It doesn't
work if I don't.

On Wednesday, May 13, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46467...@n4.nabble.com> wrote:

> SCRIPT_HOME is supposed to be the directory the shell script is in so that
> it can use relative paths from there to find other things.  I’d prefer not
> to require environment variables as I think there are similar scripts in
> the Flex SDK that don’t require environment variables, but I could be
> wrong about that.
>
> Thanks for helping out,
> -Alex
>
> On 5/13/15, 7:43 AM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46467&i=0>> wrote:
>
> >I will try to put in some echo statements and see whst scripthome is
> being
> >defined as when I get home tonight. I am not familiar with shell
> >scripting,
> >but it looks like I could mess with it. Could that be defined as an
> >environmental variable? I know that I have to set flexhome and falconhome
> >to make mxmlc work using env vars.
> >
> >On Wednesday, May 13, 2015, Alex Harui [via Apache Flex Development] <
> >[hidden email] <http:///user/SendEmail.jtp?type=node&node=46467&i=1>>
> wrote:
> >
> >>
> >>
> >> On 5/13/15, 4:35 AM, "kevin.godell" <[hidden email]
> >> <http:///user/SendEmail.jtp?type=node&node=46461&i=0>> wrote:
> >>
> >> >I hope that the patch wasn't the cause of the build failing!
> >>
> >> The build likes to fail waiting for flexunit results.  At some point it
> >> will get past that failure point.
> >> That said, I’m not 100% sure that was the right patch.  IMO, the
> problem
> >> is that SCRIPT_HOME isn’t being set for some scenarios.  If SCRIPT_HOME
> >> does get set, I think you do want the slash.  But I could be wrong
> about
> >> that.
> >>
> >> >
> >> >Quick question for you, I need to change the file permissions on the
> >> >/bin/mxmlc so that it is user executable. Every time I download the
> >> flexjs
> >> >nightly, I have to chmod 744 mxmlc so that IntelliJ wont complain
> about
> >> >the
> >> >permission to execute. I understand how to edit a file using the
> online
> >> >interface on github, but how do you change the permissions of a file?
> >>And
> >> >do
> >> >you know which repo that file is contained in? The installer grabs the
> >> >files
> >> >and puts them all together for me, so I don't really know where it
> >>lives
> >> >before making it to my flexjs sdk.
> >> >
> >>
> >> I think bin/mxmlc comes in from the Falcon install in flex-falcon repo.
> >> The file is in the compiler/commandline folder.  The install script
> >>should
> >> be in root of flex-falcon in installer.xml, and the file gets packaged
> >>by
> >> build.xml.  Not sure where the right place is to do the chmod, but
> there
> >> is probably other chmod going on for js/bin somehow.
> >>
> >> Thanks again for your help on this.
> >>
> >> -Alex
> >>
> >>
> >>
> >> --
> >>  If you reply to this email, your message will be added to the
> >>discussion
> >> below:
> >>
> >>
> >>
> http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-fl
> >>ex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash
>
> >>-tp46455p46461.html
> >>  To start a new topic under Apache Flex Development, email
> >> [hidden email] <http:///user/SendEmail.jtp?type=node&node=46467&i=2>
> >>  <http:///user/SendEmail.jtp?type=node&node=46467&i=3>');>
> >> To unsubscribe from Re: [3/3] git commit: [flex-asjs]
> >>[refs/heads/develop]
> >> - Revert "Revert "SCRIPT_HOME path had extra slash"", click here
> >>
> >><
> >>mNvbXw0NjQ1NXwyNTAxOTQ4MDU=>
> >> .
> >> NAML
> >>
> >><
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServle>
> http://apache-flex-development.247.n4.nabble.com/template/NamlServle
> >>t.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabbl
>
> >>e.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace
>
> >>-nabble.view.web.template.NodeNames

Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-13 Thread kevin.godell
Sorry for the late reply, just got home. Yeah, the video wasnt great because
it was late and I  was rushing through. But, I do use the flexjs sdk in
Project Structure -> Modules -> Dependencies -> Flex / AIR SDK = flexjs
nightly. In the Run/Debugger settings, I set the "Use debugger from SDK" =
flex(not js). When I targeted the flexjs as the location of the debugger, it
failed like yours with the following:

/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java
-d32
-Dapplication.home=/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
-Dfile.encoding=UTF-8 -Djava.awt.headless=true -Duser.language=en
-Duser.region=en -Xmx512m -classpath "/Applications/IntelliJ IDEA
14.app/Contents/plugins/flex/lib/idea-fdb-4.0.0.14159-fix.jar:/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/lib/fdb.jar"
flex.tools.debugger.cli.DebugCLI
Exception in thread "main" java.lang.NoClassDefFoundError:
flash/tools/debugger/SourceLocator
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java:637)
at java.lang.ClassLoader.defineClass(ClassLoader.java:621)
at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)
at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)
at java.net.URLClassLoader.access$000(URLClassLoader.java:58)
at java.net.URLClassLoader$1.run(URLClassLoader.java:197)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
Caused by: java.lang.ClassNotFoundException:
flash.tools.debugger.SourceLocator
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
... 12 more
java.io.IOException: Stream closed

Try to target the regular flex sdk, just to see what happens. I was just
trying random things and that was how it worked for me.

This is what I got when it worked by targeting the regular flex sdk for
debugging:
/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java
-d32 -Dapplication.home=/Users/kevinGodell/Documents/flex4.15.0N-air17
-Dfile.encoding=UTF-8 -Djava.awt.headless=true -Duser.language=en
-Duser.region=en -Xmx512m -classpath
/Users/kevinGodell/Documents/flex4.15.0N-air17/lib/fdb.jar
flex.tools.debugger.cli.DebugCLI -ide
Apache fdb (Flash Player Debugger) [build 20150414]
Copyright 2013 The Apache Software Foundation. All rights reserved.
Waiting for Player to connect
Player connected; session starting.
[trace] profiler is live
[trace] io error:[IOErrorEvent type="ioError" bubbles=false cancelable=false
eventPhase=2 text="Error #2031: Socket Error. URL: 127.0.0.1"]
[trace] hello world
[trace] hello world
[UnloadSWF]
Users:kevinGodell:IdeaProjects:flexJS:DataBindingTest:src:DataBindingTest.swf
Player session terminated



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46488.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-13 Thread kevin.godell
Sorry. please revert that change. For some reason that I cant remember right
now, I thought that I had to setup the environment variables for FLEX_HOME
and FALCON_HOME. Having those set, it causes that SCRIPT_HOME part to end up
with that error. When I removed the env vars, and put the mxmlc back to the
original, it was just fine. Once again, sorry for the unnecessary pull
request.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46490.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-13 Thread kevin.godell
I tried changing it to 4.15.0, which is what was in the flex nightly, but no
luck. In the flexJS nightly, I found no /lib/fdb.jar file. I copied it from
the other sdk, but still no luck. It just complained a little differently
when trying to debug with flexjs:

/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java
-d32
-Dapplication.home=/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
-Dfile.encoding=UTF-8 -Djava.awt.headless=true -Duser.language=en
-Duser.region=en -Xmx512m -classpath "/Applications/IntelliJ IDEA
14.app/Contents/plugins/flex/lib/idea-fdb-4.0.0.14159-fix.jar:/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/lib/fdb.jar"
flex.tools.debugger.cli.DebugCLI
Exception in thread "main" java.lang.NoClassDefFoundError:
flash/localization/ILocalizer
Caused by: java.lang.ClassNotFoundException: flash.localization.ILocalizer
at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
java.io.IOException: Stream closed



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46492.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-13 Thread kevin.godell
I tried to post earlier, but it seems to have been lost. Hopefully this will
not be a double post.

Leaving the mxmlc as it was before the patch, this was my results calling it
from command line taking intellij out of the picture for the moment.

env var FLEX_HOME and FALCON_HOME set to
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/

Kevins-MBP:~ kevinGodell$
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/
Using Flex SDK: /Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/
Error: Unable to access jarfile /../lib/mxmlc.jar

env var FLEX_HOME and FALCON_HOME set to
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17

Kevins-MBP:~ kevinGodell$
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Using Flex SDK: /Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
Error: Unable to access jarfile /../lib/mxmlc.jar

unset FLEX_HOME and FALCON_HOME

Kevins-MBP:~ kevinGodell$
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/mxmlc
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/src/DataBindingTest.mxml
Using Falcon codebase:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/../..
Using Flex SDK:
/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/js/bin/../..
Compiling file:
/Users/kevinGodell/IdeaProjects/flexJS/DataBindingTest/bin/js-debug/DataBindingTest.js
…and then it completes

Later I edited the mxmlc and changed the mxmlc.jar reference to -jar
"$FALCON_HOME/js/lib/mxmlc.jar" . This satisfied all 3 situations tested: no
env vars, vars set with trailing slash, and then without trailing slash. I
dont know if this covers every possible scenario. And just for the record, I
had to read some tuts just to understand the basic structure of shell
scripting, so don't trust it on my word alone.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46493.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread kevin.godell
Alex Harui wrote
> On 5/13/15, 10:10 PM, "piotrz" <

> piotrzarzycki21@

> > wrote:
> 
>>Mike,
>>
>>Great idea to reach someone from Jetbrains we really need some help from
>>that point from them. Thank you!
> 
> Alexander Doroshko is still subscribed as of April so maybe he just hasn’t
> noticed this thread.
> 
>>
>>Maybe I will describe our current problems:
>>
>>1) We have successfully configured External Tools both on Mac OSX (Thanks
>>Kevin!) and Win [1]
>>2) Once we use FlexJS in section "Use debugger from SDK" we are getting
>>following error [2]
>>3) Once we change it in section "Use debugger from SDK" from FlexJS to
>>Flex
>>SDK our debugger is working fine. Take a look at film created by Kevin [3]
>>especially at 3:48 and compare console output with mine from FlexJS.
>>-classpath in mine output is different.
> 
> Have you tried the latest combination of changing the version of
> flex-sdk-description.xml in the FlexJS  folder as well as copying the
> fdb.jar, swfutils.jar and asc.jar from the Flex SDK?
> 
> Thanks,
> -Alex

I tried it with the 3 files copied and the flex-sdk-description.xml edited
to show 4.15.0. Still failed, but atleast the error message got smaller:

/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java
-d32
-Dapplication.home=/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17
-Dfile.encoding=UTF-8 -Djava.awt.headless=true -Duser.language=en
-Duser.region=en -Xmx512m -classpath "/Applications/IntelliJ IDEA
14.app/Contents/plugins/flex/lib/idea-fdb-4.0.0.14159-fix.jar:/Users/kevinGodell/Documents/flexJS-nightly_air-17_fp-17/lib/fdb.jar"
flex.tools.debugger.cli.DebugCLI
Exception in thread "main" java.lang.IllegalAccessError: tried to access
method flex.tools.debugger.cli.FaultActions.()V from class
flex.tools.debugger.cli.DebugCLI
at flex.tools.debugger.cli.DebugCLI.(DebugCLI.java:381)
at flex.tools.debugger.cli.DebugCLI.main(DebugCLI.java:318)
java.io.IOException: Stream closed



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46504.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-14 Thread kevin.godell
Alex Harui wrote
> Hi Kevin,
> 
> Yes, shell scripts are a whole different language.  I’m no expert either.
> 
> I think there is a fourth scenario, where FALCON_HOME is set to a folder
> in a flex-falcon repo, so I’m not sure you can use FALCON_HOME instead of
> SCRIPT_HOME.
> 
> To me, the issue appears to be this portion of the script:
> 
> if [ "x${FALCON_HOME}" = "x" ]
> then
> SCRIPT_HOME=`dirname $0`
> FALCON_HOME=${SCRIPT_HOME}/../..
> fi
> 
> I think this might need to have SCRIPT_HOME taken out of the if/then and
> run earlier.  Because if FALCON_HOME is set, then SCRIPT_HOME never gets
> set

Yes, that makes sense now. I tried to run the script with the 3 scenarios of
unset, trailing slash, and no slash with the code changed to:
SCRIPT_HOME=`dirname $0`
if [ "x${FALCON_HOME}" = "x" ]
then
FALCON_HOME=${SCRIPT_HOME}/../..
fi

and 

-jar "$SCRIPT_HOME/../lib/mxmlc.jar"

It worked.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46505.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-14 Thread kevin.godell
I will do that in about 5 hours when I get home.

On Thursday, May 14, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46550...@n4.nabble.com> wrote:

> OK, can you generate a pull request for this change?
>
> Thanks,
> -Alex
>
> On 5/14/15, 4:01 AM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46550&i=0>> wrote:
>
> >Alex Harui wrote
> >> Hi Kevin,
> >>
> >> Yes, shell scripts are a whole different language.  I’m no expert
> >>either.
> >>
> >> I think there is a fourth scenario, where FALCON_HOME is set to a
> folder
> >> in a flex-falcon repo, so I’m not sure you can use FALCON_HOME instead
> >>of
> >> SCRIPT_HOME.
> >>
> >> To me, the issue appears to be this portion of the script:
> >>
> >> if [ "x${FALCON_HOME}" = "x" ]
> >> then
> >> SCRIPT_HOME=`dirname $0`
> >> FALCON_HOME=${SCRIPT_HOME}/../..
> >> fi
> >>
> >> I think this might need to have SCRIPT_HOME taken out of the if/then
> and
> >> run earlier.  Because if FALCON_HOME is set, then SCRIPT_HOME never
> gets
> >> set
> >
> >Yes, that makes sense now. I tried to run the script with the 3 scenarios
> >of
> >unset, trailing slash, and no slash with the code changed to:
> >SCRIPT_HOME=`dirname $0`
> >if [ "x${FALCON_HOME}" = "x" ]
> >then
> >FALCON_HOME=${SCRIPT_HOME}/../..
> >fi
> >
> >and
> >
> >-jar "$SCRIPT_HOME/../lib/mxmlc.jar"
> >
> >It worked.
> >
> >
> >
> >--
> >View this message in context:
> >
> http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-fle
> >x-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-t
>
> >p46455p46505.html
> >Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46550.html
>  To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> 
> To unsubscribe from Re: [3/3] git commit: [flex-asjs] [refs/heads/develop]
> - Revert "Revert "SCRIPT_HOME path had extra slash"", click here
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=46455&code=a2V2aW4uZ29kZWxsQGdtYWlsLmNvbXw0NjQ1NXwyNTAxOTQ4MDU=>
> .
> NAML
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46558.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread kevin.godell
Is there any arg that can be passed to /bin/mxmlc to have the swf output into
a different directory? Its not really a big deal, but when I run the
external tool and create the swf, it is output into the src directory, along
side with the mxml file that was passed to /bin/mxmlc. Ideally, I would like
to move it up a level into a bin folder, similar to how the /js/bin/mxmlc
works.

Has anybody tried -keep? I wanted to see the generated as, but it does not
seem to work.

About the -debug=true arg, I had that in the original video, but I have
since removed that arg as it does not seem necessary. Can anybody else
verify that you can debug without that arg passed in?

$ModuleSourcePath$/$ModuleName$.mxml is what I use in the parameters of the
external tool. It seemed to work ok, so that if you give focus to any file
in the src directory of the app, it will still target the correct file. This
made sense to me because most likely you will be editing a file in src, and
then launching the debugger after the edit.

Does the main mxml file have to be named DataBindingTest.mxml? Is there any
code inside the app that is dependent on that name? I didn't have time to
investigate that. Ran out of time for tonight. Thanks.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46573.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-15 Thread kevin.godell
Thanks. The output arg worked. I added this little bit to the parameters of
the custom external tool:

-output=$ModuleFileDir$/bin/$ModuleName$.swf

It puts the swf in the bin folder. It even creates the bin folder if it
doesn't already exist.

I was also testing to see if Adobe Scout could pick up on the debugging. I
added -advanced-telemetry=true as an arg, but Scout doesnt seem to detect
the swf. Either I am doing it wrong, forgot some other setting, or it just
isn't supported.

The other thing I tried is using the profiler in IntelliJ. It works, I
think. Being that I am very new IntelliJ user, I am not sure what to expect
from that feature.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46576.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-15 Thread kevin.godell
TeotiGraphix wrote
> Kevin, I am curious what are some of your motivations for trying out and
> testing FlexJS?
> 
> Mike

Mike, thanks for asking, although you may regret the long boring answer. 

Short answer: I have some guys at work with windows phones and tablets and I
would like them to use my app, which of course, is only available for
android and ios. Since my app is in its infancy, I wanted to try to rebuild
it using flexJS, to see if I could eventually target more devices.

Long answer: I like troubleshooting and learning new things. I had my first
taste of programming about 12 years ago when I was reading a maximumPC
magazine article that had a tutorial about "hosting your own blog using
xampp on a windows pc." My thoughts were: What the heck is a blog? And what
the heck is hosting? That lead me from html/js -> php -> running linux
servers -> making wordpress plugins -> hosting glype proxies -> making
firefox addons -> making flash based interface for glype proxies -> making
desktop app for zoneminder using flex ->making mobile app for zoneminder
using flex -> ???

Out of all of the things that I had tried over the years, I really liked
flex the best. It allowed somebody like me, with absolutely no official
training, to easily make apps. And like many, I was saddened by what seemed
like the death of flash and flex. Now that flex has been reborn, and is
rapidly evolving, I am very excited and really want to see it succeed. So, I
will do my part to contribute to that success.

End transmission...



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46580.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


FlexJS to Android Device using IntelliJ and PhoneGap Build

2015-05-16 Thread kevin.godell
I was messing around with FlexJS using IntelliJ and decided to try out the
online PhoneGap build service. On the website, there was an option to upload
a zip file. So, I zipped the contents of js-release and uploaded it.
PhoneGap build complained a little. Something about not having the latest
version of phonegap, and missing a config file. Also, I did not have any
certificate for ios or android(which it would allow me to add on the site),
but atleast it still let me build the android apk. I couldnt get my mac to
see my plugged in android device(nexus 4), so I just scanned the qr code to
see what would happen. I proceded to download and install the untrusted app.
It worked exactly the same as on the swf and html page. Pretty cool.

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-to-Android-Device-using-IntelliJ-and-PhoneGap-Build-tp46633.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-16 Thread kevin.godell
I was trying out some other external tools settings to create a workflow, but
I have been stopped by:
"Process finished with exit code 2."
Pertaining to the run/debug configurations, when adding an external tool to
run /bin/mxmlc in the "before launch" section, it finishes with exit code 0,
and then proceeds to the do the "what to launch" process. So, it will build
the swf, and then launch the debugger. But when trying the same process but
running /js/bin/mxmlc, it ends up with an exit code 2, which stops the
process from making it to the next step, which may be another external tool,
such as zipping the folder so that it can be uploaded to phonegap build, and
then launching the index.html in the browser. Does anybody know how to
either suppress the error code so that the steps can continue? I see that
there is an option for "Make, no error check," but there is not an option to
ignore errors when running external tools. Maybe there is a flag that can be
passed to an external tool -ignoreErrors=true?

So, the ideal workflow would be to press the run or debug button which would
do the following:
1. run the /js/bin/mxmlc
2. launch the html page in the browser of choice
3. possibly zip the js-release folder for upload
4. send files to cordova, etc

I have set up the external tools for zipping and also launching index.html
with chrome and they work ok when run by themselves. The problem is the
/js/bin/mxmlc has that exit code 2 which stops the workflow. I know that I
can just run each tool in order, 1 at a time, but I really would like to
have it with the push of 1 button. Maybe I am asking for too much?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46636.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-16 Thread kevin.godell
Ok, got it figured out. -warnings=false

Adding -warnings=false to the parameters of the external tool that calls
/js/bin/mxmlc will allow it to finish with exit code 0, and thus, continue
to its next step

I pushed it to see how many things I could link together when pressing the
debug button:

1. external tool /js/bin/mxmlc
2. external tool zip command to zip the js-release contents
3. external tool /bin/mxmlc
4. external tool open index.html with chrome
5. launch swf to debugger

All completed successfully.

I know that most people probably wont be running all of these things at one
time, but atleast you have to option to do that with intellij. It is a
really customizable ide.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46638.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Reaching out to IDE developers to support FlexJS

2015-05-17 Thread kevin.godell
I made a screencast video showing the settings used for the external tools,
and then ran them all in a row by hitting the debug button.

https://youtu.be/X7LqexU8TkQ

https://www.youtube.com/embed/X7LqexU8TkQ"; frameborder="0"
allowfullscreen>



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Reaching-out-to-IDE-developers-to-support-FlexJS-tp32656p46639.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-19 Thread kevin.godell
Alex, you were right! I can't find your original comment, but I remember you
telling me that I should try changing the version in the
flex-sdk-description.xml to a higher number, for the FlexJS sdk. I had
reported back to you that it did not make a difference. I was wrong, kinda.
It turns out that if you edit that file after already having it listed as an
SDK, that IJ does not pick up the version number change. So, changing it to
something like 4.15.0 and copying fdb.jar, asc.jar, and swfutils.jar from
the lib folder of the flex sdk to the lib folder of the flexJS sdk allows
the debugger to work, as long as the flexJS sdk is added to IJ after the
version number edit. Then, IJ does not try to apply that patch thinking that
it is an old version of flex like 4.0. Sorry that I did not catch this
earlier.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46747.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [3/3] git commit: [flex-asjs] [refs/heads/develop] - Revert "Revert "SCRIPT_HOME path had extra slash""

2015-05-19 Thread kevin.godell
The pull request was submitted per your suggestion[0]. 

I was looking at the permission of the mxmlc file in /compiler/commandline/
in the flex-falcon repo and found that it was executable when running ls -l
on its directory. It's weird that when it gets copied to the nightly flexjs
sdk via the installer that it loses the executable permissions. I did see a
chmod tag in the build.xml but I am not sure what script or file decides how
the files get chmod'd.

[0]https://github.com/apache/flex-asjs/pull/2



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-3-3-git-commit-flex-asjs-refs-heads-develop-Revert-Revert-SCRIPT-HOME-path-had-extra-slash-tp46455p46748.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] IntelliJ Integration

2015-05-20 Thread kevin.godell
TeotiGraphix wrote
> Kevin, BTW I DID read your answer of why you are testing FlexJS and I
> think
> that is great, your story sounds a lot like mine over the past years.
> 
> Just didn't want to think your reply went unanswered. :)
> 
> So what you have found out here, what does it mean? You can use FlexJS
> with
> the FDB that comes with FlexJS SDK?
> 
> Mike

Thanks for your empathy, Mike. I had thought that I got too mushy and
everybody walked away saying ew. Ha.

And yes, if copying the 3 files mentioned from a flex sdk to the flexJS sdk
and updating the version number before adding it to IJ as an sdk, IJ will
use the flexJS sdk debugger without trying to apply its patch. So, in the
debugger settings, I can set it to use the flexJS sdk and it debugs as it
should.




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46756.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: AW: [FlexJS] IntelliJ Integration

2015-05-20 Thread kevin.godell
Sorry for not being specific. The changes that I tried only helped me to use
the debugger in the flexjs Sdk after copying those files from the flex Sdk
and editing the version number. It did not help with code completion or
hinting. I still had to add flexjs as an external library for that to
partially work.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46767.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


RE: AW: [FlexJS] IntelliJ Integration

2015-05-20 Thread kevin.godell
Actually, I use the flexjs as a lib AND as the assigned Sdk. I no longer
point to the flex Sdk for debugging since I have copied the 3 files from
flex to flexjs and edited the version number. Sorry that I cannot post any
screenshots for clarification since I am not at home with my computer for
maybe 7 hours from now.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46770.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Problems with TabbedViewNavigatorApplication?

2015-05-20 Thread kevin.godell
I had a similar issue when making a simple tabbed navigator app and trying
to use the keep actionscript arg on flash builder. Whenever I tried to
compile, warnings popped up and I had to tell it to ignore the errors. The
app still compiled and the actionscript was generated, but FB thought there
was something wrong. I wasn't even using maven or flexmojos.

On Wednesday, May 20, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46762...@n4.nabble.com> wrote:

> Chris,
>
> Is there a way to see what parameters are being passed to the compiler and
> what the compiler’s other output is.  For me, the compiler usually says
> something like:
>
> Loading configuration file /flex-config.xml
>
>
> Also, can you reproduce this just by typing on the command line without
> Maven/FlexMojos involved?
>
> -Alex
>
> On 5/20/15, 1:30 AM, "Christofer Dutz" <[hidden email]
> > wrote:
>
> >Ok now this is strange ... I added an example to the flexmojos examples.
> >
> >Unfortunately at first my totally stripped down demo compiled without
> >problems. So I added all of my config options to flexmojos and got the
> >same error. By taking away one option at a time I found out that I get
> >that error as soon as I set to keep the generated ActionScript ... any
> >Idea why?
> >
> >If I comment in the option to keep the generated actionscript, I get
> this:
> >INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf
> >(default-compile-swf) @ simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> >Writing configuration dump to
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/target/simple-air-1.0.0-SNAPSHOT-configs.xml
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/src/main/flex/SimpleAirMobileApplication.mxml
>
> >(22):  Error: Typ wurde nicht gefunden oder war keine
> >Kompilierungszeit-Konstante: ViewNavigatorBase.
> >
> >xmlns:s="library://ns.adobe.com/flex/spark">
> >
> >[INFO]
> >
> >[INFO] Reactor Summary:
> >[INFO]
> >[INFO] mobile . SUCCESS [
> >0.106 s]
> >[INFO] simple-air . FAILURE [
> >2.734 s]
> >[INFO]
> >
> >[INFO] BUILD FAILURE
> >[INFO]
> >
> >
> >If I comment it out, I get this:
> >
> >[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:compile-swf
> >(default-compile-swf) @ simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> >Writing configuration dump to
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/target/simple-air-1.0.0-SNAPSHOT-configs.xml
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/target/simple-air-1.0.0-SNAPSHOT.swf
> >(2513851 bytes)
> >[INFO]
> >[INFO] --- maven-resources-plugin:2.7:testResources
> >(default-testResources) @ simple-air ---
> >[WARNING] Using platform encoding (UTF-8 actually) to copy filtered
> >resources, i.e. build is platform dependent!
> >[INFO] skip non existing resourceDirectory
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/src/test/resources
> >[INFO]
> >[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-compile
> >(default-test-compile) @ simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> >[INFO] Skipping compiler, test source path doesn't exist.
> >[INFO]
> >[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:test-run
> >(default-test-run) @ simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> >[INFO] Skipping test run. Runner not found:
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/target/test-classes
> >[INFO]
> >[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:sign-air
> >(default-sign-air) @ simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPYRIGHT file
> >[INFO]   completed 0 of 100
> >[INFO]   completed 100 of 100
> >[INFO]   AIR package created:
> >/Users/christoferdutz/Projects/Apache/Flex/flex-utilities/maven-flex-plugi
>
> >n/examples/mobile/simple-air/target/simple-air-1.0.0-SNAPSHOT.air
> >[INFO]
> >[INFO] --- flexmojos-maven-plugin:7.1.0-SNAPSHOT:sign-air (default) @
> >simple-air ---
> >[INFO] Flexmojos 7.1.0-SNAPSHOT
> >[INFO] GPL License - Version 2.0 (NO WARRANTY) - See COPY

FlexJS nightly install fails on Google Closure Library download using installer

2015-05-20 Thread kevin.godell
Version 3.1.0 (mac)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
AIR version 17.0
Flash Player version 17.0
Creating Apache FlexJS home
Creating temporary directory
Downloading Apache FlexJS
from:http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/lastSuccessfulBuild/artifact/out/apache-flex-flexjs-0.0.3-bin.tar.gz
downloading
http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/lastSuccessfulBuild/artifact/out/apache-flex-flexjs-0.0.3-bin.tar.gz
using download cache
not caching this download
download complete preparing to cache
http caching.  url =
job/flex-asjs/lastSuccessfulBuild/artifact/out/apache-flex-flexjs-0.0.3-bin.tar.gz
Verifying Apache FlexJS MD5 Signature
The Apache FlexJS MD5 Signature of the downloaded files matches the
reference. The file is valid.
Uncompressing:
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/temp/apache-flex-flexjs-0.0.3-bin.tar.gz
Finished uncompressing:
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/temp/apache-flex-flexjs-0.0.3-bin.tar.gz
  [get] Getting
http://flex.apache.org/installer/properties/flexjs/en_US.properties
  [get] To
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/en_US.properties

get-data:
  [get] Getting
http://flex.apache.org/installer/sdk-installer-config-4.0.xml?ts=201505200600
  [get] To
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/sdk-installer-config-4.0.xml

find-java-executable-windows:

find-java-executable-others:

search-java-windows:

search-java-others:

search-java:

check-java:

find-java:
   [delete] Deleting file
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/findjava.properties
Java is /usr/bin/java

get-air-md5-data:

get-flash-md5-data:

get-md5-data:

check-binary:

ask-goog:

ask-air:

ask-flash:

ask-swfobject:

ask-licenses:

ask-licenses:

falcon-check:

falcon-get-check:

set-falcon-cache-flag:

falcon-get:
[mkdir] Created directory
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in
Installing Apache Flex Falcon Compiler from:
http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out/apache-flex-falconjx-0.0.3-bin.zip

falcon_get_from_mirror:

falcon_get_download:

check-cache:

download_using_get:

get-if-not-cached:

check-params:

get-with-no-params:
  [get] Getting
http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out/apache-flex-falconjx-0.0.3-bin.zip?ts=201505200600
  [get] To
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/apache-flex-falconjx-0.0.3-bin.zip

check-params:

get-with-params:

check-params:

get-local:

check-sum:

check-sum-from-file:

check-params:

get-with-no-params:
  [get] Getting
http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBuild/artifact/out/apache-flex-falconjx-0.0.3-bin.zip.md5?ts=201505200600
  [get] To
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/apache-flex-falconjx-0.0.3-bin.zip.md5

check-params:

get-with-params:

check-params:

get-local:
Validating download:
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/apache-flex-falconjx-0.0.3-bin.zip

put-in-cache:

copy-if-cached:

get-falcon:
Uncompressing:
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/apache-flex-falconjx-0.0.3-bin.zip
[unzip] Expanding
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/apache-flex-falconjx-0.0.3-bin.zip
into /Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon

falcon-install:

movefiles:

download:
Downloading Falcon library dependencies...

prepare:
Making lib directory
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/lib
[mkdir] Created directory
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/lib

all:

check-dependency:

download-dependency:

echo-project-jar:
   [delete] Deleting file
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/project.properties
Downloading org/antlr/antlr-complete/3.5.2/antlr-complete-3.5.2.jar from:
http://search.maven.org/remotecontent?filepath=
[mkdir] Created directory
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/lib

download-apache-license:

download-other-license:
  [get] Getting http://www.antlr.org/license.html
  [get] To
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/lib/antlr-LICENSE.html

download-dependency-jar:

check-cache:

download-jar:

get-if-not-cached:

copy-if-cached:
Using file from cache:
/Users/kevinGodell/sdks/installer_cache/org/antlr/antlr-complete/3.5.2/antlr-complete-3.5.2.jar
 [copy] Copying 1 file to
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/lib/antlr.jar

download-dependency-zip:

check-dependency:

download-dependency:

echo-project-jar:
   [delete] Deleting file
/Users/kevinGodell/sdks/FlexJS-nightly_AIR-17_FP-17/in/falcon/compiler/project.properties
Downloading dist/commons/cli/binaries/commons-cli-1.2-bin.tar.gz from:
http://archive.apache.org

Re: FlexJS nightly install fails on Google Closure Library download using installer

2015-05-20 Thread kevin.godell
I tried it about 7 times a few hours ago. Rebooted my computer and tried it
again right now several times with the same failure.

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-nightly-install-fails-on-Google-Closure-Library-download-using-installer-tp46776p46778.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: FlexJS nightly install fails on Google Closure Library download using installer

2015-05-21 Thread kevin.godell
I tried it again this morning and it failed at the same point for me with
Google closure. I will try it again later. It worked for me a couple days
ago.

On Thursday, May 21, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n46787...@n4.nabble.com> wrote:

> Hector reported the same thing around then.  I don’t know if folks are
> still hitting that or not.  I just ran the nightly install yesterday in
> the US and it worked for me.  Folks are also reporting bad downloads of
> SWFObject.  Maybe the internet is ruining downloads, or maybe there’s a
> bug in the MD5 code, or maybe there is a CDN/mirror in play where folks
> outside the US are seeing a different version.
>
> @Om, do the analytics show anyone being successful recently?
>
> -Alex
>
> On 5/21/15, 12:59 AM, "Carlos Rovira" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46787&i=0>>
> wrote:
>
> >Hi,
> >I can't install FlexJS nightly via instaler. Tried several times
> two/three
> >days ago, but don't know if is caused by google closure. It shows "no
> >failure message provided". Is just after jburg download. My log:
> >
> >Version 3.1.0 (mac)
> >Using Locale: es_ES
> >Se obtuvo la url de descargas del SDK desde el CGI.
> >AIR version 17.0
> >Flash Player version 17.0
> >Creating Apache FlexJS home
> >Creando directorio temporal
> >Downloading Apache FlexJS from:
> >
> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/lastSuccessfulBuild
> >/artifact/out/apache-flex-flexjs-0.0.3-bin.tar.gz
> >Verifying Apache FlexJS MD5 Signature
> >The Apache FlexJS MD5 Signature of the downloaded files matches the
> >reference. The file is valid.
> >Descomprimiendo:
> >/Users/carlosrovira/dev/flex/flexjs_installer_test/temp/apache-flex-flexjs
>
> >-0.0.3-bin.tar.gz
> >Descompresión finalizada:
> >/Users/carlosrovira/dev/flex/flexjs_installer_test/temp/apache-flex-flexjs
>
> >-0.0.3-bin.tar.gz
> >Java is /Library/Java/Home/bin/java
> >Installing Apache Flex Falcon Compiler from:
> >
> http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBui
> >ld/artifact/out/apache-flex-falconjx-0.0.3-bin.zip
> >Validating download:
> >/Users/carlosrovira/dev/flex/flexjs_installer_test/in/apache-flex-falconjx
>
> >-0.0.3-bin.zip
> >Uncompressing:
> >/Users/carlosrovira/dev/flex/flexjs_installer_test/in/apache-flex-falconjx
>
> >-0.0.3-bin.zip
> >Downloading Falcon library dependencies...
> >Making lib directory
> >/Users/carlosrovira/dev/flex/flexjs_installer_test/in/falcon/compiler/lib
> >Downloading org/antlr/antlr-complete/3.5.2/antlr-complete-3.5.2.jar from:
> >http://search.maven.org/remotecontent?filepath=
> >Downloading dist/commons/cli/binaries/commons-cli-1.2-bin.tar.gz from:
> >http://archive.apache.org
> >Downloading dist/commons/io/binaries/commons-io-2.4-bin.tar.gz from:
> >http://archive.apache.org
> >Downloading com/google/guava/guava/17.0/guava-17.0.jar from:
> >http://search.maven.org/remotecontent?filepath=
> >Downloading project/jburg/jburg-1.10.1.tar.gz from:
> >http://downloads.sourceforge.net
> >no failure message provided
> >
> >
> >2015-05-21 8:29 GMT+02:00 Alex Harui <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46787&i=1>>:
> >
> >> Interesting.  I ran an MD5 test not too long ago.  I wonder if there is
> >>a
> >> CDN or mirror that my computer is hitting that is propagating a change.
> >>
> >> I guess I’ll run the MD5 test again in the morning.
> >>
> >> -Alex
> >>
> >> On 5/20/15, 6:59 PM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46787&i=2>> wrote:
> >>
> >> >I tried it about 7 times a few hours ago. Rebooted my computer and
> >>tried
> >> >it
> >> >again right now several times with the same failure.
> >> ><
> >>
> >>
> http://apache-flex-development.247.n4.nabble.com/file/n46778/Screen_S
> >> >hot_2015-05-20_at_9.png>
> >> >
> >> >
> >> >
> >> >--
> >> >View this message in context:
> >> >
> >>
> >>
> http://apache-flex-development.247.n4.nabble.com/FlexJS-nightly-insta
> >>l
> >>
> >>>l-fails-on-Google-Closure-Library-download-using-installer-tp46776p46778
>
> >>>.h
> >> >tml
> >> >Sent from the Apache Flex De

Re: FlexJS nightly install fails on Google Closure Library download using installer

2015-05-21 Thread kevin.godell
Chicago, Illinois. Unfortunately I am at work and will not be near my
computer for another 10 hours from now.  Will post it later.

On Thursday, May 21, 2015, Alex Harui [via Apache Flex Development] <
ml-node+s247n4678...@n4.nabble.com> wrote:

> Kevin,
>
> What geographic area are you in?  Can you find the GCL download in the
> “in” folder and post it somewhere so I can see if it matches what I get in
> the US west coast?
>
> Thanks,
> -Alex
>
> On 5/21/15, 6:04 AM, "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=46789&i=0>> wrote:
>
> >I tried it again this morning and it failed at the same point for me with
> >Google closure. I will try it again later. It worked for me a couple days
> >ago.
> >
> >On Thursday, May 21, 2015, Alex Harui [via Apache Flex Development] <
> >[hidden email] <http:///user/SendEmail.jtp?type=node&node=46789&i=1>>
> wrote:
> >
> >> Hector reported the same thing around then.  I don’t know if folks are
> >> still hitting that or not.  I just ran the nightly install yesterday in
> >> the US and it worked for me.  Folks are also reporting bad downloads of
> >> SWFObject.  Maybe the internet is ruining downloads, or maybe there’s a
> >> bug in the MD5 code, or maybe there is a CDN/mirror in play where folks
> >> outside the US are seeing a different version.
> >>
> >> @Om, do the analytics show anyone being successful recently?
> >>
> >> -Alex
> >>
> >> On 5/21/15, 12:59 AM, "Carlos Rovira" <[hidden email]
> >> <http:///user/SendEmail.jtp?type=node&node=46787&i=0>>
> >> wrote:
> >>
> >> >Hi,
> >> >I can't install FlexJS nightly via instaler. Tried several times
> >> two/three
> >> >days ago, but don't know if is caused by google closure. It shows "no
> >> >failure message provided". Is just after jburg download. My log:
> >> >
> >> >Version 3.1.0 (mac)
> >> >Using Locale: es_ES
> >> >Se obtuvo la url de descargas del SDK desde el CGI.
> >> >AIR version 17.0
> >> >Flash Player version 17.0
> >> >Creating Apache FlexJS home
> >> >Creando directorio temporal
> >> >Downloading Apache FlexJS from:
> >> >
> >>
> >>
> http://apacheflexbuild.cloudapp.net:8080/job/flex-asjs/lastSuccessfulBuil
> >>d
> >> >/artifact/out/apache-flex-flexjs-0.0.3-bin.tar.gz
> >> >Verifying Apache FlexJS MD5 Signature
> >> >The Apache FlexJS MD5 Signature of the downloaded files matches the
> >> >reference. The file is valid.
> >> >Descomprimiendo:
> >>
> >>>/Users/carlosrovira/dev/flex/flexjs_installer_test/temp/apache-flex-flex
>
> >>>js
> >>
> >> >-0.0.3-bin.tar.gz
> >> >Descompresión finalizada:
> >>
> >>>/Users/carlosrovira/dev/flex/flexjs_installer_test/temp/apache-flex-flex
>
> >>>js
> >>
> >> >-0.0.3-bin.tar.gz
> >> >Java is /Library/Java/Home/bin/java
> >> >Installing Apache Flex Falcon Compiler from:
> >> >
> >>
> >>
> http://apacheflexbuild.cloudapp.net:8080/job/flex-falcon/lastSuccessfulBu
> >>i
> >> >ld/artifact/out/apache-flex-falconjx-0.0.3-bin.zip
> >> >Validating download:
> >>
> >>>/Users/carlosrovira/dev/flex/flexjs_installer_test/in/apache-flex-falcon
>
> >>>jx
> >>
> >> >-0.0.3-bin.zip
> >> >Uncompressing:
> >>
> >>>/Users/carlosrovira/dev/flex/flexjs_installer_test/in/apache-flex-falcon
>
> >>>jx
> >>
> >> >-0.0.3-bin.zip
> >> >Downloading Falcon library dependencies...
> >> >Making lib directory
> >>
> >>>/Users/carlosrovira/dev/flex/flexjs_installer_test/in/falcon/compiler/li
>
> >>>b
> >> >Downloading org/antlr/antlr-complete/3.5.2/antlr-complete-3.5.2.jar
> >>from:
> >> >http://search.maven.org/remotecontent?filepath=
> >> >Downloading dist/commons/cli/binaries/commons-cli-1.2-bin.tar.gz from:
> >> >http://archive.apache.org
> >> >Downloading dist/commons/io/binaries/commons-io-2.4-bin.tar.gz from:
> >> >http://archive.apache.org
> >> >Downloading com/google/guava/guava/17.0/guava-17.0.jar from:
> >> >http://search.maven.org/remotecontent?filepath=
> >> >Downloadin

Re: FlexJS nightly install fails on Google Closure Library download using installer

2015-05-21 Thread kevin.godell
Thanks Alex. It works for me now.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-nightly-install-fails-on-Google-Closure-Library-download-using-installer-tp46776p46803.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [GitHub] flex-asjs pull request: SCRIPT_HOME not getting defined if FALCON_...

2015-05-21 Thread kevin.godell
Can anybody commit this, please? This is needed to fix an issue created on
the previous change I made that broke the /js/bin/mxmlc file on mac if env
vars for FLEX_HOME and FALCON_HOME are not set.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/GitHub-flex-asjs-pull-request-SCRIPT-HOME-not-getting-defined-if-FALCON-tp46572p46804.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


FlexJS /bin/mxmlc executable permissions on mac

2015-05-21 Thread kevin.godell
Does anybody know how the permissions of a file are set, or which file does
the setting, when using the installer? The issue I have is when installing
FlexJS nightly. The mxmlc file in /bin does not have executable
privileges. When using it as an external tool in IntelliJ on mac, I get a
warning about permissions and cannot proceed. The solution is for me to find
the file and chmod it. But of course, this becomes tedious if I have to do
this every time I try out the updated nightly.

I found the following section of code at line 353 in github flex-asjs[0]
that might be what I am looking for.












If we add the following to that target, might it fix the permissions
problem?










[0] https://github.com/apache/flex-asjs/blob/develop/installer.xml



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-bin-mxmlc-executable-permissions-on-mac-tp46805.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: FlexJS /bin/mxmlc executable permissions on mac

2015-05-21 Thread kevin.godell
Do you want me to edit that and make a pull request? Or is there somebody
with write access who will do it?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-bin-mxmlc-executable-permissions-on-mac-tp46805p46807.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


RE: AW: [FlexJS] IntelliJ Integration

2015-05-21 Thread kevin.godell
Frédéric THOMAS wrote
> Ah ok, thanks, I got it now.
> 
> So, I tried, I've been able to compile and but not really to debug, the
> debugger seems to hang and can't get any variable details in IntelliJ,
> same for you ?
> But except of the fx:Script the rest of the code is recognized, same as it
> was with the Mike solution.
> 
> I switched back on my old way (FlexSDK, FlexJS Lib), to have everything
> recognized, compiling and debugging :-(

Sorry for the late reply to this issue. I deleted my sdk and had trouble
getting the installer to get me a new copy until today. I was able to
duplicate my steps to debug using flexJS sdk with the freshly downloaded
copy. I noticed that if I removed my old copy of flexJS sdk from the
settings in Intellij, that just simply adding it back after editing the
version number, IntelliJ did not pick up that edited file's change. I had to
remove the sdk from the SDKs section, remove it as the assigned sdk in the
modules->dependencies section, and then reboot Intellij. It almost seemed
that the version number was cached. So, going back in to IJ, adding the
edited version of FlexJS sdk, and then assigning this sdk in
modules->dependencies->sdk, you should be able to see the updated version
number:

  

Presuming that you had already copied fdb.jar, asc.jar, and swfutils.jar
from the lib folder of flex sdk to the lib folder of flexJS sdk, you should
be able to point the debugger to the flexJS sdk and debug. I just confirmed
it again, but only on a mac. I currently do not have windows setup with IJ.

And just to be thorough, external tools still need to be created for
compiling and flexJS has to be added as a library to help with code
hinting/completion.

@Alex, is there any plans to get these 3 files copied to the lib folder of
the FlexJS sdk?




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46808.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: FlexJS /bin/mxmlc executable permissions on mac

2015-05-21 Thread kevin.godell
I made the change. It seems that it was added as a child of my existing pull
request[0]. I am still trying to get to know git, using the online interface
vs the gitHub app. Hopefully I am doing it correctly. Thanks.

[0]https://github.com/apache/flex-asjs/pull/2



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-bin-mxmlc-executable-permissions-on-mac-tp46805p46811.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [FlexJS] Is it possible write code in js?

2015-05-23 Thread kevin.godell
Hi Piotr, I had a similar thought pertaining to the interaction with
Cordova/PhoneGap plugins. I think that someone, probably Alex, had mentioned
the benefits of creating a SWF from the AS would allow for faster and easier
debugging before sending it off to become html/js/css, which makes sense.
But, I don't think we would be able to test the Cordova/PhoneGap plugins
from the SWF, since they won't exist until the html/js/css is sent over to
Cordova for further processing into the final product. Correct me if I am
wrong.

Getting to the point, what type of plugin support is planned? Will there be
FlexJS code that already knows how to produce the correct javascript to
interact with Cordova plugins? I looked at the CordovaCameraExample, but did
not mess with it, yet.

Could there be a way to include javascript in the mxml file, maybe by
wrapping it in a tag  that the compiler can recognize
and know that it should be included "as is" and not alter, in case there is
a 3rd party plugin that is not supported by FlexJS?






--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/FlexJS-Is-it-possible-write-code-in-js-tp46845p46847.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: It seems the hash of the SWFObject 2.2 zip file from GitHub has been changed, which has caused the installation failure of Flex SDK Installer

2015-05-25 Thread kevin.godell
I was able to install the Flex nightly with air 17 and flash player 17
without any trouble. 




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/It-seems-the-hash-of-the-SWFObject-2-2-zip-file-from-GitHub-has-been-changed-which-has-caused-the-inr-tp46856p46858.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Apache Flex Website thought

2015-05-27 Thread kevin.godell
I don't mean to pile on, but the user groups section[1] needs a little
attention. Some of the links go to dead websites or groups that no longer
exist. From my perspective, which is that of an amateur at best, I had found
the website and wiki difficult to navigate.  And when I had tried to visit
some of the user groups that were listed in the wiki, well... let's just say
that I was less than inspired to find very little signs of life. But of
course, we can change that. We can make Flex strong again. I predict that
zillions of Flex user groups will be flocking to be part of the rebirth!

[1]https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=27837830



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Apache-Flex-Website-thought-tp46946p47018.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Need ideas for spare server

2015-05-27 Thread kevin.godell
I want to do something with a server that is running in my basement. It has
been online for just over 7 years and it has served me well. I want to do
something Flex or FlexJS related and I am looking for ideas. I was thinking
about possibly using it for testing, maybe setting up some php scripts for
flex users to test remote calls or something of that nature?  Or maybe just
setting up a Flex related website powered by wordpress, maybe using
buddypress so that users can set up pages and promote themselves and share
code? If anybody has any suggestions, please tell me.

This past weeked I had setup a test wordpress installation and it was just
as easy as it used to be. Tried to find a good wordpress theme that would be
good for a site that might also be sharing code/examples. Spent a little
time looking for a good domain name at godaddy.com. Just fyi, flexjs.com was
bought by some domain name squatters and it is being sold for about $3000
usd. apacheflex.com was also taken. I found some .org's but I do not want to
violate anybody trademarks or copyright name.

A little backstory on the server usage:

Set it up as a glype proxy on Fedora. Ran it for many years. Made a couple
bucks from google adsense and built the site up to a pagerank 5. Made a
firefox addon that connected to my proxy. Had about 2000 daily users. Used
to measure about 500GB of data transfer per month on that server, and yet my
internet provider never complained to me. One day, my site disappeared from
google search results and I received very little traffic, but yet the google
ads still showed up on my site. Google never responded to my inquiries. I
had let the site stay online as a memorial, but at this point, that site is
useless and I wish to bury it.

Server specs:

motherboard Asus dseb-d16/sas[1]
2 quad core procs xeon[2]
had 8 GB of buffered ram, but it seems that 2 of the 2GB sticks are fried.
already ordered another 8GB and waiting for it to be delivered.
had 4 hardrives setup as 4 stripes, but will covert it to 2 mirrors and 2
spares(for data safety) 
ran some raid tests and the hardrives are not predicted to fail, which is
pretty good after 7 years

It was definitely a little power house, atleast 7 years ago anyways. I would
like to give it a new life.

[1]http://www.newegg.com/Product/Product.aspx?Item=N82E16813131251
[2]http://www.newegg.com/Product/Product.aspx?Item=N82E16819117147



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Need-ideas-for-spare-server-tp47019.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Geo-fence in Flex/Action Script

2015-05-29 Thread kevin.godell
There is a nice piece of code[1] that you can utilize to measure distances
between coordinates. I used a modified version in my app and it seems to be
pretty accurate. If you are just basing your distances from the center point
of your office, using the radius of the circle should be pretty straight
forward. AIR's access to the gps works good in both Android and iOS.

[1]http://snipplr.com/view/58443/



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Geo-fence-in-Flex-Action-Script-tp47043p47125.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Geo-fence in Flex/Action Script

2015-05-29 Thread kevin.godell
By modified, I meant that I stripped out the conversion to feet and miles
and just left it as meters, using a separate formatting class to convert to
feet and miles as needed. Some might say that the formula is not accurate
because the earth is not a perfect sphere, but for my purposes I found it
to be very accurate. I use it to make measurements when hunting down cable
faults in the copper telephone network. My measurements typically range
from 500' to 3000' and seem to match closely to my equipment such as a time
domain reflectometer or resistive fault locator. If you are taking
very long measurements, you might have some accuracy issues.

On Friday, May 29, 2015, ramu.bandarupalli [via Apache Flex Development] <
ml-node+s247n47128...@n4.nabble.com
>
wrote:

> Thanks Kevin for your reply,
>
> Could you please let me know where can i get the modified version of the
> code to get accurate distance.
>
>
> Thanks.
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-flex-development.247.n4.nabble.com/Geo-fence-in-Flex-Action-Script-tp47043p47128.html
>  To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> To unsubscribe from Geo-fence in Flex/Action Script, click here
> 
> .
> NAML
> 
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Geo-fence-in-Flex-Action-Script-tp47043p47131.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Geo-fence in Flex/Action Script

2015-05-29 Thread kevin.godell
I just had another thought. You will have to take into account for the
inaccuracy reading reported by the device. The best reading that I ever get
from my iPhone is plus/minus 16 feet, and that is on a good day with no
clouds or rain, standing outside of my vehicle  with direct line of sight to
the sky.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Geo-fence-in-Flex-Action-Script-tp47043p47133.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


IntelliJ as SVN client for modifying flex.apache.org

2015-05-29 Thread kevin.godell
I am trying to learn SVN right now and I am still very new to the Mac
environment. I have been trying to find a good SVN/VCS client with a nice
GUI. It turns out that IntelliJ has SVN/VCS built in. I was going to post
here reporting trouble when trying to access via https[1] with an error of
"handshake failure" when using IntelliJ, which I was getting this morning,
but it seems to be working now with no trouble. Has anybody tried using
IntelliJ's svn feature? It seems pretty nice, but since I am so new to SVN
and IntelliJ and Mac, maybe I just don't know any better.

When editing about-people.cmsPage, is a new committer compelled to add a
photo and an "about me" section, or can one simply add the name to the "not
pictured above" section?

And about the ordering of people, it seems most are in alphabetical order
based on first name. If alphabetical order is the intention, it would seem
that a few are out of order.

[1]https://svn.apache.org/repos/asf/flex/site



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/IntelliJ-as-SVN-client-for-modifying-flex-apache-org-tp47199.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IntelliJ as SVN client for modifying flex.apache.org

2015-05-29 Thread kevin.godell
I must say that I am relieved that it worked. I was sure that I was going to
crash the site somehow. But anyways, Intellij made it very easy. At the
Intellij launch screen, there is an option for "check out from version
control." Just click that, add a repo, click the checkout button, find the
file and edit it right in Intellij, then press the commit button. Couldn't
be easier.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/IntelliJ-as-SVN-client-for-modifying-flex-apache-org-tp47199p47200.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Please welcome Kevin Godell as Apache Flex Committer

2015-05-29 Thread kevin.godell
Thanks for giving me the opportunity.

I am almost setup, except for git write access to the flex-sdk. I am a
little unsure about at least 1 thing. Do I use my original github account,
or do I setup a new one with  @ apache.org? From the flex-sdk repo on
github.com, I clicked on the link to clone in desktop, which launched to the
gitHub app on my macbook. After downloading the sdk, I edited the
git-test.txt file and committed it to develop. When pressing the sync
button, I was informed that I did not have permission. I am not sure what to
try next.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Please-welcome-Kevin-Godell-as-Apache-Flex-Committer-tp47137p47202.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Please welcome Kevin Godell as Apache Flex Committer

2015-05-29 Thread kevin.godell
Thanks guys. I think that I was able to push a commit to the develop branch.
After making the edit, and then looking at the mirror on gitHub, the change
was accredited to my original gitHub account. Somehow, the apache creds and
my original gitGub account are linked? 

I hate to sound like I am pimping for IntelliJ, but I used it as my git(not
gitHub) client, there were 2 plugins available, git and gitHub. Best 150$
spent. They gave me a 25% discount for being a first time customer after I
sent them an email a couple weeks ago. Nice people there. I didn't try out
tower since Intellij worked right away for me with minimal tinkering. I
think I will have to make a couple videos showing how to use IJ for svn for
the site and git for the flex sdk.

Thanks again!



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Please-welcome-Kevin-Godell-as-Apache-Flex-Committer-tp47137p47205.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Please welcome Kevin Godell as Apache Flex Committer

2015-05-29 Thread kevin.godell
@Mike Schmalle

How did you do a username change for git? I was looking in the fisheye[1]
and saw that you made commits under 2 different usernames. Where did you go
to make that change?

[1]https://fisheye6.atlassian.com/browse/flex-sdk/GIT-TEST.txt



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Please-welcome-Kevin-Godell-as-Apache-Flex-Committer-tp47137p47206.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Please welcome Kevin Godell as Apache Flex Committer

2015-05-30 Thread kevin.godell
I was a little stumped with the instructions here[1] because it did not
explicitly state that you had to $ cd into the directory of the local git
repos before running the command:
$ git config user.email myusern...@apache.org
That simply gave me an error because I did not first navigate to that repo:
$ cd ~/git/flex-sdk

The instructions found here[2] were a little more verbose and perfect for a
newbie like me.

[1]https://git-wip-us.apache.org/#committers-getting-started
[2]https://help.github.com/articles/setting-your-username-in-git/

Thanks, again and again.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Please-welcome-Kevin-Godell-as-Apache-Flex-Committer-tp47137p47211.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


IntelliJ external tool to kill iOS Simulator when debugging on Mac

2015-06-13 Thread kevin.godell
When debugging a regular flex mobile app on IntelliJ, I have been targeting
the iOS Simulator, instead of the Emulator(adl). I think the iOS Simulator
is only an option when on Mac. The problem I run across quite often, is that
I press the debug button without remembering to quit the iOS Simulator. This
causes an error, which is just a small waste of time, causing me to have to
find the iOS Simulator and quit it, then relaunch the debug session in
IntelliJ.

 

Adding a simple shell script as an external tool to check if the ios
simulator is running, and then kill it before launching the debugger, has
been a little time saver for me.

#!/bin/sh

if pgrep -l "iOS Simulator"
then
pkill -l "iOS Simulator"
fi

I put the file online if anybody has a need for it.[1]

Just add it to IntelliJ as an external tool and then edit the debug
configuration to run the tool before "Make" in the "Before launch" section.

On a side note, which may also apply to Windows users, sometimes when using
the Emulator, I get a warning that the debugger is already in use, which
causes me to hunt it down and kill it so that I can start my new debug
session. Checking the box for "Single instance only" in the debug
configuration seems to reliably close the adl, eliminating the error of the
debugger already being in use.

[1]http://people.apache.org/~kmg/external_tools/kill_iOS_Simulator.tar.gz




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/IntelliJ-external-tool-to-kill-iOS-Simulator-when-debugging-on-Mac-tp47719.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: SDK Installer trouble

2015-09-11 Thread kevin.godell
I am not sure if this is related, but I have been unable to install the flex
nightly using the installer for a while. The error message happens as soon
as I press the "next" button. I can install the other versions of flex, but
not the nightly. I reinstalled the installer and have the cache off.

Installer version 3.2.0 (mac)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
Unable to load
http://apacheflexbuild.cloudapp.net:8080/job/flex-sdk_nightly/lastSuccessfulBuild/artifact/out/apache-flex-sdk-installer-config.xml
Installation aborted

I cannot visit that url in the error message. Is
apacheflexbuild.cloudapp.net offline?




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/SDK-Installer-trouble-tp48962p49105.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: SDK Installer trouble

2015-09-11 Thread kevin.godell
How much does it cost?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/SDK-Installer-trouble-tp48962p49107.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Jenkins builds

2015-09-24 Thread kevin.godell
Alex, I am willing to contribute my share of the costs. Also, I have a spare
server that I would be willing to setup as a backup or mirror for the
Jenkins builds.

I was thinking about another way to get money, if there is not enough people
willing to contribute cash. I think there is a products website that you can
add your design and sell the products. I would love to have an Apache flex
tshirt or coffee mug, etc.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Jenkins-builds-tp49324p49330.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Flex Development Workflow involving jira, git, and jenkins

2015-01-01 Thread kevin.godell
I am trying to have a better understanding of the overall process of how bugs
are fixed, files are updated, and releases are made. This has left me with
several questions that I hope to have answered.

Does a jira ticket need to be made for a bug to be fixed, or can I submit a
patch without a jira ticket?

Is git the location of where updates are made? If so, and a patch is
submitted there, what happens if it gets approved?

Does jenkins receive the committed files from git automatically to create
the releases, or is there some human intervention?

I ask these questions, because I recently ran into a bug
https://issues.apache.org/jira/browse/FLEX-34630 
I found that if I edited 1 line of code, it would work properly. I then
found the file in git, branched it and then submitted a pull request. Keep
in mind that I am not entirely sure what that means. I then came here to
post these questions, and found that my pull request was posted here, to my
surprise.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Flex-Development-Workflow-involving-jira-git-and-jenkins-tp44053.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Best way to modify and test possible bug in Callout.as ?

2015-01-05 Thread kevin.godell
I have an issue with the positioning of a callout that is created from the
calloutbutton's calloutContent. In the simulator, the callout positions
itself correctly to the calloutbutton when rotating the screen. On both of
my android tablets(sony and samsung), the callout loses its position and
ends up far from the calloutbutton when I rotate the screen back and forth.
It seems that the position is calculated before the tablet screen finishes
its resize. My current fix is to just close the callout programmably on the
stage's StageOrientationEvent.ORIENTATION_CHANGING so that the callout is
hidden before the screen starts rotating.

How can I edit the Callout.as file in the SDK so that I can troubleshoot the
issue? I did edit the Callout.as found in
frameworks\projects\spark\src\spark\components, but this had no effect since
the file used in the SDK is probably somewhere else.

FB 4.6 FLEX 4.14.0 RC Windows 7



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Best-way-to-modify-and-test-possible-bug-in-Callout-as-tp44170.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Best way to modify and test possible bug in Callout.as ?

2015-01-05 Thread kevin.godell
Thanks for the response. I think that my question was missed due to the long
post. I do not want to hide the callout, that is just a workaround. I want
to fix the source code so that the callout gets positioned properly when
resizing. I need my edited version of Callout.as to be used, instead of the
one in the swc. I think that monkey patching may be what I need, but I
cannot figure how to set that up. How do the pros debug?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Best-way-to-modify-and-test-possible-bug-in-Callout-as-tp44170p44172.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Best way to modify and test possible bug in Callout.as ?

2015-01-05 Thread kevin.godell
Ok, I have monkey patching setup. My problem was that when I copied the
Callout.as, I did not include the folder structures
spark/components/Callout.as into my folder that I added to my project's
source path. Sorry to bother everyone.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Best-way-to-modify-and-test-possible-bug-in-Callout-as-tp44170p44173.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


RE: Best way to modify and test possible bug in Callout.as ?

2015-01-06 Thread kevin.godell
I tested it and verified that the callout loses its position to the
calloutbutton when rotating device, while testing on 3 different android
devices. It works fine on the simulator. I created a bug report
https://issues.apache.org/jira/browse/FLEX-34712



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Best-way-to-modify-and-test-possible-bug-in-Callout-as-tp44170p44189.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Can somebody verify my code fix for bug FLEX-34712?

2015-01-07 Thread kevin.godell
I came across a little bug using the calloutButton. I can duplicate the bug
everytime. When the callout of the calloutButton is open during a device
screen rotatation, the popup repositions incorrectly. The bug does not show
up on the simulator, but only on each of the 3 android devices that I used.
I created a bug report @ https://issues.apache.org/jira/browse/FLEX-34712 .
I submitted some code that fixes the problem @
https://github.com/kevinGodell/flex-sdk/commit/b5e1c0b1ba007709194cd61e2cf117959b467828
. Can somebody verify my code? I am not a pro, but trying my best to learn
and contribute. Thanks.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Can-somebody-verify-my-code-fix-for-bug-FLEX-34712-tp44217.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Can somebody verify my code fix for bug FLEX-34712?

2015-01-09 Thread kevin.godell
Actually, I did try your suggestion. Even if removing the flag var and just
calling invalidatePosition on stage resize, it still gets called too soon.
The alternative to my posted code is just to add the stage resize listener,
and call the invalidatePosition via callLater() in that listener. I will
post the code without the unnecessary var and orientation change listener,
and just add the stage resize listener. Maybe you can inspect the code again
at that point.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Can-somebody-verify-my-code-fix-for-bug-FLEX-34712-tp44217p44260.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Can somebody verify my code fix for bug FLEX-34712?

2015-01-09 Thread kevin.godell
The problem: when systemManager_resizeHandler is called,
calculatePopUpPosition()'s x and y may not be correct yet. If waiting a
moment later by using callLater(), then the x and y are correct, and now
would be a good time to call invalidatePosition(). I propose to wrap the
code called in systemManager_resizeHandler in either a separate function
called via callLater(someOtherFunctionToCall), or wrap it in an anoymous
function inside callLater(function():void{//do stuff}). I am not sure if
anonymous functions are considered good practices or not.

I tried listening to other events to find the time when the x and y of
calculatePopUpPosition() would be correct, and only found that to be on the
render event of the owner, but render gets called way too many times. Tried
listening to stage resize, and some other events that I cant remember right
now. None of them were called late enough for the x and y to be correct.

Update to the commit: removed listeners to stage orientation change and the
corresponding variable to flag the event. This new commit actually provides
the best visual experience of the callout snapping into position after
rotating the screen.

https://github.com/kevinGodell/flex-sdk/commit/706eb343b83085fdf339026cdb8f27124896f63d#diff-0a74af61d4412a0cf5a0b5b00b2ccad3






--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Can-somebody-verify-my-code-fix-for-bug-FLEX-34712-tp44217p44261.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Can somebody verify my code fix for bug FLEX-34712?

2015-01-10 Thread kevin.godell
I moved the code to the newly created function, per your suggestion.
https://github.com/kevinGodell/flex-sdk/commit/ba0144f5f9d97d02246dfa4b89b21188ae060199#diff-0a74af61d4412a0cf5a0b5b00b2ccad3

If you think it looks right, I can submit a pull request.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Can-somebody-verify-my-code-fix-for-bug-FLEX-34712-tp44217p44264.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Can somebody verify my code fix for bug FLEX-34712?

2015-01-13 Thread kevin.godell
I just had a chance to run tests using an iphone 5c. The bug does not show
itself and the callout positions itself correctly when rotating device. I
can only produce trouble on every android device tested (2 tablets, 2
phones). On the bright side, my patch does not negatively affect the
performance of the callout on the iphone.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Can-somebody-verify-my-code-fix-for-bug-FLEX-34712-tp44217p44275.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [4.14] Adobe Embedded Font Libs and Utils required for FlatSpark skins

2015-01-31 Thread kevin.godell
I suppose that I am one of the users who did not read the instructions(can't
find them at the moment). How can I get rid of the warnings: "warning:
incompatible embedded font 'RobotoRegular' specified for
spark.components::Label (Label73) . This component requires that the
embedded font be declared with embedAsCFF=true."

I am using the latest release of 4.14 as of last night with all the options
checked using the installer. I had been getting that warning while using the
release candidate, but thought it would go away with the final release. I do
not declare fonts in my app.

If I include the compiler option
-includes=mx.utils.LegacyMobileThemeOverride,  I can use the old theme and
have no warnings, so I am guessing that it has something to do with the new
skin.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/4-14-Adobe-Embedded-Font-Libs-and-Utils-required-for-FlatSpark-skins-tp44296p44795.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


ios geolocation always muted with air 16

2015-01-31 Thread kevin.godell
I just compiled my app to try on my iphone 5c with ios 8.1 using flex 4.14.0
and air 16.0. The geolocation.muted is always true. The ios system settings
menu no longer shows location as an option for my app.

Compiling the same app with flex 4.14.0 and air 15.0 allows the gps to work.
System settings menu shows location as an option for my app, as it should.

I looked into the Info.plist of the app compiled with air 15 and 16. They
are very similar, and both contain:

 UIRequiredDeviceCapabilities

location-services
gps
armv7
opengles-2




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/ios-geolocation-always-muted-with-air-16-tp44796.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: ios geolocation always muted with air 16

2015-01-31 Thread kevin.godell
Thanks for the tip. I added the following to the InfoAdditions:

NSLocationWhenInUseUsageDescription
Powered by Flex 4.14.0

It works!



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/ios-geolocation-always-muted-with-air-16-tp44796p44809.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [4.14] Adobe Embedded Font Libs and Utils required for FlatSpark skins

2015-02-08 Thread kevin.godell
As an update to my complaint about the roboto warnings when debugging to an
Android 4 device, I fixed it by copying the font-face from the default.css
and changing the embed-as-cff option to true:

/*Roboto Fonts*/
@font-face {
src: url("spark/skins/android4/assets/fonts/Roboto-Regular.ttf");
fontFamily: RobotoRegular;
embed-as-cff: true;
}

@font-face {
src: url("spark/skins/android4/assets/fonts/Roboto-Bold.ttf");
fontFamily: RobotoBold;
fontWeight: bold;
embed-as-cff: true;
}

No more warnings driving me crazy by filling up the Console.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/4-14-Adobe-Embedded-Font-Libs-and-Utils-required-for-FlatSpark-skins-tp44296p45042.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-03 Thread kevin.godell
I just noticed that if I launch my app, minimize it to make a call, and then
maximize it while staying on the call, that the enlarged "call in use"
statusbar of iOS pans my app content downward, making some of my buttons
difficult to interact with because they are at the bottom of my view. I
tested this a little further and found that if I make a call first, then
launch the app fresh(not from minimized state), that the app will load and
use the available screen space beneath the enlarged statusbar and position
content without being pushed off screen. But when the person on the other
line terminates the call, the statusbar returns to a normal height, pulling
the app content upward, creating a gap at the bottom.

I compared the experience of my flex app to other professionally made apps
on my phone. All of the other apps resize their content to use the visible
screen beneath the enlarged "call in use" statusbar.

Expected behavior: app should resize to use visible screen space while
iphone displays "call in use" statusbar, allowing content to reposition
based on visible screen size

I found an old bug for the "hot spot" statusbar @
https://bugbase.adobe.com/index.cfm?event=bug&id=3621841

A phonegap user had similar issue as I do with flex/air with "call in use"
statusbar  @
http://stackoverflow.com/questions/3947226/iphone-how-to-resize-view-when-call-status-bar-is-toggled?lq=1

Just to be thorough, I tested out a fresh app using the latest nightly
flex15 and air17 and experienced the same results. Tested on iphone 5c ios
8.1 using the following simple app code:


http://ns.adobe.com/mxml/2009"; 
   xmlns:s="library://ns.adobe.com/flex/spark" 
applicationDPI="160"
backgroundColor="0x00">







Any thoughts on this? Is there a setting or style that I can target to
prevent my view from panning off screen?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Setup for patching

2015-03-04 Thread kevin.godell
@Dany

I wanted to elaborate further on what Alex mentioned about adding a source
path for working on patches.

For example, I just found a problem and wanted to make some quick edits to
see if I could fix ArrayList.as. So, I found the file in the sdk, making
note of the directory structure. I copied the file and created a duplicate
directory and put that in a folder called "monkey-patch" that I have on my
desktop. The file and directory that I created was
C:\Users\familyRoom\Desktop\monkey-patch\org\apache\flex\collections\
containing a copy of ArrayList.as. The directory and main folder name can be
whatever you like, but I used the desktop just for the sake of being easy to
find. I named the main folder "monkey-patch" because I think that I may seen
it called monkey patching on some forum. In FB, I went to project ->
properties -> flex build path -> source path and added the monkey-patch
folder via the "add folder" button. Now, the file can be seen in the package
explorer, which allows me to make quick edits for debugging and testing,
instead of compiling after each edit. There are some limitations, such as if
a file you are tweaking has some "include" calls to other files, you will
have to include additional directories and files to make FB happy.

It took me longer to write this post than it did to setup the monkey-patch
and fix the file.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Setup-for-patching-tp45348p45402.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-04 Thread kevin.godell
I was testing this again, and found something a little off. On the
viewnavigatorapplication addedToStage handler, I added some trace statements
to get the sizes of height:

trace(this.height);
trace(this.stage.height);
trace(this.stage.stageHeight);
trace(Capabilities.screenResolutionY);

each had a value of 1136 on my iphone 5c, as expected.

1136
1136
1136
1136

If I launched my app while the phone call was in use, then values were a bit
off.

1096
1096
1096
1136

After terminating the call, the app slides upward toward the shrinking
statusbar, leaving a gap at the bottom, never resizing to use the full
height found in Capabilities.screenResolutionY. If this is not clear, I can
add some screenshots.





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391p45404.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-05 Thread kevin.godell
first scenario: app is launched before making phone call

image 1 shows app normal, completely using the available space

 

image 2  follows image 1 chronologically showing phone in use after app was
already launched, app gets minimized to background to take incoming call,
then re-maximize app to use it while still on phone call.
result: pushes content off bottom of screen by doubling the height of the
statusbar

 

second scenario: app is launched after making phone call

image 3 shows a scenario where phone call is in use before the app is
launched(not from a minimized state). App uses entire (shorter) space, not
pushing any content off bottom of screen.

 

image 4 follows image 3 chronologically showing call terminated, statusbar
shrinks back to normal height, pulling content upward.
result: gap left at bottom of content

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391p45412.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Setup for patching

2015-03-05 Thread kevin.godell
I guess FB needs to know the location of the file so that it can override
the corresponding class in the compiled swc? I am not 100%, but it works.

On Thursday, March 5, 2015, Dany Dhondt [via Apache Flex Development] <
ml-node+s247n45413...@n4.nabble.com> wrote:

> Thanks Kevin for this excellent tip. Why do you have to copy the directory
> structure? Is it to preserve the package line in the class file?
>
> I'll start experimenting with these tips as soon as I feel comfortable
> enough with the repo :)
> Dany
>
> Op 5 mar 2015 om 02:09 uur uur schreef "kevin.godell" <[hidden email]
> <http:///user/SendEmail.jtp?type=node&node=45413&i=0>>:
>
> @Dany
>
> I wanted to elaborate further on what Alex mentioned about adding a source
> path for working on patches.
>
> For example, I just found a problem and wanted to make some quick edits to
> see if I could fix ArrayList.as. So, I found the file in the sdk, making
> note of the directory structure. I copied the file and created a duplicate
> directory and put that in a folder called "monkey-patch" that I have on my
> desktop. The file and directory that I created was
> C:\Users\familyRoom\Desktop\monkey-patch\org\apache\flex\collections\
> containing a copy of ArrayList.as. The directory and main folder name can
> be
> whatever you like, but I used the desktop just for the sake of being easy
> to
> find. I named the main folder "monkey-patch" because I think that I may
> seen
> it called monkey patching on some forum. In FB, I went to project ->
> properties -> flex build path -> source path and added the monkey-patch
> folder via the "add folder" button. Now, the file can be seen in the
> package
> explorer, which allows me to make quick edits for debugging and testing,
> instead of compiling after each edit. There are some limitations, such as
> if
> a file you are tweaking has some "include" calls to other files, you will
> have to include additional directories and files to make FB happy.
>
> It took me longer to write this post than it did to setup the monkey-patch
> and fix the file.
>
>
>
> --
> View this message in context:
> http://apache-flex-development.247.n4.nabble.com/Setup-for-patching-tp45348p45402.html
> Sent from the Apache Flex Development mailing list archive at Nabble.com.
>
>
>
> --
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://apache-flex-development.247.n4.nabble.com/Setup-for-patching-tp45348p45413.html
>  To start a new topic under Apache Flex Development, email
> ml-node+s247n1...@n4.nabble.com
> 
> To unsubscribe from Setup for patching, click here
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=45348&code=a2V2aW4uZ29kZWxsQGdtYWlsLmNvbXw0NTM0OHwyNTAxOTQ4MDU=>
> .
> NAML
> <http://apache-flex-development.247.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>




--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Setup-for-patching-tp45348p45415.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-08 Thread kevin.godell
Looking into this further, it is not just the "phone in use" or "wifi
hotspot" statusbars that cause this situation, 
but any other app that manipulates the height of the native ios statusbar,
such as google maps and the built-in ios map program. 
While it not only creates a bad looking gap at the bottom, which could be
acceptable if it just affected the appearance, 
it also shifts the hit area of the items on the screen. For example, any
content that has been shifted upward on the screen after the 
statusbar returns to normal will have a hit area that is not vertically
lined up with the visual display of the item. Its only off by about 40
pixels, 
but that seems to be enough to make the app feel poorly made.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391p45453.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [GitHub] flex-sdk pull request: deleted "removed = source.splice(index, 1)[...

2015-03-08 Thread kevin.godell
ArrayList.as was broken recently due to an improvement. Can somebody with
write access merge this pull request [1] to remove line 532 from [2]

The problem created is that 2 items get removed when using
removeItemAt(index) due to line 532.

[1] https://github.com/apache/flex-sdk/pull/17
[2]
https://github.com/apache/flex-sdk/blob/develop/frameworks/projects/apache/src/org/apache/flex/collections/ArrayList.as



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/GitHub-flex-sdk-pull-request-deleted-removed-source-splice-index-1-tp45401p45454.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-10 Thread kevin.godell
I wish it was just my app, but alas, I created a new app and had the same
results:


http://ns.adobe.com/mxml/2009"; 
   xmlns:s="library://ns.adobe.com/flex/spark" 
applicationDPI="160"
backgroundColor="0x00">









list of 4 images that correspond to original 4 images of app:

- normal
 

- app launced first, then minimized to make phone call, maximized app after
call in use. content pushed off bottom of screen when statusbar doubled in
height
 

- app launched fresh after statusbar already enlarged due to phone call in
use
 

- app content slides upward after statusbar shrinks when phone call ends
 

I added some resize listeners and never had 1 trigger when the statusbar
height changed.

I voted for the existing bug [1] that is pretty much the same thing as I am
experiencing. I am hoping that others here can also vote for it. Or even
better, tell me that I am simply overlooking something.

[1] https://bugbase.adobe.com/index.cfm?event=bug&id=3621841



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391p45482.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Spark Label get Truncated after + symbol even it have enough width to render.

2015-03-12 Thread kevin.godell
Have you tried using the unicode for plus sign, \u002B? This may be a temp
workaround for you.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Spark-Label-get-Truncated-after-symbol-even-it-have-enough-width-to-render-tp45508p45510.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [4.14.1] no help, no release

2015-03-17 Thread kevin.godell
When the 4.14.1 RC became available, I noticed that the 4.15 nightly is no
longer available in the windows apache flex installer. Is that the way it is
supposed to work? Is 4.14.1 made from the nightly? Forgive my ignorance, but
I am trying to follow along and stay up to date with the latest
developments. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/4-14-1-no-help-no-release-tp45567p45598.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: ios geolocation always muted with air 16

2015-03-22 Thread kevin.godell
I just downloaded the latest RC with air 17 a few minutes ago and can confirm
that the gps still works on my iphone 5c running 8.2.

an excerpt from the infoadditions in the app descriptor file of my working
app:

UIRequiredDeviceCapabilities 
 
location-services 
gps


NSLocationWhenInUseUsageDescription
Location will be accessed when using the GPS Measuring
Tool.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/ios-geolocation-always-muted-with-air-16-tp44796p45712.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: flex/air does not resize app when "call in use" statusbar showing on iphone

2015-03-22 Thread kevin.godell
The Kohler Generators app(found in the apache flex community showcase)
handles the statusbar size change perfectly. 
I looked inside their .ipa and found that they had
gpu, along with using flex 4.14 and air 16. 

I set the rendermode to gpu in my TabbedViewNavigatorApplication and now the
statusbar size change is handled slightly better, 
with the app shrinking to accommodate the larger statusbar, and the bottom
content is no longer pushed off the screen. 
Still, no resize event is triggered when this happens. When rotating the
phone, the app resizes to the full height(triggering a resize event) and 
underlaps the enlarged statusbar, but this is acceptable until I can find
out the trick to making it work as good as the Kohler app.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/flex-air-does-not-resize-app-when-call-in-use-statusbar-showing-on-iphone-tp45391p45713.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [DISCUSS] Apache Flex SDK 4.14.1 - RC1

2015-03-23 Thread kevin.godell
I was testing out the new "padding" property yesterday on a VGroup and found
it to be a convenient shortcut. One thing I noticed is that when using this
new property along with any of the other padding properties, such as
paddingLeft, that it is a situation of "last one in wins."

http://apache-flex-development.247.n4.nabble.com/DISCUSS-Apache-Flex-SDK-4-14-1-RC1-tp45723p45726.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: ios geolocation always muted with air 16

2015-03-23 Thread kevin.godell
Did it work before taking the 8.2 upgrade?

Can you check to see if the gps works for any other apps on your ipad, such
as the built-in apple navigation app, just to rule out that there wasnt a
bug introduced in the OS?

I see from your entitlements that you may be using testflight? This prevents
you from testing locally, right? If you are testing locally, meaning that
you are just putting the app directly on the ipad from itunes, then comment
out those entitlements.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/ios-geolocation-always-muted-with-air-16-tp44796p45727.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [Flex Mobile] Flash Builder instructions

2015-03-26 Thread kevin.godell
Have you added anything extra to the infoadditions or entitlements in the
app descriptor file?

On Thursday, March 26, 2015, Peter Ent [via Apache Flex Development] <
ml-node+s247n4581...@n4.nabble.com> wrote:

> I have a provisioning profile with my device registered.
> Thanks,
> Peter
>
> On 3/26/15, 10:49 AM, "Paul Moreau" <[hidden email]
> > wrote:
>
> >Have you added your phone as a testing device in the developer portal?
> >
> >You need to plug your phone into your machine, then in iTunes, under your
> >device, click where it says 'Serial Number' , it should change to UUID,
> >right click and copy.
> >
> >Then sign into your developer account and under 'Devices', click the '+'
> >button, give it a name and enter the UUID.
> >
> >You will then need to generate a new Provisioning Profile, download it,
> >and
> >link it in Flash Builder under Project->Properties->Flex Build
> >Packaging->Digital Signature.
> >
> >Feel free to mail me if you need more help.
> >
> >On Thu, Mar 26, 2015 at 1:59 PM, Peter Ent <[hidden email]
> > wrote:
> >
> >> Hi,
> >>
> >> Still having no luck. I re-generated a dev certificate and a dev
> >> provisioning profile. When Flash Builder goes to run the app on my
> >>device,
> >> I get the error:
> >>
> >> “Error occurred while installing the application:
> >> Installation Error: ApplicationVerificationFailed.”
> >>
> >> I’m still not sure how you are all making mobile apps. Here is my
> >> configuration:
> >>
> >> Mac OS X Yosemite
> >> iOS 8.2 (on iPhone)
> >> Apache Flex 14 with AIR 16
> >> iOS Developer certificate (incl .p12 from said certificate)
> >> iOS Developer provisioning profile using same cert and iPhone
> >>
> >> Despite the number of steps, it is pretty straightforward.
> >>
> >> Thanks for your help and guidance. I’m wondering if AIR 17 along with
> >> Apache Flex 14.1 would work.
> >>
> >> —peter
> >>
> >> On 3/25/15, 12:25 PM, "OmPrakash Muppirala" <[hidden email]
> >
> >>wrote:
> >>
> >> >On Mar 25, 2015 9:20 AM, "Peter Ent" <[hidden email]
> > wrote:
> >> >>
> >> >> Sorry for the delay, I was traveling.
> >> >>
> >> >> Thank you all for the help. However, this does not work for me. I
> can
> >> >>get
> >> >> an IPA created. When I attempt to install it on my phone, the app
> >> >>appears
> >> >> to transfer but after iTunes has sent it to the phone and it appears
> >>on
> >> >> the phone, the app is stuck in an ³Installingв phase.
> >> >>
> >> >> My guess is that it has something to do with the iOS SDK or some
> >>ancient
> >> >> artifact in Flash Builder. I¹m wondering if IntelliJ might be a
> >>better
> >> >> choice for this exercise.
> >> >>
> >> >> So I¹m left wondering how you all develop mobile apps for use on iOS
> >>8
> >> >> devices if you use Flash Builder.
> >> >>
> >> >
> >> >For iOS, you will need to create an Apple developer account, create an
> >>app
> >> >id and create a provisioning certificate.  I am assuming you did all
> >>that,
> >> >otherwise FB would complain.
> >> >
> >> >With FB 4.7, you can skip iTunes as the middleman.  FB would
> >>automatically
> >> >install the app on the connected ios device.
> >> >
> >> >If you want to do a Connect session, I can help debug it for you.
> >> >
> >> >Thanks,
> >> >Om
> >> >
> >> >> Peter Ent
> >> >> Adobe Systems
> >> >>
> >> >> On 3/19/15, 2:48 AM, "jude" <[hidden email]
> > wrote:
> >> >>
> >> >> >In Flash Builder choose File > New > New Flex Mobile project and
> >>follow
> >> >> >the
> >> >> >on screen instructions. Be sure to select Apple iOS as a target
> >> >>platform.
> >> >> >When you export (File > Export > Flash Builder > Release Build) you
> >> >>will
> >> >> >get a chance to select your target platform again and you can
> choose
> >> >Apple
> >> >> >iOS if it's not chosen and deselect any other target platforms. I
> >>think
> >> >> >you
> >> >> >may need to have XCode installed but that requirement might have
> >>been
> >> >> >removed.
> >> >> >
> >> >> >Here are some links to get you started.
> >> >> >Developing Mobile Applications with Flex 4.6 and Flash Builder 4.6
> >> >> >
> >> >> >- Create an iOS application in Flash Builder
> >> >> ><
> >>
> >>>
> http://help.adobe.com/en_US/flex/mobileapps/WSc5cd04c102ae3e97-6386d9201
> >>>2
> >> >> >ddfaf03f8-8000.html>
> >> >> >- Export Apple iOS packages for release
> >> >> ><
> >>
> >>>
> http://help.adobe.com/en_US/flex/mobileapps/WSADC382C9-CEBC-47c6-81AD-97
> >>>5
> >> >> >D9A72C677.html>
> >> >> >
> >> >> >Note: IIRC during the export stage the swf and all required files
> >>that
> >> >> >need
> >> >> >to be included for the ipa are placed in a folder in your projects
> >> >> >directory. You can take a look at wha