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 guirreri on 2009-04-24T17:29:53 What steps will reproduce the problem? 1. JPGEncoder.encode() stalls an application until it has completed encoding. What is the expected output? What do you...
I am making a fla file to capture image from web camera and saving it. I've downloaded the corelib and now i've written a code but am getting an error...
After using as3corelib in my project getting the following message when trying to edit UI in Design Mode: D:..Projects\Client\libs\as3corelib.swc- DesignAssetLoader.CompleteTimeoutSWC file failed to load. Any component dependent on this SWC...
http://forums.adobe.com/message/3960311
There isn't a metadata bit to add to fields or getters that will allow the encoder to use a specific name. Sometimes, I wan't to use a name that won't...
charCode 160 is also a non-breaking space, could you modify it so that it also trims it? 'if(input.charCodeAt(i - 1) > 32 && input.charCodeAt(i) != 160)'
var u:URI = new URI("http://test.com/"); u.chdir("al%e9atoire/"); currently this breaks (%e9 isn't UTF-8, it's ascii) with an exception from decodeURI http://www.w3schools.com/tags/ref_urlencode.asp http://www.utf8-chartable.de/ The way I fixed this was changing these two...
Because when I try I get compile-time errors: [compc] D:\Work\Dev\Eclipse\repo.as3corelib\src\com\adobe\serialization\json\JSONTokenizer.as(253): col: 24 Error: Syntax error: expecting righ tparen before semicolon. [compc] loc = quoteIndex + 1; [compc] ^ [compc] D:\Work\Dev\Eclipse\repo.as3corelib\src\com\adobe\serialization\json\JSONEncoder.as(297):...
Originally filed by darron.schall on 2006-12-29T21:02:09 What steps will reproduce the problem? 1. trace( JSON.encode( ) ); What is the expected output? What do you see instead? Like Date instance...
An object `o` can have an `internal public var myvar` variable, and `v:XML = classInfo.variable` will correctly report it as a public variable, but `o[ v.@name ]` will fail because...