Re: Read PDF file inside AIR app

2021-03-24 Thread quick6black
you can use this nativewebview ane https://github.com/tuarua/WebViewANE





--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Apache Flex Installer

2020-08-20 Thread quick6black
I am having issues with the installer, anyone else experiencing issues?

thanks




--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Flex Installer Issue -- invalid file?

2018-09-20 Thread quick6black
I am getting the same error message with an older version I am trying to
install

Installer path:
C:\Users\nasha001\AppData\Roaming\org.apache.flex.installapacheflex\Local
Store\Win64
Installer version 3.3.2 (windows)
Available Memory: 39682048 (64-bit)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
SDK version Apache Flex SDK 4.14.1
AIR version 18.0
Flash Player version 18.0
Creating Apache Flex home
Creating temporary directory
Downloading Apache Flex SDK from:
http://archive.apache.org/dist/flex/4.14.1/binaries/apache-flex-sdk-4.14.1-bin.zip
Verifying Apache Flex SDK MD5 Signature
The Apache Flex SDK MD5 Signature of the downloaded files does not match the
reference value. The file is invalid, installation is aborted.
Installation aborted:
http://flex.apache.org/track-installer.html?failure=true=Apache Flex
SDK 4.14.1=4.14.1=windows=3.3.2=The Apache
Flex SDK MD5 Signature of the downloaded files does not match the reference
value. The file is invalid, installation is aborted.




--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: [Release] 2 new Radio Apps

2018-09-04 Thread quick6black
glad the material library helped out. For those who are unaware or want to
contribute, it is on github

https://github.com/quick6black/flex-Android-Material-Skins

@leokan23 downloaded the app, new UI looks great. 





--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Android Effects - Poor performance

2018-07-31 Thread quick6black
I have noticed this as well, not sure of a fix. 



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Apache Flex for iOS

2018-07-11 Thread quick6black
I was able to upload an app into Apple App store using a windows machine. I
installed VMWare, was able to patch it and install a version of MacOS.
Probably not the best way to do it, but didn't want to buy a MAC to upload
one app to the App store. BTW this was a few years ago, things may have
changed since. 



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Transparent Actionbar on Mobile

2018-07-09 Thread quick6black
you can put this in the view tag overlayControls="true" and change the
actionbar background alpha to 0. 





--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Life after FlashPlayer, are you prepared?

2018-05-04 Thread quick6black
I just finished a flex app that is browser based, and will probably move it
to desktop soon. I don't want to move it to another framework because I have
some 3rd party API's that are not as developed in other frameworks. Flex
still has everything I need.



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Strange MobileGrid Quirk

2018-01-16 Thread quick6black
I had fix most of the skin issues on a set of skins I published on github,
also removed the gradient. 

https://github.com/quick6black/flex-Android-Material-Skins/tree/master/src/spark/skins/android5




--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Re: Strange MobileGrid Quirk

2018-01-16 Thread quick6black
I had fixed some of the mobile grid header skin issues in a set of skins
published on github, also gotten rid of the gradient 

https://github.com/quick6black/flex-Android-Material-Skins/tree/master/src/spark/skins/android5





--
Sent from: http://apache-flex-users.246.n4.nabble.com/


Compiling FlexJS

2017-09-11 Thread quick6black
I have been trying to compile and test some of the sample applications with
FlexJS. I downloaded the latest version 0.9 with flash and Air 23.0

I am using flash builder and get this error message which tells me nothing

"An internal build error has occurred. See the error log for more
information."

Location = line -1

When i try to run it, i get "The file does not exist for the external tool
named FlexJS ({name of the compiler})."

any thoughts?



--
Sent from: http://apache-flex-users.246.n4.nabble.com/


FlexJS Installer

2017-08-04 Thread quick6black
Tried installing the FlexJs 0.8 through installer 3.2.0 on a windows 7
machine and it just hung up. Below are the logs, any input would be
appreciated. I tried with flash player 23 and 24, also tried FlexJs 0.7 with
the same behavior. Tried on 2 different machines. 

Installer version 3.2.0 (windows)
Using Locale: en_US
Fetched the SDK download mirror URL from the CGI.
SDK version Apache FlexJS 0.8.0
AIR version 25.0
Flash Player version 25.0
Creating Apache FlexJS home
Creating temporary directory
Downloading Apache FlexJS
from:http://download.nextag.com/apache/flex/flexjs/0.8.0/binaries/apache-flex-flexjs-0.8.0-bin.zip
Verifying Apache FlexJS MD5 Signature
The Apache FlexJS MD5 Signature of the downloaded files matches the
reference. The file is valid.
Uncompressing: C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64
Bit)\sdks\flexJS_0.8\temp\apache-flex-flexjs-0.8.0-bin.zip
Finished uncompressing: C:\Program Files\Adobe\Adobe Flash Builder 4.7 (64
Bit)\sdks\flexJS_0.8\temp\apache-flex-flexjs-0.8.0-bin.zip




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


