as3corelib
as3corelib copied to clipboard
An ActionScript 3 Library that contains a number of classes and utilities for working with ActionScript? 3. These include classes for MD5 and SHA 1 hashing, Image encoders, and JSON serialization as...
Originally filed by bsimpson on 2009-05-29T22:53:38 Workaround: In JSONEncoder.as: - Remove make parameter a untyped in arrayToString, like so: ``` private function arrayToString( a ):String { ``` - Add this...
Originally filed by arieljake on 2009-05-07T01:59:28 I just upgraded my encryption mechanism to the EncryptionKeyGenerator, partly so my QA can open the database of the application we are developing in...
Originally filed by [email protected] on 2009-03-17T10:39:43 What steps will reproduce the problem? - First Step : Creation of the JSON File I use PHP and json_encode() function to encode an...
Originally filed by steve.raiff on 2009-03-10T18:00:16 What steps will reproduce the problem? 1. Create a json packet where a right brace "}" is within a string 2. parse it 3....
Originally filed by NielsBjerg on 2009-03-03T16:02:08 What steps will reproduce the problem? 1. run example from http://help.adobe.com/en_US/AIR/1.5/devappsflex/WSAD329515-CBF1-4658-8DD7-CAC9C354CE94.html or http://www.adobe.com/devnet/air/flex/quickstart/encrypted_database.html 2. 3. What is the expected output? I was expecting the...
Originally filed by marcspeck on 2009-02-12T13:59:36 As noted in the specs, both formats are allowed and identical: 1994-11-05T08:15:30-05:00 1994-11-05T13:15:30Z The attached patch adds support for the second format. Note that...
Originally filed by marcspeck on 2009-02-12T13:43:55 What steps will reproduce the problem? var d:Date = DateUtil.parseW3CDTF("1994-11-05T08:15:30.045-00:00"); "1994-11-05T08:15:30.45-00:00" == DateUtil.toW3CDTF(d,true); Note the missing 0 in milliseconds See patch with updated DateUtil.toW3CDTF()...
Originally filed by fernando.florez on 2009-02-02T01:52:41 What steps will reproduce the problem? 1. Create a class "Test" 2. Create a normal property and a "namespaced" property 3. Compiler will exit...
Originally filed by xanxander on 2009-01-26T13:02:29 I'm new to this project and wanted a detailed overview of what's in the library, didn't find it. "Array, String, Date, Number and XML...
Originally filed by slavi.marinov on 2009-01-21T10:52:58 Repro steps: 1. Try to JSON.encode(): JSON.encode(new Crash()); an object of this class: class Crash { public function get copy() : Crash { return...