as3corelib icon indicating copy to clipboard operation
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...

Results 104 as3corelib issues
Sort by recently updated
recently updated
newest added

What steps will reproduce the problem? 1. Generate the HMAC-SHA1 signature with the string as "timestamp=07102011162458131&rand=0.5191447692923248" using any HMAC-SHA1 key on a windows machine and then on Ubuntu JAUNTY. You...

MD5.digest.endian is a ByteArray object, and it's default endian is BIG_ENDIAN. according to the RFC1321 "APPENDIX A - Reference Implementation"(http://www.faqs.org/rfcs/rfc1321.html), it should be LITTLE_ENDIAN. ``` static void Encode (output, input,...

Originally filed by snambi on 2009-04-20T21:18:10 This is not a bug. I have used maven to build the as3core lib. Maven makes it very easy to distribute as3core binaries to...

Originally filed by darron.schall on 2006-12-29T20:44:29 What steps will reproduce the problem? 1. trace( JSON.encode( new Date() ) ); What is the expected output? What do you see instead? The...

Priority-Medium
Type-Defect
OpSys-All
JSON
Date

After commenting one line with // it says "Error parsing JSON: Unexpected end of input". When the comment is at the end then the JSON code is valid. Example: {...

hi, I am a newbie to flex and I get the following error when trying to run the sample example using Web application to launch. Is that url still valid?...

It would be nice to build the SWC including docs for a better code completion (and also setting 'optimize' to false).

The ASDoc compilation fails in the build.xml, from the command line, and via an External Tool in both sdk's 3.5 and 4.1.0. (note, one must use aasdoc to include the...

This line (638) in URI's isDirectory method: `return (_path.charAt(path.length - 1) == '/');` should be `return (_path.charAt(_path.length - 1) == '/');` Since **field** `_path` is escaped but **property** `path` is...

Originally filed by gae.local.test on 2010-07-12T05:40:26 _uri1 = new URI("example.txt"); _url2 = new URI("file://C:/path/to/aDifferentExample.txt"); _uri1.makeAbsoluteURI(_url2 ).toString() returns the string "file://c/path/toexample.txt" expected output --> string "file://c:/path/to/toexample.txt" (notice the colon in c:/)...