Re: [FlexJS] Link to video presentation on FlexJS

2015-05-07 Thread Michael Schmalle
@Alex I had all the apps(installers) a couple years ago but in my cleaning after I left AS dev, I deleted them. When I got back into Flash in March using Feathers, I downloaded the 4.6 that is still up for download and started with that. I then switched to IntelliJ for the mobile dev. Like I said

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

2015-05-07 Thread piotrz
Additionally I have checked also new version of FlexJS with FDT and it doesn't work anymore. I have error during to compilation that FlexJS.swc doesn't exists - We have currently bunch of swcs. I am not sure do we need to contact with FDT team ? Alex, After your changes to many swcs in FlexJS -

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

2015-05-07 Thread Frédéric THOMAS
Hi, A bit of updates: - I understood FlexJS got rid of the Flex SDK depnedencies, if yes, I will need to stick mostly on my same base code, can't use a facet AFAIK. - I've been trying to compile the Randori plugin against the last IntelliJ but many things have changed in their code base and it

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

2015-05-07 Thread Michael Schmalle
Fred, I didn't know you were giving that a go. I don't have enough time to get into the plugin if that is what you are working on, which is fantastic if you are. But, I am willing to try and match your time if you are now devoting (some)time to trying an Intellij plugin. I guess there is work to b

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

2015-05-07 Thread Frédéric THOMAS
Hi Mike, Yes I just started and it is on my little spare time but if you want an idea of what's going on, you can try to compile it and you will see things have changed and I need to figure out what to use now instead of BrowsersConfiguaration, ModuleChunk, the deprecated TranslatingCompiler, e

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

2015-05-07 Thread Héctor A
I should look into how a FlexJS application is compiled in Windows, I'm confident most of the auto-completion would work out of the box in FlashDevelop. On Thu, May 7, 2015 at 3:06 PM, Frédéric THOMAS wrote: > Hi Mike, > > Yes I just started and it is on my little spare time but if you want an >

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

2015-05-07 Thread Alex Harui
Hi Fred, Thanks for trying. One question though: why is a plug-in even needed? I was told by an IntelliJ engineer that they simply call mxmlc. If that’s true, then it should “just work”. Piotr’s screenshot sort of implied that the compiler may have run or does IntelliJ have a different code-in

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

2015-05-07 Thread Alex Harui
On 5/7/15, 3:00 AM, "piotrz" wrote: >Additionally I have checked also new version of FlexJS with FDT and it >doesn't work anymore. >I have error during to compilation that FlexJS.swc doesn't exists - We >have >currently bunch of swcs. Ugh. So they were looking for a specific swc name? Try co

AIR 18 beta

2015-05-07 Thread amer dababneh
Hi, I can not see AIR 18 beta in the Flex installer. is it going to be added it soon? -- Regards, Amer Dababneh Founder at Rectangles Mob: 00962 775600920 *Think Green - Please consider the planet before printing this email.*

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

2015-05-07 Thread Michael Schmalle
The red means that the IDE is not resolving the jx namespace. So it seems to be a SWC namespace problem where something is happening that IntelliJ doesn't read and resolve the manifest correctly. Why a plugin: Intellij has features that make creating projects and dependencies easy. One reason, Fre

[FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
Ok, my little boy curiosity has been peaked enough to want to try and compile this beast. It's been 2 years since I even had this code on my computer. Do I need the Flex SDK still to compile for FlexJS and the cross compiler? My goal is to be able to build the compiler and the FlexJS framework. C

A little help getting up to speed with the latest changes in FlexJS

2015-05-07 Thread Christofer Dutz
Hi, so today I found some time to continue digging into the latest FlexJS changes. Having a look at the flex-falcon project, it didn't seem to have changed that much (from a structural point of view), but in contrast to that the flex-asjs part has changed significantly. I would like to adjus

Re: A little help getting up to speed with the latest changes in FlexJS

2015-05-07 Thread Alex Harui
On 5/7/15, 9:24 AM, "Christofer Dutz" wrote: >Am I still correct with the assumption, the important stuff is all in >"frameworks" especially the "libs" directory? I am assuming this as >FlashBuilder has proven to be quite inflexible with regards to directory >structures ;-) > > >Do I simply hav

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
Hmm, I have been reading the READMEs so it seems the whole thing has to be built, I know now it seems obvious. So it still looks like the whole compiler code is Eclipse centric, I don't even know how I would go about trying to set this up to build in IntelliJ. (how to import the modules) On Thu,

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Alex Harui
Flex-falcon currently requires flex-sdk and flex-asjs. Flex-sdk requires flex-blazeds and flex-tlf. Flex-asjs requires flex-flexunit and flex-sdk and flex-falcon so there is a circularity. It should all be documented in various readme files. The dependencies should only be involved in running a

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Erik de Bruin
Hi Mike, > It's been 2 years since I even had this code on my computer. Do I need the > Flex SDK still to compile for FlexJS and the cross compiler? Yes, the Falcon compiler has barely changed since then. It still grabs a few chunks from the flex-sdk repo. > My goal is to be able to build the co

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Alex Harui
On 5/7/15, 9:46 AM, "Michael Schmalle" wrote: >Hmm, I have been reading the READMEs so it seems the whole thing has to be >built, I know now it seems obvious. > >So it still looks like the whole compiler code is Eclipse centric, I don't >even know how I would go about trying to set this up to b

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
Heh, I know there are tests, what I meant was, a "commit" some time when everything was running. 2 years is a long time, I feel like I am blind and it's funny to think at one time I had all this working and building. :) On Thu, May 7, 2015 at 12:54 PM, Erik de Bruin wrote: > Hi Mike, > > > It's

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
Yeah, this kind of makes me sad, seems that if I was to do this, I need to download Eclipse and just use it to get everything setup. What version of Eclipse are you using? On Thu, May 7, 2015 at 12:55 PM, Alex Harui wrote: > > > On 5/7/15, 9:46 AM, "Michael Schmalle" wrote: > > >Hmm, I have bee

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
Alex & Erik, thanks for the tips, I should have just read the READMEs because I am now having dejvu when I did this in the beginning, wow this is a lot of stuff to setup. :) On Thu, May 7, 2015 at 12:59 PM, Michael Schmalle wrote: > Yeah, this kind of makes me sad, seems that if I was to do this

