Re: Flex Roadmap 2019

2018-12-21 Thread quick6black
I would be interested in helping and would donate what I have done for
material to apache if they wanted to merge the code. 




--
Sent from: http://apache-flex-development.247.n4.nabble.com/


Re: Geo-fence in Flex/Action Script

2015-05-29 Thread quick6black
I have been using the ESRI Flex API for mapping in Flex mobile. If you check
out the  API reference  
and look at the Polygon class there is a "contains" method that returns a
Boolean value based on whether a mappoint falls within the polygon. It would
be fairly easy to get the lat and long from the Air SDK and use the contains
method to determine whether the point is within your geofence. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Geo-fence-in-Flex-Action-Script-tp47043p47127.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Do you need a Mac to publish an OSx Air App?

2016-05-31 Thread quick6black
You can run MAC OS in VM-Ware or Virtual Box, just Google it and there are a
number of tutorials. I ran into that issue when publishing an IOS app into
ITunes. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Do-you-need-a-Mac-to-publish-an-OSx-Air-App-tp53228p53271.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-05-29 Thread quick6black
I have been working on a new date spinner list and spinner list skins for
Android, I hope to have them completed soon. Let me know what you think

thanks

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p37868.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-05-29 Thread quick6black
that's the plan, the only issue I am wrestling with is the decrement and
increment buttons. If you are cool without them I will submit this week



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p37881.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-05-29 Thread quick6black
There are some nice android skins on github at this  link

 
. I was able to implement their dropdown menu into a project I am working on
and it works great. 

 

The developer had commented about it a while ago in  this

  
thread. He built some great components and they are integrated into a ESRI
Flex project but can run without their API



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p37882.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-05-29 Thread quick6black
works for me, I was taking a similar approach to you on the spinner list. I
revised the fxg files. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p37891.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-06-03 Thread quick6black
I created a  ticket    and
uploaded the skins. Let me know if you have any issues. I plan to work on a
few more. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38003.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-06-11 Thread quick6black
I started the text input skin, signed the Atlassian contributor license
agreement so I can update the wiki



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38193.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-06-13 Thread quick6black
here is a screen shot of the stageTextAreaSkin and stageTextInputSkin. 

 
my thoughts were too create a style reference to change the border from flat
to rectangular and also to keep the background color and background alpha.
Here would be the style reference for textinput

TextInput
{
skinClass: ClassReference("spark.skins.android4.StageTextInputSkin"); 
contentBackgroundAlpha: 0;
contentBackgroundColor: #DEDEDD;
contentBackgroundAppearance: "flat";
selectionHighlighting: "never";
focusEnabled:"false";
focusThickness: 0;
}

and for TextArea

TextArea
{
skinClass: ClassReference("spark.skins.android4.StageTextAreaSkin"); 
contentBackgroundAlpha: 1;
contentBackgroundAppearance: "rectangle";
contentBackgroundColor: #DEDEDD;
selectionHighlighting: "never";
focusEnabled:"false";
focusThickness: 0;
}

let me know what you think. I have a few orientation issues to resolve and
then should be good to submit.



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38278.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-06-13 Thread quick6black
will do



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38280.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-06-13 Thread quick6black
I see where I messed up on the spinner lists, do you want me to fix and
resubmit? it really gets wonky when you change the resolution



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38281.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-07-09 Thread quick6black
Hi Om,

on vacation this week, will see what I can work on when I get back on
Monday. Don't want to get a head of the game, but have you looked at Android
L yet? We have some time since the official release is not scheduled till
fall, they did reskin some of the components. 

Aaron



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p38964.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-07-11 Thread quick6black
tried to update the wiki page and it does not give me that option, do I need
to have edit permissions?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Re-IOS-7-and-Android-4-3-Skinning-tp37835p39050.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-01 Thread quick6black
I can probably help out with a component or two, it would help if you put up
a list of components that need to be skinned and who will be working on
each.





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p40995.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-03 Thread quick6black
I will get started next week, I was looking for design standards to model
after and I think this  page

 
will work. let me know if you guys find anything better



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p41062.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-09 Thread quick6black
i started textarea and textinput, should have something tomorrow. Can you
update the wiki page please

thanks



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p41214.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-10 Thread quick6black
I decided last night to also start working on the Hslider (scrubber). Just
wondering what type of behavior users are experiencing with the Hslider on
the Iphone. When I press on the thumb button on my Iphone 4 and slide it, it
does not appear to change shape or color. Are other users experiencing the
same thing? From a user experience do you want to eliminate the thumb
pressed state or leave it and change the thumb pressed skin to be the same
color? See the attached image, I think I am pretty close

thanks

 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p41252.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-10 Thread quick6black
also please update the wiki to show in progress on the slider

thanks



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p41253.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-10-14 Thread quick6black
I added IOS7-8 Hslider (scrubber) 

https://issues.apache.org/jira/browse/FLEX-34608?filter=-2






