[GitHub] flex-asjs pull request #11: Binary data improvement

2016-07-25 Thread greg-dove
GitHub user greg-dove opened a pull request: https://github.com/apache/flex-asjs/pull/11 Binary data improvement As per recent discussions - updated BinaryData improvements -this request fixes a bug in writeUTF that was not respecting the endian setting for the prefixed short va

AW: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Christofer Dutz
By the way ... did you give the Maven build a try? Chris Von: Peter Ent Gesendet: Montag, 25. Juli 2016 20:05:49 An: Alex Harui; dev@flex.apache.org Betreff: Re: [FLEXJS, TYPEDEFS] Got this to work with help from Alex. I had FALCONJX_HOME pointing to an old di

Re: Apache Flex Docs/Examples on StackOverflow

2016-07-25 Thread Justin Mclean
HI, > Noticed this today: http://stackoverflow.com/tour/documentation Not necessarily an issue but would be happy with the terms of service here [1], in particular: "You agree that all Subscriber Content that You contribute to the Network is perpetually and irrevocably licensed to Stack Exchang

Re: Apache Flex Docs/Examples on StackOverflow

2016-07-25 Thread Alex Harui
Sounds interesting. I wish I could help, but I never contributed at SO in the past so I don't have enough points. -Alex On 7/25/16, 3:38 PM, "Clint M" wrote: >Noticed this today: http://stackoverflow.com/tour/documentation > >If we get 2 more people to sign up we can start documenting apache fl

Apache Flex Docs/Examples on StackOverflow

2016-07-25 Thread Clint M
Noticed this today: http://stackoverflow.com/tour/documentation If we get 2 more people to sign up we can start documenting apache flex with examples on StackOverflow. http://stackoverflow.com/documentation/flex/commit

Re: Changed svg namespace

2016-07-25 Thread Harbs
FYI: I just added a bunch of drawing APIs for SVG which should work for canvas as well when we have it. It should be possible to efficiently construct paths with can be used for all outputs. I still need to do some testing and add simple rounded rects and I need to add string decomposition for

[GitHub] flex-asjs pull request #10: Binary data improvement

2016-07-25 Thread greg-dove
Github user greg-dove closed the pull request at: https://github.com/apache/flex-asjs/pull/10 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
Got this to work with help from Alex. I had FALCONJX_HOME pointing to an old directory: flex-falcon/compiler.jx; it should have been pointing to flex-falcon/compiler-jx —peter From: Alex Harui mailto:aha...@adobe.com>> Date: Monday, July 25, 2016 at 11:42 AM To: Peter Ent mailto:p...@adobe.com>

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Alex Harui
Try ant all in falcon again. Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Peter Ent Date: Mon, Jul 25, 2016 7:56 AM To: dev@flex.apache.org; Subject:Re: [FLEXJS, TYPEDEFS] Running ant in flex-typedefs/jquery does not give the error and builds successfully. I

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
Running ant in flex-typedefs/jquery does not give the error and builds successfully. I do not have FLEX_FALCON environment var set at all. —peter On 7/25/16, 10:51 AM, "Alex Harui" wrote: >Go to flex-typedefs/jquery and run 'ant'. Do you get the same errors? If >so, do you have a FLEX_FALCON e

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Alex Harui
Go to flex-typedefs/jquery and run 'ant'. Do you get the same errors? If so, do you have a FLEX_FALCON environment variable pointing somewhere other than flex-falcon? -Alex On 7/25/16, 7:34 AM, "Peter Ent" wrote: >Yes, I had done that as well. So this time I did: > >typedefs: ant wipe >falco

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Harbs
Did you try clean all and ant all in flex-asjs? On Jul 25, 2016, at 5:34 PM, Peter Ent wrote: > Yes, I had done that as well. So this time I did: > > typedefs: ant wipe > falcon:ant wipe-all; ant all > > Get same errors below. > > On 7/25/16, 10:27 AM, "Alex Harui" wrote: > >> Did you

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
Yes, I had done that as well. So this time I did: typedefs: ant wipe falcon:ant wipe-all; ant all Get same errors below. On 7/25/16, 10:27 AM, "Alex Harui" wrote: >Did you also do a "wipe" in flex-typedefs? IIRC, that was the repo that >was on the wrong branch and could have left cruft.

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Alex Harui
Did you also do a "wipe" in flex-typedefs? IIRC, that was the repo that was on the wrong branch and could have left cruft. -Alex On 7/25/16, 7:23 AM, "Peter Ent" wrote: >So back to this. > >This morning I did a new pull from flex-falcon/typedefs/asjs just to be >certain, I think a couple of ne

