Re: WSSE WebServices

2013-06-21 Thread Stephen C
this._ws.wsdl = this.GetServiceURL("credit") + '?wsdl'; this._ws.loadWSDL(); var op:Operation = Operation(this._ws.getOperation(Service)); op.addEventListener("result",CallBack); op.request = Param; op.send(); Thank You, Stephen C -All of my email addresses go to

android intents

2013-07-13 Thread Stephen C
I am looking for an example to send an android intent to another application. I have found this http://blog.nerdery.com/2013/01/tech-tip-receive-nfc-data-in-an-adobe-air-android-app/for receiving but not sendin. TIA Thank You, Stephen C -All of my email addresses go to the same place -Save Paper

Re: Captive Runtime Export Debug?

2013-07-24 Thread Stephen C
I wrap trace in a function that also put the info in a sharedobject. I have a log viewer in my app that shows past traces for debug in production. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key On Wed, Jul 24, 2013 at 8:50

backends - parse/backendless/roll your own

2013-08-08 Thread Stephen C
in others. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/file/d/0B0JeFeQj5XjkZC0talFuRExyc0E/edit?usp=sharing>

Re: backends - parse/backendless/roll your own

2013-08-08 Thread Stephen C
you set the urlrequest.method to URLRequestMethod.DELETE or URLRequestMethod.PUT Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/file/d/0B0JeFeQj5XjkZC0talFuRExyc0E/edit?usp=sharing> On Thu,

Re: Compatibility - Adobe Flash Builder

2013-08-14 Thread Stephen C
just to clarify, you can update the AIR sdk separately from the flex sdk. So i am using flex sdk 4.6 in fb 4.6 with air 3.8 sdk. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/fil

HOTP TOTP reference.

2013-08-21 Thread Stephen C
I am curious is anyone has hotp or totp reference code. I have been trying to use as3crypto hmac to implement the rfc's and my output does not match theirs. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key&

Re: HOTP TOTP reference.

2013-08-22 Thread Stephen C
I was able to figure it out. I have TOTP and HOTP implemented in as3. https://bitbucket.org/sjc4llc/as3otp Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/file/d/0B0JeFeQj5XjkZC0talFuRExyc0E/e

Re: Preferred way of connecting to MySql

2013-08-25 Thread Stephen C
I originally wrote a restful api with php and mysql to interface with my air app via XML. It was easy enough to write. I have recently moved to parse.com as my cloud db. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<ht

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Do you have a specific problem? My apps run fine in desktop mode on x86. Air does not support metro ui or arm processor like the surface. On Sep 2, 2013 10:57 AM, "Zoltan Iklodi" wrote: > Hi, > > Does anybody have experience in developing application on windows 8 tablet > on flash? > > Thanks, >

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Windows 8 yes, Windows 8 rt no. On Sep 2, 2013 11:18 AM, "Zoltan Iklodi" wrote: > So is that possible to run flex app on flash runtime on windows 8 tablet > like a desktop app? > > > 2013/9/2 Stephen C > > > Do you have a specific problem? My apps run fine in

Re: Windows 8 tablet

2013-09-02 Thread Stephen C
Pro should work. It's an i5 I believe On Sep 2, 2013 12:55 PM, "Jeffry Houser" wrote: > On 9/2/2013 11:10 AM, Stephen C wrote: > >> Do you have a specific problem? My apps run fine in desktop mode on x86. >> Air does not support metro ui or arm processor l

Re: DataGrid with itemRenderer Drag and Drop error

2013-09-05 Thread Stephen C
in your itemRenderer are you doing if(data){} etc... There any many reasons for null data being in a cell. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/file/d/0B0JeFeQj5XjkZC0talFuRExyc0E/edit?

Re: DataGrid with itemRenderer Drag and Drop error

2013-09-05 Thread Stephen C
change it to if(data) albumName.text = data[column.dataField]; Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/file/d/0B0JeFeQj5XjkZC0talFuRExyc0E/edit?usp=sharing> On Thu, Sep 5, 2013 a

Re: Getting "Enter"-Clicked event / Flex Mobile / iOs / spark.skins.mobile.TextAreaSkin

2013-09-10 Thread Stephen C
have you tried listening for all keyboard events on the stage? stage.addEventListener(KeyboardEvent.KEY_DOWN, e.CallBack); Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/fil

Re: Is Captcha needed in Flex application?

2013-09-24 Thread Stephen C
Kidna, there is a video of someone automating Gmail with it. But, there are plenty of mail libraries for scripting languages to automate the email. On Sep 24, 2013 8:21 PM, wrote: > can it click on an auto-generated email link to complete the new user > registration process, for example? > >

Re: Is Captcha needed in Flex application?

2013-09-25 Thread Stephen C
f they sniff HTML to find form > fields and fill them out, they won't be able to do that on Flash as easily > if at all. > > -Alex > > > > > > >- Original Message - > >From: "Stephen C" > >To: users@flex.apache.org > >Sent:

sharing throughs about moving to js

2013-09-25 Thread Stephen C
I tried moving a small air project to a html5 js project. I then realized the layouts are a nightmare and basic tasks in air take twice as long in js. Also, JS has nothing like EncryptedLocalStore for sensitive data. Thank You, Stephen C -All of my email addresses go to the same place -Save

Re: sharing throughs about moving to js

2013-09-25 Thread Stephen C
just sharing to see if its me or if that is the general consensus. I am familiar with jquery, i just find that UI design is easier in flex. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/fil

Re: Send Email with attachment using smtp ssl/tls

2013-10-09 Thread Stephen C
I used sendgrid http interface. Im not sure if they still do this, but you can get a 40k a month free account if you have a rackspace account. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper, think before you print -PGP Public Key<https://docs.google.com/fil

Re: Encrypt in Flex - Decrypt in .NET

2013-10-31 Thread Stephen C
I use this one as it has some bug fixes. https://github.com/timkurvers/as3-crypto You should be able to pass AES between the 2. I do it with PHP. You may have to play with padding and the IV between the Languages. Thank You, Stephen C -All of my email addresses go to the same place -Save Paper

Ane example

2013-11-15 Thread Stephen C
Does someone have an ane shell for android that you can share with me. I've been trying to get a very basic ane working with no luck. A lot of examples are old and I may be converting the projects wrong. I'm using FB 4.6/7