Unzip ANE for Flex\AIR Desktop App

2016-10-19 Thread Deepak MS
Hi there,

I have converted an iPad app to Desktop App ( to make it work on surface
pro, touch based desktop). iPad App was using an unzip ANE. But it cannot
be used for desktop app.

I tried searching unzip ANEs for windows, but I couldn't come across any.

There are C libraries like zlib and minizip. I tried creating ANE myself (
http://easynativeextensions.com/windows-tutorial-the-native-dll-project/
 ), but I end up getting many errors. I'm not good at C coding.

Or if anyone is interested to take this up as a project, company is happy
to outsource this piece of work at a cost.

Kindly let me know about it.

Cheers!
Deepak


Re: Release Build Performance on Mobile

2016-10-19 Thread Deepak MS
I had similar problem. I was using spark DataGrid with dynamic columns (
ranging from 12 to 36). I realised that using ItemRenderers in columns was
slowing the app (scrolling was very slow).When I took out itemrenderers, it
seemed to work fine. All columns were number based.
So what I did was, instead of creating itemrenderers, I created dummy
column (1 for each real column), and passed formatted data to those
columns. For sorting, I used custom sort using real columns. This improved
the scrolling performance.


Re: Release Build Performance on Mobile

2016-10-19 Thread Josh Tynjala
Instead of passing in all columns and changing visibility, you could
probably switch between different smaller arrays of columns when you change
pages.

- Josh

On Oct 19, 2016 7:53 PM, "bilbosax"  wrote:

> I don't think that I am going to be able to use MobileGrid :(  I have a LOT
> of columns to be displayed, so I use "previous" and "next" buttons to be
> able to page through all of the columns by turning their visibility on and
> off accordingly.  MobileGrid has no visibility property on the individual
> grids columns, which would make this an unusable scenario.
>
> Bummer
>
> I guess I will try the MX Datagrid and see if I can get any good results
> from it.
>
>
>
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Release-Build-Performance-on-Mobile-
> tp13865p13870.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: Release Build Performance on Mobile

2016-10-19 Thread bilbosax
I don't think that I am going to be able to use MobileGrid :(  I have a LOT
of columns to be displayed, so I use "previous" and "next" buttons to be
able to page through all of the columns by turning their visibility on and
off accordingly.  MobileGrid has no visibility property on the individual
grids columns, which would make this an unusable scenario.

Bummer

I guess I will try the MX Datagrid and see if I can get any good results
from it.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Release-Build-Performance-on-Mobile-tp13865p13870.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Release Build Performance on Mobile

2016-10-19 Thread OmPrakash Muppirala
On Wed, Oct 19, 2016 at 4:51 PM, bilbosax  wrote:

> Thanks for the MobileGrid heads up.  I will definitely look into it.  I
> already figured out that Standard runs faster than Fast when packaging.  I
> guess my question is when your create your final .ipa and install it from
> the app store, will it run any faster than the Standard Packager when you
> are in development?
>
>
I believe it should be the same.  But I always create a final release
package, just to be sure.

Thanks,
Om


>
>
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Release-Build-Performance-on-Mobile-
> tp13865p13868.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: Release Build Performance on Mobile

2016-10-19 Thread bilbosax
Thanks for the MobileGrid heads up.  I will definitely look into it.  I
already figured out that Standard runs faster than Fast when packaging.  I
guess my question is when your create your final .ipa and install it from
the app store, will it run any faster than the Standard Packager when you
are in development?



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Release-Build-Performance-on-Mobile-tp13865p13868.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Release Build Performance on Mobile

2016-10-19 Thread OmPrakash Muppirala
There is a MobileGrid component which is somewhat limited in terms of
features, but is optimized for better performance on Mobile devices.

Take a look at:
http://flex.apache.org/asdoc/spark/components/MobileGrid.html for more
details.  There are multiple usage examples in there as well.

Thanks,
Om



On Wed, Oct 19, 2016 at 4:40 PM, OmPrakash Muppirala 
wrote:

