RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
1. I downloaded the latest nightly It is not mandatory, it works with the one of the last weeks at me. Thanks Frédéric THOMAS Date: Thu, 14 May 2015 09:31:52 -0400 Subject: Re: [FlexJS] IntelliJ Integration From: teotigraphix...@gmail.com To: dev@flex.apache.org Fred I am using the Flex

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread piotrz
Wow! Great Mike. I will try to do this at home! :) Thank you! Still hope to get some answer from Jetbrains on that debug problem, because now we need to still use old Flex SDK. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Hi Mike, You should be able to use a normal lib instead, good catch !! What are the steps to debug inside IJ ? on mine, it doesn't stop, maybe I should update the FlexJS SDK ? I didn't follow the last posts0 Thanks, Frédéric THOMAS Date: Thu, 14 May 2015 09:07:47 -0400 Subject: Re:

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Fred I am using the Flex SDK debugger in 4.14.0 1. I downloaded the latest nightly 2. I built it, took about 4 minutes, the AIR sdk for me takes awhile to download. (ant -f installer.xml) 3. Create a new project and followed this video; https://www.youtube.com/watch?v=NBJEjIcfNs8 This is my

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Make sure you have a valid Flex SDK selected for the modules's SDK, the FlexJS won't work right now. On Thu, May 14, 2015 at 10:13 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: Didn't work on mine :( http://snag.gy/bc79p.jpg Frédéric THOMAS Date: Thu, 14 May 2015 09:58:27 -0400

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
That's great Mike we can work with IJ now even though the workflow is not standard / smooth that's a good tradeoff waiting for more closer IJ integration. Thanks again, Frédéric THOMAS From: webdoubl...@hotmail.com To: dev@flex.apache.org Subject: RE: [FlexJS] IntelliJ Integration Date:

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Yes, exactly! Just imagine what we had with Randori and have it with FlexJS, the warning/error pane that instantly went to to line number. :) Oh well, we can dream right! Mike On Thu, May 14, 2015 at 9:42 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: That's great Mike we can work with

RE: Falcon progress for as flex sdk

2015-05-14 Thread Glenn Willianms
That’s interesting, thanks Alex. Makes me feel more like taking a look. I still have several projects that I maintain and some of them are still having new modules or features booked in by the clients. So I'm still working with the SDK daily some months. It really is such a comfortable

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Yep would be nice :-) One thing I noticed though, is in the js:Application: initialize=MyModel(model).stockSymbol='ADBE' It is not reconized and once imported, IJ complaines the fx:Script element is not allowed here, an idea ? Ok, I'm asking too much now :-) Frédéric THOMAS Date: Thu, 14

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Note for others with the IJ code completion and debugging. For now, make a global ibrary and include all the SWCs and All the source files like in the image below. If you don't when you step through the code, it will try loading the source for the Flex SDK instead of FlexJS. When I added the

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
I pressed Alt+Enter and IJ inserted mx:Script at the bottom of the document, I moved it to where it is in the screenshot and all is fine on my end. http://snag.gy/vAlz2.jpg Mike On Thu, May 14, 2015 at 9:53 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: Yep would be nice :-) One thing I

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Thanks Mike, I got it debugging in the meantime taking the debugger from an old version of the SDK !! Frédéric THOMAS Date: Thu, 14 May 2015 09:31:52 -0400 Subject: Re: [FlexJS] IntelliJ Integration From: teotigraphix...@gmail.com To: dev@flex.apache.org Fred I am using the Flex SDK

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
I tried everything you guys are doing and get; C:\Users\Teoti\Documents\ApacheFlex\FlexJS-Nightly\bin\mxmlc.bat -debug=true C:\Users\Teoti\Documents\ApacheFlex\FlexJS-Nightly\examples\DataBindingTest\src\MyInitialView.mxml Using Falcon codebase:

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
One other note to those trying to set this up; The library needs to be setup like in the screenshot below to get open declaration(middle mouse button) and documentation asdocs(CTRL - Q) to show correctly. Select LibrarySource for all paths; http://snag.gy/0nEcL.jpg Setup correct;

