Imagey Nation
Sunday, February 14th, 2010This is the new site I have built for Imagey Nation a creative production studio delivering high-end CGI, live-action, photo-retouching, and post production for the film, music and advertising industries.
This is the new site I have built for Imagey Nation a creative production studio delivering high-end CGI, live-action, photo-retouching, and post production for the film, music and advertising industries.
Last week I found myself needing to convert a colour image to black and white and here’s how I did it!
import flash.filters.ColorMatrixFilter; import fl.motion.AdjustColor; //========================== var color : AdjustColor; var colorMatrix : ColorMatrixFilter; var matrix : Array; var filterBW : Array; color = new AdjustColor(); color.brightness = 20; color.contrast = 20; color.hue = 0; color.saturation = -100; matrix = color.CalculateFinalFlatArray(); colorMatrix = new ColorMatrixFilter(matrix); filterBW = [colorMatrix];
Now we can set the .filters property of our image to be filterBW, and shazam you have a black and white image.
I have been thinking about building a visualiser since 2003 (when I saw one on www.2advanced.com) and have finally found the time to look into AS3′s computeSpectrum as well as Richard Lords’ FLiNT Particle System and came up with this example which uses Jamie T’s – The Man’s Machine (which you can buy here).
Just recently I had some time and decided to take a look at the flash api for google maps. Initially I didn’t have a plan, I just wanted to start using the api, but once I realised how easy it was to get setup I thought I should try and do something a little bit more interesting, so I decided to see if I could track and tag myself across London.
www.fashionair.com is all about well… fashion, reading about it, talking about it, watching it,and buying it. The site has lots of dynamically driven, CMS managed flash pages with tons of lovely videos and imagery. It has a massive selection of products to browser through and buy which are linked to across the site from blogs, articles, and videos.
You’d think that there would be a way to clear BitmapData maybe something like BitmapData.clear(), but when is anything that simple. So far the best I’ve come up with is…
The brief on this one was to build an iTunes-esque coverflow to showcase Miomni’s IPTV channels, each cover needed the ability to display images, videos, and some information about the channel.
When flash is embeded within a HTML page it doesn’t by default have focus, this means it won’t capture things such as keyboard interaction. However there is a very simple fix using swfObject to embed your flash movie and a simple bit of Javascript.
Add this javascript function to your header..
Why is it when just when you think a project is almost there some kind of nasty bug rears its ugly head, thats what happenned to me today when I uploaded my swf to the test server for the first time and tested it in the browser.