AW: Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread Christofer Dutz
Welcome Yishay, Really happy about FlexJS gaining more and more traction ;-) Chris Von: Yishay Weiss Gesendet: Montag, 25. Juli 2016 08:10:13 An: dev@flex.apache.org Betreff: RE: Welcome Yishay Weiss as Apache Flex Committer From: Yishay Weiss

RE: Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread OK
Congrats and Welcome Yishay! To keep the website up-to-date, perhaps you'd like to add yourself to the team page: https://cwiki.apache.org/confluence/display/FLEX/Updating+your+profile+on+Team+page Olaf -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Welc

Re: socket

2016-07-24 Thread OmPrakash Muppirala
For socket servers things are a bit different. You will need to have the flash policy file served off of a socket server itself. Check this link http://www.adobe.com/devnet/flashplayer/articles/socket_policy_files.html I have used an open source policy server built for this. You can follow the

RE: Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread Yishay Weiss
From: Yishay Weiss Sent: Monday, July 25, 2016 8:52 AM To: Harbs Subject: RE: Welcome Yishay Weiss as Apache Flex Committer Thanks, it’s an exciting project to be a part of. I started working with Flex about 8 years ago, and have be

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

2016-07-24 Thread jbmetrics
Okay, I noticed on my MacBook Pro it worked (but was running on Flex 4.15 for Flash Player 20). I reinstalled Apache Flex on my iMac 27" for Flash Player 20 and the 1046 errors went away. So it is definitely an issue running Apache Flex 4.15 for Flash Player 22. I might try it later for Flash P

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Peter Ent
I'm not at my computer to check, but I think Chart Example uses the SolidColor and SolidColorStroke in MXML. Is that what you are trying to do? Peter > On Jul 24, 2016, at 7:43 PM, Alex Harui wrote: > > Looks like there were a couple of problems: > > > 1. ViewDataBinding was commented ou

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Alex Harui
Looks like there were a couple of problems: 1. ViewDataBinding was commented out of SkinsView.mxml. 2. DeferredBindingsHandler wasn't doing the right thing. I pushed changes for #2 to the develop branch. Sync them over to svg-rename and it should work. -Alex From: Harbs mailto:harbs.li

Re: socket

2016-07-24 Thread Nicholas Kwiatkowski
Is the crossdomain.xml on the same domain/ip as the IP you are trying to connect to? Rarely do you need to do the Security.allowDomain() or allowInsecureDomain() methods anymore. The security policies are pretty much now that you /need/ to be hosting the crossdomain file on the same server, domai

Re: FlexJS Graphics package

2016-07-24 Thread Harbs
You are right that Canvas is “paint and forget”, but EaselJS managed to make it act like a display list by keeping track of a virtual structure. We’re already doing that with FlexJS with ALL browser content, and canvas is not different. The concept is not very complicated. We just need to have s

Re: Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread Carlos Rovira
Welcome Yishay, really good to have you on board! :) 2016-07-24 17:24 GMT+02:00 Alex Harui : > Welcome Yishay. If you have a moment, I encourage to you post a little > more information about yourself. > > Thanks, > -Alex > > On 7/24/16, 8:19 AM, "Harbs" wrote: > > >Hi folks, > > > >The Apache F

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Harbs
Take a look at FlexJSTest_SVG. I just committed a change to illustrate the point. (to the svg-rename branch) On Jul 24, 2016, at 9:35 PM, Alex Harui wrote: > I'd have to debug a test case. > > Sent from my LG G3, an AT&T 4G LTE smartphone > > -- Original message-- > From: Harbs > Date

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Alex Harui
I'd have to debug a test case. Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Harbs Date: Sun, Jul 24, 2016 10:41 AM To: dev; Subject:Re: [FlexJS] Trick to adding properties? It looks like this discussion fell off of the dev list. On Jul 24, 2016, at 8:33 PM,

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Alex Harui
Maybe metadata is being removed. Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Harbs Date: Sun, Jul 24, 2016 11:02 AM To: dev; Subject:Re: [FlexJS] Trick to adding properties? Related question: Does the [Inspectable] meta tag work for enumerating acceptable v