Re: StageText appears above popup (Flex)

2017-05-04 Thread quick6black
try the scrollingstagetextinput skin



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/StageText-appears-above-popup-Flex-tp15169p15183.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: MobileGrid Skins

2017-04-12 Thread quick6black
1. the text is center aligned because ButtonSkinBase has "protected var
useCenterAlignment:Boolean = true;"

if you add this line of code  "useCenterAlignment = false;"  into
ButtonBarButtonSkin after super(); it will align the text to the left. 

2. if you want to change the row height you will need to create a new
LabelItemRenderer and reference that in the MobileGridSkin.





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


Re: MobileGrid Skins

2017-03-28 Thread quick6black
In my github repository there are new skins that flatten the header. 

Here
<https://github.com/quick6black/flex-Android-Material-Skins/tree/master/src>  
is the link to the repository 

Here
<https://github.com/quick6black/flex-Android-Material-Skins/blob/master/src/views/View6.mxml>
  
is a link to a sample view





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


Re: MobileGrid Skins

2017-03-09 Thread quick6black
this question was asked a few posts above. Follow the link to the github
repository and use those skins in your project, they remove the shadow and
flatten the header. If you do not need the header then why not just use a
mobile list?



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


Re: MobileGrid Skins

2017-03-08 Thread quick6black
sorry about that just added in labelitemrenderer, I had it in the animations
branch forgot to upload it to the master branch. 



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


Re: MobileGrid Skins

2017-03-07 Thread quick6black
I posted a new skin for the mobile grid on github 

https://github.com/quick6black/flex-Android-Material-Skins

it replicates the android material design



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


Re: Mobile DateChooser Flex

2017-03-06 Thread quick6black
You welcome for the buttons, would be interested in helping. I am finishing
up a mobile alert skin and a new date picker was on my radar. 



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


Re: Map and Phone apps on Mobile

2017-02-07 Thread quick6black
this works for me, it asks you for the default mapping app on Android. Using
the method used to work on IOS until they switched to apple maps. If you
install google maps for IOS it will also work.