> From my experience, the Standard build will have better performance.  I am
> not sure by how much though.
>
> Thanks,
> Om
>
> On Wed, Oct 19, 2016 at 4:19 PM, bilbosax  wrote:
>
>> I have created a Spark Datagrid in my AIR application for mobile.  On my
>> iPad, the performance is not smooth, especially on scrolling.  My app just
>> feels a step behind, but especially on the datagrid.  So I have two
>> questions:
>>
>> 1) Should I consider giving MX Datgrid a try for better performance on
>> mobile?
>>
>> 2) Right now when I am testing my app during development, I have two
>> packaging options.  Fast and Standard.  Will I see even better performance
>> when I actually create a release build, or should I expect the performance
>> to be the same as the Standard packaging?
>>
>> Thanks
>>
>>
>>
>> --
>> View this message in context: http://apache-flex-users.2
>> 46.n4.nabble.com/Release-Build-Performance-on-Mobile-tp13865.html
>> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>>
>
>


Re: Release Build Performance on Mobile

2016-10-19 Thread OmPrakash Muppirala
>From my experience, the Standard build will have better performance.  I am
not sure by how much though.

Thanks,
Om

On Wed, Oct 19, 2016 at 4:19 PM, bilbosax  wrote:

> I have created a Spark Datagrid in my AIR application for mobile.  On my
> iPad, the performance is not smooth, especially on scrolling.  My app just
> feels a step behind, but especially on the datagrid.  So I have two
> questions:
>
> 1) Should I consider giving MX Datgrid a try for better performance on
> mobile?
>
> 2) Right now when I am testing my app during development, I have two
> packaging options.  Fast and Standard.  Will I see even better performance
> when I actually create a release build, or should I expect the performance
> to be the same as the Standard packaging?
>
> Thanks
>
>
>
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/Release-Build-Performance-on-Mobile-tp13865.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Release Build Performance on Mobile

2016-10-19 Thread bilbosax
I have created a Spark Datagrid in my AIR application for mobile.  On my
iPad, the performance is not smooth, especially on scrolling.  My app just
feels a step behind, but especially on the datagrid.  So I have two
questions:

1) Should I consider giving MX Datgrid a try for better performance on
mobile?

2) Right now when I am testing my app during development, I have two
packaging options.  Fast and Standard.  Will I see even better performance
when I actually create a release build, or should I expect the performance
to be the same as the Standard packaging?

Thanks



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Release-Build-Performance-on-Mobile-tp13865.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


ApacheCon is now less than a month away!

2016-10-19 Thread Rich Bowen
Dear Apache Enthusiast,

ApacheCon Sevilla is now less than a month out, and we need your help
getting the word out. Please tell your colleagues, your friends, and
members of related technical communities, about this event. Rates go up
November 3rd, so register today!

ApacheCon, and Apache Big Data, are the official gatherings of the
Apache Software Foundation, and one of the best places in the world to
meet other members of your project community, gain deeper knowledge
about your favorite Apache projects, learn about the ASF. Your project
doesn't live in a vacuum - it's part of a larger family of projects that
have a shared set of values, as well as a shared governance model. And
many of our project have an overlap in developers, in communities, and
in subject matter, making ApacheCon a great place for cross-pollination
of ideas and of communities.

Some highlights of these events will be:

* Many of our board members and project chairs will be present
* The lightning talks are a great place to hear, and give, short
presentations about what you and other members of the community are
working on
* The key signing gets you linked into the web of trust, and better
able to verify our software releases
* Evening receptions and parties where you can meet community
members in a less formal setting
* The State of the Feather, where you can learn what the ASF has
done in the last year, and what's coming next year
* BarCampApache, an informal unconference-style event, is another
venue for discussing your projects at the ASF

We have a great schedule lined up, covering the wide range of ASF
projects, including:

* CI and CD at Scale: Scaling Jenkins with Docker and Apache Mesos -
Carlos Sanchez
* Inner sourcing 101 - Jim Jagielski
* Java Memory Leaks in Modular Environments - Mark Thomas

ApacheCon/Apache Big Data will be held in Sevilla, Spain, at the Melia
Sevilla, November 14th through 18th. You can find out more at
http://apachecon.com/  Other ways to stay up to date with ApacheCon are:

* Follow us on Twitter at @apachecon
* Join us on IRC, at #apachecon on the Freenode IRC network
* Join the apachecon-discuss mailing list by sending email to
apachecon-discuss-subscr...@apache.org
* Or contact me directly at rbo...@apache.org with questions,
comments, or to volunteer to help

See you in Sevilla!

-- 
Rich Bowen: VP, Conferences
rbo...@apache.org
http://apachecon.com/
@apachecon


Re: AW: Flexmojos/Maven issue when upgrading FB from 4.5 to 4.7

2016-10-19 Thread dev user
Hi Chris,

Thank you for your reply and pointing out the subject 

Let me check and update you the status.