RE: AW: AW: AW: AW: [FlexMojo] build

2015-05-14 Thread Frédéric THOMAS
Hi Chris, I assumed it was ok for you I changed lang to lang3, could you review my last commit ? These are the changes: - Make use of Apache Commons Lang3.SystemUtils for OS detection. - Make SdkConverterCLI to use the detection. - Removed the PowerMock lib, couldn't mock static final field, I

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
The Flex SDK is where IJ picks up the fx namespace and the FlexJS SWCS is where it gets the js namespaces. So we are totally hack right now but, it's workable. Mike On Thu, May 14, 2015 at 10:15 AM, Michael Schmalle teotigraphix...@gmail.com wrote: Make sure you have a valid Flex SDK selected

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Didn't work on mine :( http://snag.gy/bc79p.jpg Frédéric THOMAS Date: Thu, 14 May 2015 09:58:27 -0400 Subject: Re: [FlexJS] IntelliJ Integration From: teotigraphix...@gmail.com To: dev@flex.apache.org I pressed Alt+Enter and IJ inserted mx:Script at the bottom of the document, I moved

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
That is pretty much what I am doing minus, the -config compiler arg. I have the project using the global library. Well anyway, we will get it all worked out. The way you have the external tool means you would have to set one up for each module, say you wanted all the examples in one project,

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
When debugging JS, the source map won’t point you back to the AS. The hope is that, right now, the bugs you are hitting are in the compiler. And unless someone does the work to map back to AS, we’ll probably have to settle for just debugging JS. At least to me, it is pretty obvious what AS

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
I haven't used the Flex SDK really much but, it obviously works or people would have complained years ago. @Alex, I take it a lot of the examples are broken, I have tried a couple and things like alert.show() has wrong parameters and such, API changes I would guess. What is the trick to get the

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
At the end I've got another integration that works better for me at the moment, I mean clearing the last IJ error I had. choose a Flex SDK for your FlexJS Project: http://snag.gy/P8zN4.jpg You shouldn't see FlexJS 0.0.3 yet, but it will come (download it first indeed via the

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
@Alex, for the moment I am still trying to repeat a bunch of stuff to see what breaks and what doesn't. Fred might have a better way to setup a project but he is overlaying FlexJS on and sdk from what I gather and I am just using the FlexJS nightly built with Flex SDK 4.1.4. There are a couple

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
Great work you guys! Anybody have time to prepare a wiki page for others to follow? I may have missed questions in this thread so if you still have questions that you need me to answer, please re-ask them. -Alex On 5/14/15, 9:57 AM, Michael Schmalle teotigraphix...@gmail.com wrote: Haha, Yeah

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
On 5/14/15, 10:26 AM, Michael Schmalle teotigraphix...@gmail.com wrote: I haven't used the Flex SDK really much but, it obviously works or people would have complained years ago. @Alex, I take it a lot of the examples are broken, I have tried a couple and things like alert.show() has wrong

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
@Fred, I never got the errors you did with my setup, I wonder what was different, you still get the 100% Red lines the way you have it right now correct? Yes Mike, it is an IntelliJ inspection thing only I guess. There are a couple ways we can hack a setup right now but everything works.

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread OmPrakash Muppirala
On Thu, May 14, 2015 at 10:20 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: @Fred, I never got the errors you did with my setup, I wonder what was different, you still get the 100% Red lines the way you have it right now correct? Yes Mike, it is an IntelliJ inspection thing only I

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
I've seen the project.js.map but I don't know how to activate it, I've got source maps enabled in Chrome but can't see the corresponding .as files when debug in JS via IJ or directly in Chrome, what am I missing ? Frédéric THOMAS From: webdoubl...@hotmail.com To: dev@flex.apache.org

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Haha, Yeah I was just using firefox and testing breakpoints. I need to instal Chrome so I can just use IJ. :) Well the foundation has been setup now. I am going to spend my free time studying the framework that has been built and the lower level stuff, while looking at what Alex has done to the

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Mike, The good trick before installing the IDEA Plugin for debugging is this: https://twitter.com/webDoubleFx/status/584413022350876672/photo/1 Frédéric THOMAS Date: Thu, 14 May 2015 12:57:41 -0400 Subject: Re: [FlexJS] IntelliJ Integration From: teotigraphix...@gmail.com To:

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Hi Alex, Thanks Alex, Mike was the first one to show the way, he used the Flex SDK as a library on top of FlexJS but it wasn't totally smooth for me and still had some IntelliJ error in the IDE, I prefered to overlay the FlexJS on top of the FlexSDK, using it as a lib, do you have any pro and

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
I'm using he FlexJS nightly of last week, so, I guess nothing is needed, also, any FlexSDK as base SDK seems to work, I've been using a 4.10 Is there any google Javascript source maps, mapping the AS3 code setup somewhere i FlexJS yet ? Frédéric THOMAS From: aha...@adobe.com To:

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
On 5/14/15, 10:34 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: I'm using he FlexJS nightly of last week, so, I guess nothing is needed, also, any FlexSDK as base SDK seems to work, I've been using a 4.10 The debugger exception others are seeing seem to be related to changes made to

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

