There are some time ago, we have developed an AS3-AIR class, for reading and writing Windows bitmap file. MswBMPCodec.as Class file content : package msw.asBitmap { import flash.display.BitmapData; import flash.filesystem.File; import flash.filesystem.FileMode; import flash.filesystem.FileStream; import flash.utils.ByteArray; import flash.utils.Endian; public class MswBMPCodec { private const MASK : int = 0xFF; public var FileData : Object; //**************************************************** [...]
There are some time ago we have developed a AS3-AIR class for the ZIP format. Class MswUnZip.as file content : // ****************************************************************** package msw.asUnzip { import flash.events.Event; import flash.events.EventDispatcher; import flash.events.ProgressEvent; import flash.filesystem.*; import flash.utils.ByteArray; import flash.utils.CompressionAlgorithm; import flash.utils.Endian; import flash.utils.setInterval; import flash.utils.clearInterval; // ********************************************** // ZIP Header // ********************************************** // file header signature (4 [...]
Who has never been confronted with the html indentation ? you either! but when it comes to finding the end of a tag « div » in a complex architecture, it can become more than a rough spot. That’s why I made a small AIR application that can compensate for this. A screenshot of the application: You [...]
Continue reading about « Indentateur » for html files (and others !) »