I'm encoding and decoding a binary string. It's an Adobe Air app I'm writing.
I've imported mx.utils.Base64Decoder;
and mx.utils.Base64Encoder;
I've included tons of libraries and I've even gone to this link http://opensource.adobe.com/svn/opensource/flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/ and downloaded the Base64Decoder.as
and included it as a library. I'm including the framework.swc
as a library too, and I'm able to use Base64Encoder
just fine. But as soon as I uncomment the line
var dec:Base64Decoder = new Base64Decoder();
I cannot build the project. It will tell me that the project has errors and cannot build. does anyone have any clue what could be happening here? I'm so frustrated with this.