Defining custom converters for MXML attribute values

2015-05-07 Thread Héctor A
First, I'm not demanding anything, this is just an idea. I know that even so when ideas are proposed in open source projects some people feel "offended" and ask for the OP to work on them, but I hope this is taken kindly by everyone. I'm lately feeling that MXML could be less verbose if attributes

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Michael Schmalle
I got errors checking out the sdk, couldn't copy a mustella file or something, then other errors I have not seen in GIT before. I couldn't then checkout develop. I'll try again next week. On Thu, May 7, 2015 at 1:01 PM, Michael Schmalle wrote: > Alex & Erik, thanks for the tips, I should have j

Re: [FlexJS - FlaconJx] GIT checkout and compiling

2015-05-07 Thread Alex Harui
On 5/7/15, 9:59 AM, "Michael Schmalle" wrote: >Yeah, this kind of makes me sad, seems that if I was to do this, I need to >download Eclipse and just use it to get everything setup. What version of >Eclipse are you using? I’m currently using Helios. -Alex

Re: Defining custom converters for MXML attribute values

2015-05-07 Thread Alex Harui
Nice idea, go work on it ;-) Seriously, though, it would be nice to see something like this. I don’t know that I’d use a Converter, it might be sufficient to use Metadata to annotate a property with a default class and property list to use if the value doesn’t coerce cleanly. So maybe the Compon

Re: Defining custom converters for MXML attribute values

2015-05-07 Thread Héctor A
Something like Class Component { [ValueConversion(class=geom.Rectangle,propertylist=left,right)] public var padding:Rectangle; } Would be less powerful tho, having a custom converter could allow for example padding="0", padding="0,0,0,0", padding="2%", etc all at once. Does your FlexJS s

ILOG Elixir - update

2015-05-07 Thread OmPrakash Muppirala
RogueWave has acquired IBM's ILOG Elixir components for Apache Flex. Details: http://www.roguewave.com/products-services/visualization/ibm-welcome I sincerely hope the new company does a better job of supporting the Elixir components. Here is the entire suite of Flex components: http://www.rogu

Re: Defining custom converters for MXML attribute values

2015-05-07 Thread Alex Harui
On 5/7/15, 12:24 PM, "Héctor A" wrote: >Something like > >Class Component >{ >[ValueConversion(class=geom.Rectangle,propertylist=left,right)] >public var padding:Rectangle; >} > >Would be less powerful tho, having a custom converter could allow for >example padding="0", padding="0,0,0,0

RE: [FlexJS] Link to video presentation on FlexJS

2015-05-07 Thread Jason Taylor
Om, Awesome presentation! Really psyched about FlexJS now. Just wanted to say thank you! JT -Original Message- From: omup...@gmail.com [mailto:omup...@gmail.com] On Behalf Of OmPrakash Muppirala Sent: Tuesday, May 05, 2015 12:39 PM To: dev@flex.apache.org; us...@flex.apache.org Subject

[GitHub] flex-tlf pull request: update inlinegraphicelement.as

2015-05-07 Thread typhoid
GitHub user typhoid opened a pull request: https://github.com/apache/flex-tlf/pull/2 update inlinegraphicelement.as for for bug #2931005 TLF cannot show Flex SWF after loading it as an ILG was incomplete. images added with htmlconverter used the fix, which broke them. it now check

Re: Open source Flex maps components

2015-05-07 Thread Rushme Nayak
Did we make any progress regarding Modest Map donation?? On Thu, Apr 30, 2015 at 4:37 AM, OmPrakash Muppirala wrote: > Igor, > > I know you started working on this a while ago. Do you remember why this > got dropped? Any chance you can continue working on the donation again > with the Modest M