Skip to content

CSS Optimizer .9 Released!

CSS Optimizer has been updated to version .9. This update includes a small set of improvements & additions: Improved recursive directory processing Improved compatibility with fie/directory names that contain periods Added support for parsing css information inside <style> tags Added -h option adding support for .html & .htm files In addition to those improvements I’ve written a Cocoa GUI for CSS Optimizer, which can be downloaded on the CSS Optimizer product page. The Cocoa GUI, named CSS Optimizer X, supports many Mac OS X features such as Drag n’ Drop, sheets, and drawers. The source code for CSS Optimizer is updated, I also posted the source code for Color Blender, and CSS Optimizer X. Enjoy!

Continue Reading

Delaying a function call

What I’ve always found a major pain in Flash was delaying a function call from being called for a short period of time. The only reasonable way to do it was to call setInterval() and then clearInterval() after the function was called. I had to keep a intermediate variable to keep the interval id that setInterval() returned. This was a major pain and often ended up in cluttering up my project with code like this: I hate having to make intermediate variable & functions to accomplish really simple task. I came across Tom Rethaller’s schedule() method on proto.layer51.com and it was just what i was looking for except it had some scope issues and wouldn’t allow you to schedule the same function to be called on multiple instances of a object…

Continue Reading

Apple + Intel

I never thought it would happen, but I’m happy it did! Apple is officially switching to Intel processors. I think this is a very good move for Apple, this will allow them to put faster, cheaper processors into Macs. According to the information on the WWDC keynote, developers wont have to do much at all to make their Cocoa based apps work on Intel processors; I’m pretty amazed Apple could pull this off. Most Windows/Linux users are probobly thinking “Now I can run os x on my Dell.” I would suggest that Apple, to the best of their ability, will make this impossible to do…

Continue Reading

Open-Source Flash

Leaps and bounds in progress have been made in the journey towards total open-source flash development. MTASC, Swfmill, Xcode-Actionscript plug-ins, but one thing has been lacking; a resource of information on how to fully integrate all these applications together to create a Flash-IDE-Free development environment. Well, this problem has just been solved by the big players in the Open-Source flash movement by the unveiling of OSFlash.org wiki & mailing list. I’ve added some content to wiki, and many, many other flash developers have added content too. Its already an incredible Open-Source flash resource!

Continue Reading

iPodLinux

I’ve been looking at iPodLinux for awhile now wanting to put it on my 4g iPod, unfortunately iPodLinux does not officially support the 4g’s yet and from looking at previous posts on the iPodLinux forums they will not offer help if can’t figure out how to install it from their directions on their web-site; which were a little too vague for me. Somebody put together exactly the type of directions I was looking for which made it easy, actually almost too easy to install it on my iPod. Thanks to exDev for the great directions! Its pretty cool to have linux on my iPod, the iPodLinux team did a great job on this software- but it’s not near finished…

Continue Reading

CSS Optimizer .7 Released!

After lots of hard work, I’ve finally finished CSS Optimizer V.7. Improvements in this version include: Recursive directory searching support. Specify a directory and use the -r option to optimize all the CSS files contained in the specified folder. Much better filesystem support. New -s & -n options. Better command line argument parser. Download it here. Read the readme that comes with the application for more information on how it works. All the source code is now available for download, if you compile it for windows or linux please send me the binary so i can post it on the product page. Recently, I came across Crockford.com. On his site he has an application called JSMin, which does the same thing as CSS Optimizer; just for javascript…

Continue Reading

Embedded Pixel Fonts in Flash on OS X

Recently, while building my new version of my flash web-site I had a problem with a free pixel font i downloaded from Orgdot. Here were the symptoms of my problem: If I embedded the pixel font it would blur when used with a dynamic text field. The same pixel font would not blur if in a static text field. The pixel font would not blur in a dynamic text field that used system (A.K.A. device) fonts. Flash did not give me any errors when embedding the font. The windows version of the same font caused the Flash IDE to hang when it embedded the font (IE when the movie was published) I was following standard pixel font guidelines, sizes in multiples of 8, integer coordinates, 100% _xscale & _yscale…

Continue Reading