2015-05-14 Thread Alex Harui
OK, can you generate a pull request for this change? Thanks, -Alex On 5/14/15, 4:01 AM, kevin.godell kevin.god...@gmail.com 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

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Hi Mike, At the end I've got another integration that works better for me at the moment, I mean clearing the last IJ error I had. choose a Flex SDK for your FlexJS Project: http://snag.gy/P8zN4.jpg Set the load config to FlexJS: eg. for me:

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Yeah, it was my first try, the reason why I changed is because you need it opened in the the IDE and having the focus on it. The second way with the module is the same, you need the module where the main mxml file you want to comple be focused, in more the mxml file needs to have the same name

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Well I feel like all this time has been worth it. About 2 days to get everything built from compiler to flexjs and running in IntelliJ. The final screenshot for me; http://snag.gy/awMjH.jpg It's working in Firefox. I have a bout 100 questions for Alex but I think I will wait and figure out

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Sorry for the first link, you should have that instead at the begining http://snag.gy/jY42F.jpg Frédéric THOMAS From: webdoubl...@hotmail.com To: dev@flex.apache.org Subject: RE: [FlexJS] IntelliJ Integration Date: Thu, 14 May 2015 16:06:23 +0100 Hi Mike, At the end I've got another

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
That is pretty much what I am doing minus, the -config compiler arg. I mean I overlay a FlexJS on top of a Flex SDK using FlexJS as a Lib instead of using the Flex SDK as a Lib and it work fine like that for me. The way you have the external tool means you would have to set one up for each

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
For me this is the easiest way for now. http://snag.gy/ZC4Zi.jpg Just need to have the main mxml file in focus and it will launch from any module inside the project. Mike On Thu, May 14, 2015 at 11:24 AM, Frédéric THOMAS webdoubl...@hotmail.com wrote: That is pretty much what I am doing

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
I have been trying some of the examples seems about half are broken. One thing that sucks right now is IJ sees js:Label width=100% and barfs, it thinks and rightly so, width has to be a Number. this goes back to FlashBuilder majic Alex? Honestly, the tool shouldn't have to infer by some weird

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Me too and debugging with chrome :D http://snag.gy/i2xpo.jpg Frédéric THOMAS Date: Thu, 14 May 2015 12:16:48 -0400 Subject: Re: [FlexJS] IntelliJ Integration From: teotigraphix...@gmail.com To: dev@flex.apache.org Well I feel like all this time has been worth it. About 2 days to get

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
@Alex I am trying a simple hello world from scratch and I keep getting this error, provided with TodoTestApp.mxml ?xml version=1.0? !-- Created by Teoti on 5/14/2015. -- js:Application xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:js=library://ns.apache.org/flexjs/basic

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
Anyway, I will still try a recent FDB version to see if there any differences. Frédéric THOMAS From: webdoubl...@hotmail.com To: dev@flex.apache.org Subject: RE: [FlexJS] IntelliJ Integration Date: Thu, 14 May 2015 20:06:53 +0100 The debugger exception others are seeing seem to be

