Re: [flexcoders] Restrict access to an API to only allowed applications

2011-09-27 Thread Haykel BEN JEMIA
It is not the case here, we only need a way to securely store a secret key and get it once when the application starts. The important thing here is actually to make sure only approved applications can access the API, if the overhead would fullfill the requirement, then it is OK. I can't think of

[flexcoders] SWFLoader - handling 401 response

2011-09-27 Thread Dave Glasser
I'm working with a SWFLoader to load images. If it tries to load an image from a URL that requires authorization, IE pops up a login dialog. This is particularly annoying when there are many SWFLoaders displayed. I'd like it to quietly fail. I'm calling unloadAndStop() when the 401 response

[flexcoders] Reading barcodes

2011-09-27 Thread Richard Rodseth
Can anyone recommend a good strategy for reading barcodes on an AIR 3 mobile app? The as3 port of the zxing library does not appear to have been updated since 2009, but may work well, for all I know. But it occurs to me, that this could also be a good opportunity for a native extension. Any

Re: [flexcoders] Reading barcodes

2011-09-27 Thread James Ong
use ready made libraries from Sourceforge and you can get start faster. On Wed, Sep 28, 2011 at 12:37 AM, Richard Rodseth rrods...@gmail.comwrote: ** Can anyone recommend a good strategy for reading barcodes on an AIR 3 mobile app? The as3 port of the zxing library does not appear to

Re: [flexcoders] Reading barcodes

2011-09-27 Thread Richard Rodseth
Yes, I clearly don't want to do this from scratch, hence the question. Any particular library you recommend? Any in AS3? On Tue, Sep 27, 2011 at 9:43 AM, James Ong yanlile...@gmail.com wrote: ** use ready made libraries from Sourceforge and you can get start faster. On Wed, Sep 28, 2011

[flexcoders] Re: Trying to pass a value to the mxml/swf file from java(android).How?

2011-09-27 Thread Shunmuga
No Saurabh, its not the part of android The flex project contains the mxml application file. flex produces the build in swf format. The following method is used to get the run time arguments in flex side var flashVarsObj:Object = Application.application.parameters as Object; arg1 =

Re: [flexcoders] Re: exclude certain classes from debugging session

2011-09-27 Thread Wouter Schreuders
yes, I'm familiar with watch expressions but they don't really help me with this project, I'm working on a project with thousands of classes and want to monitor the activity taking place in a couple of the classes while excluding the rest. On 26 September 2011 16:59, valdhor

[flexcoders] asdocs blows up.

2011-09-27 Thread aceoohay
I have been using asdoc for a number of years to document a system. Recently I tried to run it to create a new version of the docs and I get the message; Error: Could not create toplevel.xml: Nothing else to provide a clue as to what might be happening. The full command I run is; C:\Program

[flexcoders] What happened to advancedDataGridClasses in sdk 3.6.0

2011-09-27 Thread aceoohay
Whilst trying to resolve my asdoc's issue, I decided to download sdk 3.6.0. I previously had been using 3.5.0. When I try to compile my application I get an error 1064 looking for AdvancedDataGridColumn in my as code. I checked and the import is there; import

[flexcoders] Re: What happened to advancedDataGridClasses in sdk 3.6.0

2011-09-27 Thread aceoohay
Nevermind. I had not downloaded the Datavisualization bit. once I downloaded this the issue went away. Paul --- In flexcoders@yahoogroups.com, aceoohay pauls@... wrote: Whilst trying to resolve my asdoc's issue, I decided to download sdk 3.6.0. I previously had been using 3.5.0. When I

[flexcoders] Re: asdocs blows up.

2011-09-27 Thread aceoohay
While I would still like to understand how to troubleshoot this, it would appear that SDK 3.6.0 doesn't have the problem. Unfortunately it will take a little while to be able to fully switch to 3.6.0. Paul --- In flexcoders@yahoogroups.com, aceoohay pauls@... wrote: I have been using asdoc

Re: [flexcoders] Re: Trying to pass a value to the mxml/swf file from java(android).How?

2011-09-27 Thread Alex Harui
If you produce a Flex/AIR app for Android, it is basically an AIR app and you’d have to launch it and pass it parameters like any other Android app. I’m pretty sure flashvars don’t work on AIR apps in Android. On 9/27/11 6:52 AM, Shunmuga msroh...@yahoo.com wrote: No Saurabh, its not