--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p41372.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Best Practices for In-App Purchases

2014-10-17 Thread quick6black
I am working with a client to build an IOS and Android app that will have an
in-app purchase for unlocking premium features. 

Just wondering if anyone has any best practices for integration. I am using
the distriqt ANE and my plan is to create a local SQLite table to store the
purchase information. Once a row has been written the features will be
unlocked.  



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Best-Practices-for-In-App-Purchases-tp41474.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-10-21 Thread quick6black
would it make sense to make an Android one with the new skins and publish
that in the play store? I have a fork of that project that I made some
changes too. I could update and publish in the play store



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p41608.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-10-21 Thread quick6black
I was planning on adding in some missing components and examples, like the
Hslider and geolocation. I also started to cleanup the layouts and merge in
some code from  here

  
Do we have any Android users that would be willing to test once I have a
nice working version? 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p41658.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-10-23 Thread quick6black
see attached, I uploaded a rough copy. I added in all the skins, redid the
slide out menu. Added the ability to drag the menu out from the left. I
still need to fix the layout views, add in a splash screen, and a new icon
to pop out the menu. Also a suggestions on a desktop icon would be
appreciated. Once complete I can submit the source code as a JIRA ticket and
also update my github page. 

TourDeFlexMobile.apk

  



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p41738.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-10-28 Thread quick6black
thanks for the suggestions, I should have some time to make some revisions
this week. I will look at some of the mapping API's. I use the ESRI one a
lot, but will look at some of the other ones. 

Aaron



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p41899.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-10-31 Thread quick6black
Here is an updated version. Right now all the layouts are fixed, splash
screen is added, desktop Icon added, created a new icon for the slide out
menu, and reskinned the mobile grid. I still need to add in the map for
geolocation, and looking for content for the landing page. Any suggestions,
ideas, or samples would be appreciated. 

thanks,

Aaron

TourDeFlexMobile.apk

  



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p41975.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


[GitHub] flex-examples pull request: updated version of the tour de Flex mo...

2014-11-04 Thread quick6black
GitHub user quick6black opened a pull request:

https://github.com/apache/flex-examples/pull/1

updated version of the tour de Flex mobile app 

This has a number of layout fixes, a few new pages created, and also shows 
off the new Android Skins

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/quick6black/flex-examples develop

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/flex-examples/pull/1.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1


commit e3f1be9eab3ceb343abe4b0d68712827d469ec94
Author: nasha001 
Date:   2014-01-07T17:56:52Z

added a slide to open and mouse drag to close

commit f8cbf633648cf1205f1719d753de387179348994
Author: nasha001 
Date:   2014-01-07T21:33:23Z

code clean up

commit e7203ce8fb4f7813dc42310dd4dbd02f4ca3b1f8
Author: nasha001 
Date:   2014-01-07T21:43:38Z

code clean up and credit to Madcomponets

commit acc8d96c830c9b5f3907d6332c31b421e0d26974
Author: Aaron Nash 
Date:   2014-01-07T21:50:43Z

Create README.md

commit 424d9f6517a31ec762f0014562d727656165c9e1
Author: nasha001 
Date:   2014-01-08T12:41:58Z

added a busyIndicator to the first page to signify loading

commit e342b75e8d2072cf1ffbbfb72e5e28a351e653bd
Author: nasha001 
Date:   2014-01-08T12:52:40Z

code clean up

commit 7664ee5759f25c109666b5084aca0f0a9ad93d47
Author: nasha001 
Date:   2014-01-08T12:54:14Z

Merge branch 'develop' of
https://github.com/quick6black/flex-examples.git into develop

commit 7b61184afeb0d6420b8a8996530f9f69df733ae5
Author: nasha001 
Date:   2014-01-16T19:40:04Z

added slide to open, uses mousedown events and works off 20 pixels of
the left side of the screen

commit 79edadd62e0910596258ab1957ca879bbae92028
Author: nasha001 
Date:   2014-01-16T19:43:14Z

updated readme, code clean up

commit d2edc8f8616001be46f187673e56773ede549668
Author: nasha001 
Date:   2014-03-04T13:37:52Z

added screen shot

commit b7551ee04084be59078fe6fd668fe7ea2e9fa636
Author: nasha001 
Date:   2014-11-04T17:50:29Z

updates

commit ad8bac5f97d38bb6d10b992f1bb2554cc0429ec7
Author: nasha001 
Date:   2014-11-04T17:58:33Z

updates, new images

commit c9f2496fa94a07067b2d50431a1275a5cf6079e6
Author: nasha001 
Date:   2014-11-04T18:00:50Z

added in Android Skins

commit 2b9d729b1452fd6307aa06b9cdfd977ecbcd8b62
Author: nasha001 
Date:   2014-11-04T18:06:51Z

stack layout position fix




---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Tour de Flex Mobile

