Monday, March 10, 2008
Sunday, February 3, 2008
Thursday, December 13, 2007
blazeDS...FDS is free .................
Can you believe this???
read more
http://labs.adobe.com/technologies/blazeds/
http://blog.simb.net/2007/12/12/
blazeds-adobe-open-sources-flash-remoting-and-messaging-servers/
http://download.macromedia.com/pub/labs/amf/amf3_spec_121207.pdf
http://www.adobe.com/aboutadobe/pressroom/pressreleases/200712/121307BlazeDS.html
read more
http://labs.adobe.com/technologies/blazeds/
http://blog.simb.net/2007/12/12/
blazeds-adobe-open-sources-flash-remoting-and-messaging-servers/
http://download.macromedia.com/pub/labs/amf/amf3_spec_121207.pdf
http://www.adobe.com/aboutadobe/pressroom/pressreleases/200712/121307BlazeDS.html
Wednesday, December 12, 2007
Auto complete texArea
this seems to be nice code ....u get the hint of the text.
http://www.asserttrue.com/articles/2006/04/09/actionscript-projects-in-flex-builder-2-0
http://www.asserttrue.com/articles/2006/04/09/actionscript-projects-in-flex-builder-2-0
Thursday, December 6, 2007
Encrypting Data in AIR
In my current AIR project...I have used MD% algorithm to store the password in encrypted format(which is nothing else but a plain text)..and I every time the application starts I read the textfile ......
But just now read about Encrypting Data in AIR
Now thinking why the heck I used so much encryption and decryption :( when there was something like data Encryption was already available.
http://weblogs.macromedia.com/cantrell/archives/2007/12/encrypting_data.cfm
But just now read about Encrypting Data in AIR
Now thinking why the heck I used so much encryption and decryption :( when there was something like data Encryption was already available.
// Writing encrypted informationdetails here :
var passwordBytes:ByteArray = new ByteArray();
passwordBytes.writeUTFBytes("secretPassword");
EncryptedLocalStore.setItem("password", passwordBytes);
// Reading encrypted information
var passwordBytes:ByteArray = EncryptedLocalStore.getItem("password");
var password:String = passwordBytes.readUTFBytes(passwordBytes.length);
http://weblogs.macromedia.com/cantrell/archives/2007/12/encrypting_data.cfm
Subscribe to:
Posts (Atom)