Re: FlexJS Graphics package

2016-07-24 Thread OmPrakash Muppirala
Sorry, I am jumping into this slightly old thread. Just catching up with all the emails :-) A bit of a background to the Graphics package in FlexJS: The goal was to make it possible to write MXMLG/FXG syntax in FlexJS and have it compiled to SVG for the HTML/JS implementation. It was not origin

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Harbs
Related question: Does the [Inspectable] meta tag work for enumerating acceptable values in FlexJS? It looks like it’s not used anywhere. On Jul 24, 2016, at 8:41 PM, Harbs wrote: > It looks like this discussion fell off of the dev list. > > On Jul 24, 2016, at 8:33 PM, Harbs wrote: > >> Ar

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Harbs
It looks like this discussion fell off of the dev list. On Jul 24, 2016, at 8:33 PM, Harbs wrote: > Array > > On Jul 24, 2016, at 8:08 PM, Alex Harui wrote: > >> What data type is linedash? >> >> Sent from my LG G3, an AT&T 4G LTE smartphone >> >> -- Original message-- >> From: Harb

Re: FlexJS creationComplete

2016-07-24 Thread Alex Harui
Applicationcomplete on the app. We are currently not taking the time to dispatch an event from every component. Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Harbs Date: Sun, Jul 24, 2016 8:42 AM To: dev; Subject:FlexJS creationComplete Is there a FlexJS equ

FlexJS creationComplete

2016-07-24 Thread Harbs
Is there a FlexJS equivalent to the creationComplete event? How would you go about doing some processing after all components are created? Harbs

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

2016-07-24 Thread Alex Harui
On 7/23/16, 11:03 PM, "jbmetrics" wrote: >The playerglobal.swc (for ver 22) is showing as 467,721 byte (471KB) and >(for >ver 20) is showing 388,430 (389KB). So that seems fine. > What is a small code sample that doesn't compile? -Alex

Re: Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread Alex Harui
Welcome Yishay. If you have a moment, I encourage to you post a little more information about yourself. Thanks, -Alex On 7/24/16, 8:19 AM, "Harbs" wrote: >Hi folks, > >The Apache Flex PMC is excited to welcome Yishay Weiss as our newest >committer! Yishay has recently been contributing with b

Re: [FlexJS][SVG] foreignObject

2016-07-24 Thread Alex Harui
On 7/24/16, 12:38 AM, "Harbs" wrote: >I’d like to be able to enable adding HTML elements to SVG in FlexJS. > >There is a mechanism for doing so, namely foreignObject.[1] > >There’s two ways we can do this: > >1. We can explicitly create a foreignElement class and only allow SVG >containers to a

Welcome Yishay Weiss as Apache Flex Committer

2016-07-24 Thread Harbs
Hi folks, The Apache Flex PMC is excited to welcome Yishay Weiss as our newest committer! Yishay has recently been contributing with bug reports, pull requests on FlexJS, and sharing helpful info on the mailing lists, all of which earned him the merit to become a committer (yes, you can become

Re: [FlexJS] Trick to adding properties?

2016-07-24 Thread Alex Harui
Compile into a swc. Put swc in correct folder. Restart flash builder? Sent from my LG G3, an AT&T 4G LTE smartphone -- Original message-- From: Harbs Date: Sun, Jul 24, 2016 7:49 AM To: dev; Subject:[FlexJS] Trick to adding properties? I’m trying to add properties to SolidColorStroke, an

[FlexJS] Trick to adding properties?

2016-07-24 Thread Harbs
I’m trying to add properties to SolidColorStroke, and I’d like the properties to be assignable in MXML. It looks to me like I did everything correctly, but when I try to assign the properties in MXML, I get a "This attribute is unexpected. It will be ignored.” error. Am I missing a step? Do I n

[FlexJS][SVG] foreignObject

2016-07-24 Thread Harbs
I’d like to be able to enable adding HTML elements to SVG in FlexJS. There is a mechanism for doing so, namely foreignObject.[1] There’s two ways we can do this: 1. We can explicitly create a foreignElement class and only allow SVG containers to accept SVG GraphicShapes or ForeignElements. 2. W