navigateToURL(new URLRequest('https://www.google.com/maps/...));



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Map-and-Phone-apps-on-Mobile-tp14632p14636.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Native TextInput Skin and resizeForSoftKeyboard

2016-05-19 Thread quick6black
I tested on a 2nd gen Moto X with Android 5.1 and Air 21 Apache Flex 15 using
your exact code


 



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Native-TextInput-Skin-and-resizeForSoftKeyboard-tp12720p12731.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Native TextInput Skin and resizeForSoftKeyboard

2016-05-19 Thread quick6black
I just tested with your code and did not see the same results. What version
of Air are you using? I am on 21



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Native-TextInput-Skin-and-resizeForSoftKeyboard-tp12720p12729.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Native TextInput Skin and resizeForSoftKeyboard

2016-05-19 Thread quick6black
I would use the Scrolling stage Text input skinclass 





--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Native-TextInput-Skin-and-resizeForSoftKeyboard-tp12720p12722.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Flex skin implementing material design out there?

2015-05-14 Thread quick6black
I just updated the button skins in the repo to remove the dropshadowfilter
and use RectangularDropShadow. I will probably be moving the toggleswitch
back to fxg, been tied up with other work. 



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-skin-implementing-material-design-out-there-tp8959p10345.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: What's with my FB

2015-04-01 Thread quick6black
run Clean in your project before you run it



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/What-s-with-my-FB-tp9946p9979.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Missing image for iPhone 5

2015-02-26 Thread quick6black
is there a more to the error than missing image? I had an error message when
uploading an IPA to connect and the message was telling me I needed to have
an image in the root folder of the my app for loading on an iphone 5. I
labeled the image default-568.png and the dimensions are 640x1136, after I
copied the image the error message went away.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Missing-image-for-iPhone-5-tp9689p9697.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: iOS 8.1 Crash Issue

2015-02-05 Thread quick6black
I had an unexplainable crash on app load with IOS 8, the crash logs indicated
it was related to an updated ANE. Worked with the developer of the ANE and
could not resolve the issue. I ended up creating a new project and magically
the error went away. 



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/iOS-8-1-Crash-Issue-tp9534p9538.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: AlivePDF Date Formatter

2015-01-20 Thread quick6black
this is what I do to timestamp the bottom of my report


fx:Declarations
mx:DateFormatter id=dateFormatter formatString=MM/DD//
/fx:Declarations

myPDF.addText('Printed:' + dateFormatter.format(now.toLocaleDateString()),
180, 10);



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/AlivePDF-Date-Formatter-tp9435p9440.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Flex skin implementing material design out there?

2015-01-12 Thread quick6black
I can probably do that later on in the week, looking into alternatives to the
drop shadow filter I was using on the toggle switch and button skins.
Neverbirth updated me on the performance issues and non GPU rendering


thanks,

Aaron



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-skin-implementing-material-design-out-there-tp8959p9377.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Flex skin implementing material design out there?

2015-01-09 Thread quick6black
I started a repository on github for material design skins replicating
Android 5. Here is the link

https://github.com/quick6black/flex-Android-Material-Skins





--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-skin-implementing-material-design-out-there-tp8959p9368.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: reports

2014-12-16 Thread quick6black
I use alivePDF to generate reports. 



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


Re: Flex skin implementing material design out there?

2014-12-08 Thread quick6black
Are you referring to a new skin set for mobile? If so, I agree we should
start working material design for mobile.  Here
https://github.com/apache/flex-sdk/tree/develop/frameworks/projects/mobiletheme/src/spark/skins
  
is a link to the IOS7 and Android4 skins that we Om and myself has been
working on.



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Flex-skin-implementing-material-design-out-there-tp8959p9014.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Load Native FB app from AIR mobile IOS

2014-09-26 Thread quick6black
I am trying to bring up a native Facebook feed from an air mobile app with no
success. The code works fine on Android, but on IOS it opens the native app
but will not load the users page. I am using this as a URL request
fb://pages/{users ID}

tried an IOS 7 and IOS 8, phone and tablet with no success. Has anyone else
had a problem or been able to accomplish this?

thanks,

Aaron



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Load-Native-FB-app-from-AIR-mobile-IOS-tp8173.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: mobile NumericStepper

2014-08-04 Thread quick6black
there is a nice one posted on github from group that has made some great
mobile components. 

https://github.com/People-in-action/eskimo




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


Re: IOS 7 and Android 4.3 Skinning

2014-05-23 Thread quick6black
There is a nice project posted on Github that has some great Android
actionscript skinning, the user also build a responsive navigator. This
might help in your Android Skin creation.

link
https://github.com/lheberlie/building-mobile-apps-flex/tree/develop/apps/mobile-map-boilerplate
  





--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/IOS-7-and-Android-4-3-Skinning-tp6568p6585.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: IOS 7 and Android 4.3 Skinning

2014-05-23 Thread quick6black
some of it is, I was able to pull a number of the components out and
integrate them into my project. 
-Actiobar
-Horizontal Slider
-Button
-Check Box

I am using a number of the skins in one of my projects and they look great. 






--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/IOS-7-and-Android-4-3-Skinning-tp6568p6588.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Documentdirectory IOS

2014-03-21 Thread quick6black
I have been working on a Flex Mobile application to run specifically on IOS.
The app connects to a PHP service and replicates a SQLite table as well as
downloads the contents of 2 folders (PDF's and Images) to the IOS device. I
have been packaging and running the app without any issues. Files download,
database gets written and everything works as expected. So I do a release
build and use an enterprise provisioning file for the client I am working
with, then I download and test the app. The app will initiate the download,
run though downloading everything. Once its complete there is no data, if I
initiate the download again it will run through the whole process again like
the directory is empty. 

I started development using the applicationstoragedirectory and initially
thought the Apple folder permission guidelines were causing some kind of
issue on the release build, so I moved to the documentsdirectory. I
experience the same behavior using both directories, on a standard build no
issues, on a release build the application acts as if the directory is
empty. Has anyone else experienced similar behavior or have any idea on any
permissions I can edit for the release build?

thanks in advance. 



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


Re: Mobile Facebook-like slide menu

2014-03-03 Thread quick6black
I was able to implement that concept into a project. I forked the Tour de
Flex example and integrated some code into it to accomplish that workflow. I
used a mouse events, I posted the source code  here
https://github.com/quick6black/flex-examples  



--
View this message in context: 
http://apache-flex-users.246.n4.nabble.com/Mobile-Facebook-like-slide-menu-tp4393p5269.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.


Re: Google Maps API for flex

2013-08-19 Thread quick6black
I would try the ESRI Flex API,  here https://developers.arcgis.com/en/flex/  
is a link. I have done a few mobile and a lot of web applications. There is
a lot of sample code on their site and they have a good sample viewer to
start. 



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