[flexcoders] Identifying AIR application instance

2008-11-27 Thread ilya_persky
Hi! If anybody knows how to handle such kind of issue?.. I'm developing an AIR application, which will be installed from website. By some buisness reasons (related to licensing model), the customer wants to keep track on all copies of app installed. That is every time after launch the app

RE: [flexcoders] Identifying AIR application instance

2008-11-27 Thread Claudio M. E. Bastos Iorio
.. ___ Claudio M. E. Bastos Iorio http://www.blumer.com.ar/ http://www.blumer.com.ar From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ilya_persky Sent: Thursday, November 27, 2008 6:37 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Identifying AIR application instance

Re: [flexcoders] Identifying AIR application instance

2008-11-27 Thread Fotis Chatzinikos
Do they have to login to either get or use the application? If yes, you can associate a unique key with every login and pass this from the app to the server On Thu, Nov 27, 2008 at 10:37 PM, ilya_persky [EMAIL PROTECTED] wrote: Hi! If anybody knows how to handle such kind of issue?.. I'm

Re: [flexcoders] Identifying AIR application instance

2008-11-27 Thread Weyert de Boer
You could make a constant class and then re-compile and package a AIR file for each download of the application. Or you can the easy way and generate a unique identifier and store it somewhere like encrypted store when the application is first launched. After you can always pass along the

Re: [flexcoders] Identifying AIR application instance

2008-11-27 Thread gabriel montagné
On Thu, Nov 27, 2008 at 6:53 PM, Weyert de Boer [EMAIL PROTECTED] wrote: You could make a constant class and then re-compile and package a AIR file for each download of the application. [...] In the same spirit you could, perhaps, bake the ID as one of the compiler arguments of your AIR swf,