[FlexJS] ASDOC build

2015-05-14 Thread Michael Schmalle
As you probably know, the asdoc build file is messed up since you did that big refactor I guess. I fixed it up to include everything in the new directory format but, there is one error in the HTML project that I have no idea how to fix, for now I commented that doc-sources out and I have the

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Never mind about my app problem, I forgot to add the external tool and Make was still trying to build to project. Mike On Thu, May 14, 2015 at 3:21 PM, Frédéric THOMAS webdoubl...@hotmail.com wrote: Anyway, I will still try a recent FDB version to see if there any differences. Frédéric

Re: [FlexJS] ASDOC build

2015-05-14 Thread Alex Harui
On 5/14/15, 12:27 PM, Michael Schmalle teotigraphix...@gmail.com wrote: As you probably know, the asdoc build file is messed up since you did that big refactor I guess. Oh, sorry. I generally don’t look at ASDoc until we get closer to release. Thanks for working on it. If I can get that

Missing documentation images

2015-05-14 Thread Héctor A
While improving FlashDevelop help system I've noticed that Apache is missing the images referenced in ASDocs, for example: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/spark/components/DateSpinner.html https://flex.apache.org/asdoc/spark/components/DateSpinner.HTML Also,

Re: Why are there two ArrayList classes? [PING Justin Mclean)

2015-05-14 Thread Alex Harui
I just looked quickly at the differences. It appears that the second ArrayList has different update event logic so it may be that it was safer to create a different ArrayList so we wouldn’t have to worry about backward compatibility issues. -Alex On 5/13/15, 2:31 PM, Gareth Smith

Re: Missing documentation images

2015-05-14 Thread Héctor A
Img tags are valid and accepted tags in ASDocs, SWFs aren't and honestly, I don't think they should. Just my opinion. If you look for img in code files you'll see more images. All of them missing. 2015年5月14日木曜日、Alex Haruiaha...@adobe.comさんは書きました: Hmm. Not sure where those images came from.

RE: [FlexJS] IntelliJ Integration

2015-05-14 Thread Frédéric THOMAS
The debugger exception others are seeing seem to be related to changes made to support AS Workers, so it may be that older Flex SDKs are going to work better. The only thing with Workers is a bug Alexander Dorosko raised about a issue when setting a BP out of any code, I still have to fix it

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
CSS Style data is encoded into a class named after the main app. There is a test in the compiler to see whether to generate that class or not. See FlexAppSWFTarget.java where it calls emitStyleDataClass(). -Alex On 5/14/15, 12:18 PM, Michael Schmalle teotigraphix...@gmail.com wrote: @Alex I

Re: Missing documentation images

2015-05-14 Thread Alex Harui
Hmm. Not sure where those images came from. They may be in some other repo at Adobe. I’ll see if I can find out, but wouldn’t be even better if these images were replaced by an actual SWF running the component? -Alex On 5/14/15, 12:55 PM, Héctor A neverbi...@gmail.com wrote: While improving

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Alex, I was using the wrong compiler. :) Everything is working fine now. Mike On Thu, May 14, 2015 at 3:40 PM, Alex Harui aha...@adobe.com wrote: CSS Style data is encoded into a class named after the main app. There is a test in the compiler to see whether to generate that class or not.

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]

[FlexJS] Goog warnings

2015-05-14 Thread Michael Schmalle
I have to ask since I am ignorant to the closure compiler. What are all the warnings about in a simple app? Mike

Re: [FlexJS] Testing current API and bugs

2015-05-14 Thread Alex Harui
Mike, That’s great that you can help out. Every little bit helps. On 5/14/15, 3:49 PM, Michael Schmalle teotigraphix...@gmail.com wrote: I will just ask this here but, how do you have your setup for testing the javascript compiler fixing? Say I find a bug, I know the problem is say in an

Re: [FlexJS] Testing current API and bugs