Re: [FLEXJS, TYPEDEFS]

2016-07-25 Thread Peter Ent
So back to this. This morning I did a new pull from flex-falcon/typedefs/asjs just to be certain, I think a couple of new things came down. I did ant wipe-all in falcon followed by ant all. I get this error at the end of the build (below). Is falcon supposed to be built first? I'm assuming typede

AW: [FlexJS] Wok on the distribution

2016-07-25 Thread Christofer Dutz
Ok ... so I think this is now done too :-) I had to update the mavenizer a little and it now produces the parts needed to have a (hopefully) full AIR SDK inside the FlexJS SDK. Now all the runtimes and the templates should be in place. But I guess only time and users will tell. And if you alre

Re: Changed svg namespace

2016-07-25 Thread Harbs
I think I missed the correct config file the first time around, and I fixed this. The change is that SVG components such as Rect, Circle, etc, should now need the library://ns.apache.org/flexjs/svg namespace in MXML instead of library://ns.apache.org/flexjs/basic. So to use vsg compenents, you

AW: Changed svg namespace

2016-07-25 Thread Christofer Dutz
Hi Harbs, it would have been easier to check, if all Is ok, if you had described what you changed. From a review of the commit it seems you moved some parts to dedicated svg packages, created a new namespace file to reference the svg elements and removed the old ones from the original ones. Am

Changed svg namespace

2016-07-25 Thread Harbs
I just changed the svg namespace in the Graphics package. I’m not 100% sure I did it right — especially with the maven build. I hope I did not mess up the next build, but we’ll find out soon. ;-) If someone could double-check what I did (both on the ant side and the maven side), that might catc

RE: [Non-DoD Source] Welcome Yishay Weiss as Apache Flex Committer

2016-07-25 Thread Kessler CTR Mark J
Grats and Welcome. -Mark -Original Message- From: Harbs [mailto:harbs.li...@gmail.com] Sent: Sunday, July 24, 2016 11:19 AM To: dev@flex.apache.org Subject: [Non-DoD Source] Welcome Yishay Weiss as Apache Flex Committer Hi folks, The Apache Flex PMC is excited to welcome Yishay Weiss a

[GitHub] flex-asjs issue #10: Binary data improvement

2016-07-25 Thread Harbs
Github user Harbs commented on the issue: https://github.com/apache/flex-asjs/pull/10 Sounds good. I was going to merge this today, but I'll wait for your updates. The only way for me to close pull requests is to add a commit (because this is just a mirror of the Apache repo)

[GitHub] flex-asjs issue #10: Binary data improvement

2016-07-25 Thread greg-dove
Github user greg-dove commented on the issue: https://github.com/apache/flex-asjs/pull/10 Harbs, I have a number of improvements, including performance improvements, and one bug fix (writeUTF was not respecting the endian setting for the prepended string length) that supersede this re

Re: 1046: Type was not found or was not a compile-time constant: [flash.events]::IEventDispatcher

2016-07-25 Thread Alex Harui
I just tried it on my MacBook Pro with Flex 4.15 and FP22. The following test case compiles just fine: --- Flash22Test.as --- package { import flash.display.IBitmapDrawable; import flash.display.Sprite; import flash.events.IEventDispatcher; public class Flash22Test extends Sprite {