Thank you!.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Upgrading-Flash-builder-from-4-5-codebase-to-4-7-trouble-tp13532p13856.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: [FlexJS] Camera/Microphone access and Streaming with new FlexJS

2016-10-19 Thread Josh Tynjala
Add it as an external library with the following compiler argument:

--external-library-path+=amf.js.swc

- Josh

On Wed, Oct 19, 2016 at 8:21 AM, PKumar  wrote:

> I have compiled the amfJS as flexjs-typedef and generated a swc file. I am
> not aware , how to use it? Please suggest.
>
>
>
> -
> Regards,
> Prashant
> --
> View this message in context: http://apache-flex-users.
> 246.n4.nabble.com/FlexJS-Camera-Microphone-access-and-
> Streaming-with-new-FlexJS-tp13853p13862.html
> Sent from the Apache Flex Users mailing list archive at Nabble.com.
>


Re: [FlexJS] Camera/Microphone access and Streaming with new FlexJS

2016-10-19 Thread PKumar
I have compiled the amfJS as flexjs-typedef and generated a swc file. I am
not aware , how to use it? Please suggest.



-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/FlexJS-Camera-Microphone-access-and-Streaming-with-new-FlexJS-tp13853p13862.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: FlatSpark for datagrid

2016-10-19 Thread modjklist
You might also consider skins from 

http://www.ardisialabs.com 


- Original Message -

From: "OK"  
To: users@flex.apache.org 
Sent: Sunday, October 16, 2016 11:19:47 AM 
Subject: Re: FlatSpark for datagrid 

>I am going to migrate a Flex 3 app to Flex 4 and I plan to use FlatSpark for 
the user interface. 
>I don't see the "datagrid" as part of the components available in 
FlatSpark. 
>Please confirm. 

AFAIK there's no FlatSpark datagrid available. 

>If not available, is it planned? When? 

AFAIK there're no plans to implement something like that. 

>If not planned, what would be a workaround? 

I wonder what do you expect from a flatspark datagrid? 
To adjust the look and feel to a flat design you maybe could create some 
custom skins. 



BTW: 
Do you know the Spark-Material lib [1] which is inspired by googles Material 
Design? 
There's also no datagrid available but you should give it a try! 
(Checkout also the dev branch) 

HTH, 
Olaf 


[1] https://github.com/rui-cruz/Spark-Material 



-- 
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/FlatSpark-for-datagrid-tp13810p13812.html
 
Sent from the Apache Flex Users mailing list archive at Nabble.com. 



Re: Error handshaking for timestamp during AIR packaging

2016-10-19 Thread Tucsonjhall
FYI

https://forums.adobe.com/thread/2218793





--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Error-handshaking-for-timestamp-during-AIR-packaging-tp13743p13860.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: [FlexJS] Camera/Microphone access and Streaming with new FlexJS

2016-10-19 Thread Peter Ent
Hi,
You can use FlexJS to do this, but you may have to write some components.
We have an example which uses Apache Cordova and plugins for the Camera on
mobile devices. You could follow the same pattern.

Regards,
Peter Ent
Adobe Systems/Apache Flex Project

On 10/19/16, 1:30 AM, "Sahil Sharma"  wrote:

>Dear Community member,
>
>Can you please help me in clarifying about the use of FlexJS to create
>Audio/Video applications in web based environment.
>
>Basically i want to create a live audio/video sharing application with a
>streaming server like Adobe media server/Red5 or others. I wanted to know
>if my application will be successfully cross compiled to html or not?
>
>Please suggest in case I am working in wrong direction.
>
>Regards,
>Sahil.



Re: Can't get custom component to size down properly

2016-10-19 Thread kamcknig
Oh my! You did it! Thanks so much!

Sorry though, how would I set the width and height of the Rect to the width
and height a user might set on the component? I tried setting
_fillRect.width/height within the updateDisplayList() override method
instead of setting the top/right/bottom/left in the createChildren() method
but that breaks it.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Can-t-get-custom-component-to-size-down-properly-tp13841p13857.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: [FlexJS] Support in BlazeDS communication

2016-10-19 Thread PKumar
Hi Alex,

I tried to connect with webORB.net using AMFJS and it is working.  I will
check it with BlazeDS also. I am having one query here,
can I compile AMFJS to  FlexJS library, as currently FlexJS havig JQuery
support?



-
Regards,
Prashant
--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/FlexJS-Support-in-BlazeDS-communication-tp11562p13855.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.