2015-05-14 Thread Michael Schmalle
I will just ask this here but, how do you have your setup for testing the javascript compiler fixing? Say I find a bug, I know the problem is say in an emitter, right now I am building from the nightly. Is there a streamlined way that I don't have to build the compiler but say run the main class?

Re: [FlexJS] Testing current API and bugs

2015-05-14 Thread Alex Harui
On 5/14/15, 1:52 PM, Michael Schmalle teotigraphix...@gmail.com wrote: Hi, Well now that I have a really efficient workflow setup with IntelliJ, I can start to tackle this project. What is the best way to setup bug reports for JIRA? There should already be a FlexJS component in Apache Flex

Re: [FlexJS] Goog warnings

2015-05-14 Thread Michael Schmalle
Ok, that is good to hear, figured it was something trivial. On Thu, May 14, 2015 at 7:02 PM, Alex Harui aha...@adobe.com wrote: IMO, it is a bug in GCC. We use @export to keep the minified from renaming some properties and GCC then sees any use of that property name as a problem. So, if we

Re: [FlexJS] Goog warnings

2015-05-14 Thread Alex Harui
IMO, it is a bug in GCC. We use @export to keep the minified from renaming some properties and GCC then sees any use of that property name as a problem. So, if we want an “html” property on Label, then goog’s goog.html package starts coughing up warnings. I plan to suppress those warnings

Re: Why are there two ArrayList classes? [PING Justin Mclean)

2015-05-14 Thread Harbs
The discussion on this was in March 2013. On May 14, 2015, at 11:03 PM, Alex Harui aha...@adobe.com wrote: I just looked quickly at the differences. It appears that the second ArrayList has different update event logic so it may be that it was safer to create a different ArrayList so we

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

2015-05-14 Thread kevinGodell
GitHub user kevinGodell opened a pull request: https://github.com/apache/flex-asjs/pull/2 SCRIPT_HOME not getting defined if FALCON_HOME is defined You can merge this pull request into a Git repository by running: $ git pull https://github.com/kevinGodell/flex-asjs develop

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
On 5/14/15, 8:03 PM, kevin.godell kevin.god...@gmail.com wrote: 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

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

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

2015-05-14 Thread Alex Harui
On 5/13/15, 8:24 PM, kevin.godell kevin.god...@gmail.com wrote: 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

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Alex Harui
On 5/13/15, 10:10 PM, piotrz piotrzarzyck...@gmail.com 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

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread piotrz
Alex, All three files are copied from Flex SDK - That's why it recognizing fdb.jar during the compilation, but didn't try change flex-sdk-description.xml yet. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context:

PopUpButton skin

2015-05-14 Thread Petr Nemecek
Hello, I use Halo theme in my app. I would like to use PopUpButton, but it is not Haloed visually, it looks very different from a normal Button, see http://www.rinkai.cz/@html/popupbutton.gif. As I'm not capable of changing it by myself, could anybody help with this, please? Many thanks,

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
I am trying to build the installer.xml from the nightly, it keeps failing when trying to download the jburg.jar, has anybody else had this problem? Mike On Thu, May 14, 2015 at 5:51 AM, piotrz piotrzarzyck...@gmail.com wrote: Wow! Massive Mike!!! 3 Waiting for details! :) Piotr -

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread kevin.godell
Alex Harui wrote On 5/13/15, 10:10 PM, piotrz lt; piotrzarzycki21@ gt; 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.

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread piotrz
Wow! Massive Mike!!! 3 Waiting for details! :) Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Re-FlexJS-IntelliJ-Integration-tp46486p46502.html Sent from the Apache Flex Development mailing list

Re: [FlexJS] IntelliJ Integration

2015-05-14 Thread Michael Schmalle
Check this out! http://snag.gy/Fp4u5.jpg Finally got code completion in IntelliJ with MXML and ActionScript. :) Will write more when I test a couple things, the building I haven't got to yet. This is THE MOST important for me right now. Mike On Thu, May 14, 2015 at 2:41 AM, piotrz

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