2014-11-04 Thread quick6black
I updated my github  here <https://github.com/quick6black/flex-examples>  ,
also created a pull request on the apache examples page  here
<https://github.com/apache/flex-examples/pulls>  . I think I merged
everything in, let me know if you have any issues. I want to add in a few
more examples of Air Native. Once we have this completed, I can compile and
put in google play (unless someone else wants too).

Aaron



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p42095.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


[GitHub] flex-examples pull request: additonal feature and bug fixes

2014-11-12 Thread quick6black
GitHub user quick6black opened a pull request:

https://github.com/apache/flex-examples/pull/2

additonal feature and bug fixes

Issues with some of the images on the layout views, and fixed an issue with 
the drag to open lateral menu. 

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/quick6black/flex-examples develop

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/flex-examples/pull/2.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #2


commit 73bdd4838ae293112135fea1ce921580c5b8e3a6
Author: nasha001 
Date:   2014-11-12T15:54:50Z

some bug fixes

commit 162bada48f1285b722879da5addbe1e942f536c0
Author: nasha001 
Date:   2014-11-12T15:58:00Z

added another air feature




---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] flex-examples pull request: additonal feature and bug fixes

2014-11-12 Thread quick6black
Github user quick6black closed the pull request at:

https://github.com/apache/flex-examples/pull/2


---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] flex-examples pull request: additonal feature and bug fixes

2014-11-12 Thread quick6black
Github user quick6black commented on the pull request:

https://github.com/apache/flex-examples/pull/2#issuecomment-62788603
  
made some more changes creating a new pull request


---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] flex-examples pull request: bug fixes and updates

2014-11-12 Thread quick6black
GitHub user quick6black opened a pull request:

https://github.com/apache/flex-examples/pull/3

bug fixes and updates

added a new page for native features, cleaned up the code, fixed a few 
bugs. added in a slide to close menu and fixed the slide to open remove events. 
Trying to make the user interaction as native as possible

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/quick6black/flex-examples develop

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/flex-examples/pull/3.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #3


commit 73bdd4838ae293112135fea1ce921580c5b8e3a6
Author: nasha001 
Date:   2014-11-12T15:54:50Z

some bug fixes

commit 162bada48f1285b722879da5addbe1e942f536c0
Author: nasha001 
Date:   2014-11-12T15:58:00Z

added another air feature

commit 5ac786208f8372cd7aa958a1163f378c45543685
Author: anash13 
Date:   2014-11-12T20:32:48Z

updated slide to close




---
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 enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-11-16 Thread quick6black
Hi Om,

I have them done, will submit them tomorrow

Aaron



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p42405.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: iOS7 component skinning (was: Re: Apache Flex 4.14 achievements and goals?)

2014-11-17 Thread quick6black
Hi Om,

here is the jira ticket I created for stagedtextinput, stagedtextarea,
textinput, and textarea. 

https://issues.apache.org/jira/browse/FLEX-34641

Let me know if you have any issues. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/iOS7-component-skinning-was-Re-Apache-Flex-4-14-achievements-and-goals-tp40987p42430.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Tour de Flex Mobile

2014-11-17 Thread quick6black
Hi Om,

I created another pull request, this fixes a few bugs and an issue with the
lateral menu sliding out. I also added in a drag to close and a new view for
some more native air features. I would like to create a better landing page,
any ideas?

thanks,

Aaron



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Tour-de-Flex-Mobile-tp41483p42431.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Android Material Design

2015-01-09 Thread quick6black
I started a side project for Android 5 mobile skins. I decide to try to do
everything using actionscript and make it configurable through CSS, doing
this eliminates the need to use FXG files. So far I have made decent
progress.  Here <https://github.com/quick6black/flex-Android-Material-Skins>  
is the github project. I have these components themed
- Actionbar
- Toggle Switch
- Raised Button
- Flat Button
- Circle Button
- HSlider
- Checkbox (using FXG for now) 
- Radiobutton
- Textinput
- Textarea
- TransparentActionButton
- TransparentNavigationButton

<http://apache-flex-development.247.n4.nabble.com/file/n44248/Material.png> 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Android-Material-Design-tp44248.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Android Material Design

2015-01-09 Thread quick6black
Hi Neverbirth was unaware of that, is there a better way to accomplish a drop
shadow that you are aware of?

thanks





--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Android-Material-Design-tp44248p44254.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: Android Material Design

2015-01-09 Thread quick6black
thanks for the info, i originally tried using rectangulardropshadow, which
worked fine, but it was hard to match rounded corners of the new android
buttons. 



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/Android-Material-Design-tp44248p44256.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.


Re: [DISCUSS)] Pull-to-refresh on mobile lists

2015-02-27 Thread quick6black
I would agree that this should be added to the list, would you create a new
component or extend the current list?



--
View this message in context: 
http://apache-flex-development.247.n4.nabble.com/DISCUSS-Pull-to-refresh-on-mobile-lists-tp45273p45288.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.