Re: Flex list like tinder layout

2015-04-27 Thread Deepak MS
http://flex.apache.org/community-mailinglists.html You may send an email to users-unsubscr...@flex.apache.org On Mon, Apr 27, 2015 at 4:28 PM, Aurelian Tudorache aurelia...@gmail.com wrote: How do I unsubscribe from all these unwanted emails?

Re: Flex list like tinder layout

2015-04-27 Thread Aurelian Tudorache
How do I unsubscribe from all these unwanted emails? On Mon, Apr 27, 2015 at 1:50 PM, Kessler CTR Mark J mark.kessler@usmc.mil wrote: Never used it before, but there is a swipe gesture event [1]. [1]

RE: Flex list like tinder layout

2015-04-27 Thread Kessler CTR Mark J
Never used it before, but there is a swipe gesture event [1]. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/InteractiveObject.html#eventSummary -Mark -Original Message- From: Scott Matheson [mailto:smathe...@intralinks.com] Sent: Sunday, April

RE: Flex list like tinder layout

2015-04-27 Thread Kessler CTR Mark J
Now with correct url. [1] http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/InteractiveObject.html#event:gestureSwipe -Original Message- From: Kessler CTR Mark J [mailto:mark.kessler@usmc.mil] Sent: Monday, April 27, 2015 6:51 AM To:

Re: AW: AW: AW: AW: Recommended flexmojos version for unittesting 4.11 SDK libs

2015-04-27 Thread duncmcm
Hi Chris Thanks I will take a look at your examples shortly, but regards my issue last friday I am still seeing this issue when I do mvn flexmojos:test-compile: [ERROR] Plugin net.flexmojos.oss:flexmojos-maven-plugin:7.1.0-SNAPSHOT or one of its dependencies could not be resolved: Failed to

AW: AW: AW: AW: AW: Recommended flexmojos version for unittesting 4.11 SDK libs

2015-04-27 Thread Christofer Dutz
Hi Duncan, I can't help you with that ... the artifact is availalbe: https://oss.sonatype.org/content/repositories/snapshots/net/flexmojos/oss/flexmojos-parent/7.1.0-SNAPSHOT/ You could add the -U parameter to your build to force Maven to update, but as you are using your own Artifactory

Re: Flex list like tinder layout

2015-04-27 Thread Aurelian Tudorache
Thanks! On Mon, Apr 27, 2015 at 2:06 PM, Deepak MS megharajdee...@gmail.com wrote: http://flex.apache.org/community-mailinglists.html You may send an email to users-unsubscr...@flex.apache.org On Mon, Apr 27, 2015 at 4:28 PM, Aurelian Tudorache aurelia...@gmail.com wrote: How do I

AW: Cast results from server

2015-04-27 Thread Christofer Dutz
Actually (If you're talking about AMF communication using BlazeDS, Granite, Adobe LiveCycle,...) Then the server serializes the name of the Class on the server side and then the data. In your model an the ActionScript side, you can add RemoteClass metadata to tell Flash/Flex that whenever an

Data type changes at compile time???

2015-04-27 Thread mark goldin
I have the following code: public function result(data:Object):void { // Check data.result trace(data.result[0]); I see data type Object // but if I add this code: trace(data.result[0] as someVO); then at the first trace I see data type as of someVO } How can run time know

Re: Cast results from server

2015-04-27 Thread OmPrakash Muppirala
Why is the casting not done on the server side? If you can cast something into an ArrayCollection, you should be able to cast other objects too. Thanks, Om On Apr 27, 2015 8:44 AM, mark goldin markzolo...@gmail.com wrote: I am getting data from a server as an ArrayCollection of a server class

Re: Data type changes at compile time???

2015-04-27 Thread OmPrakash Muppirala
In the second case, the definition of the class someVO will be included in the compiled swf, because it appears in the code. In the first case, the compiler has no knowledge that someVO would be used. Just declaring a dummy object of type someVO at the top of the class would ensure that the

Re: Data type changes at compile time???

2015-04-27 Thread mark goldin
But why data type changes before second statement gets hit? On Mon, Apr 27, 2015 at 12:15 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: In the second case, the definition of the class someVO will be included in the compiled swf, because it appears in the code. In the first case, the

Re: Cast results from server

2015-04-27 Thread mark goldin
The server returns a list of typed objects, but on UI side it's an ArayCollection of objects. Not sure it's correct though On Mon, Apr 27, 2015 at 12:08 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: Why is the casting not done on the server side? If you can cast something into an

Re: Data type changes at compile time???

2015-04-27 Thread OmPrakash Muppirala
Data type technically does not change because all instances are of type Object by default. If the class definition is available and the server side object has class metadata included, it will be automatically cast to the correct type by the Flash player. On Apr 27, 2015 10:18 AM, mark goldin

Re: Data type changes at compile time???

2015-04-27 Thread mark goldin
Ah, I see. That explains, thanks. On Mon, Apr 27, 2015 at 12:29 PM, OmPrakash Muppirala bigosma...@gmail.com wrote: Data type technically does not change because all instances are of type Object by default. If the class definition is available and the server side object has class metadata