MyStickies: still alive and kicking

I created a service with a FireFox plugin a couple of years ago called MyStickies with Derek Andriesian. We got going on it and did quite a bit, but then we weren’t sure how to monetize it, so we left it alone. However, it still seems to be alive and kicking. I just got an email from Suzane Smith letting me know she included it in a list of 100 Firefox tips for research. You may notice that MyStickies is number 20, and the first one listed under the “Best Addons” section. I’d like to move it over to Google App Engine and add note sharing sometime. Again, without monetization...read more

Serializing display objects

Ha! I serialized a display object. Didn't think it could be done, but with a little work it can be. See my previous post about overriding Transform and Matrix objects for a little more context. I'm jumping right in to how I did it. So the main problem before was the Transform class requiring a parameter in its constructor. So I subclassed Transform and made that parameter optional. Turns out if you pass in null to the superclass you get an error too, so if no displayObject is passed in I use a Shape. (I figured it was one of the cheaper display objects to make, though between that and Bitmap I'm...read more

Overriding Flash’s Transform and Matrix

I'm building a a commercial library for scrap-book or other composition type applications and it would be useful to be able to override the flash.geom.Transform and flash.geom.Matrix classes with my own. So I played around with it for awhile and thought I'd share what I found. First I tried setting my own matrix. I know that when you access displayObject.transform.matrix you get a clone of the object's transform matrix, so I create a test class called MyMatrix. public class MyMatrix extends Matrix {     public function MyMatrix(a:Number=1, b:Number=0, c:Number=0, d:Number=1,...read more