Archive for the ‘Flash’ Category

Sound visualizer in Flash

Tuesday, April 28th, 2009

Per Kristian Stoveland held a cool presentation of his Sound Spectrum Analyzer at FUGN (Flash user group Norway) in the beginning of April. Inspired by this session I decided to try this my self.
I remembed seeing a beutifull graphic called “Imagination” made by Paul Neave, which he also had released as open source. So I grabbed my copy of it and tweaked a little bit and instead of mouse interaction I hooked it up with the SoundMixer.computeSpectrum() in Flash. I turned out pretty cool I think!
This is my first attempt so there will be more to come. The source code need to be cleaned up so I will release it later. The awesome soundtrack is by virgill & tasium.

Check it out!

soundvisualizer

Colin Moock, James Patterson and Hoss Gifford with new training video

Saturday, April 25th, 2009

Colin Moock, James Patterson and Hoss Gifford has put out a new training video series called:  “The lost Actionscript 3 weekend”. You can download some free chapters and after watching them I must say I’m going to buy the DVD’s. Use this link to get a discount.

It’s impressive that Colin Moock manage to outtalk both Hoss Gifford and James Patterson, and at the same time! :-)

Check it out!

The lost Actionscript 3 weekend

FOTBM = Flash on the Beach MIAMI

Wednesday, October 29th, 2008

fotb_badge_2.gifI got an email with a big THANK YOU from Flash on the Beach team and I will use this opportunity to say THANK YOU back! I love this conference and it has become very important to me in many ways.

In April 2009 Flash on the Beach is back, this time in Miami. I will dig deep into my (company’s) pocket to get a chance to attend this conference as well. Flash on the Beach in Brighton is now default, no question about it!

Update: Flash on The Beach Miami is unfortunately cancelled! Flash on the Beach in Brighton is still on in September:

Flash on the Beach

Tuesday, September 30th, 2008

 Flash on the beach 2008

I’m currently on Flash on the Beach in Brighton. I were here last year and it strucked me then how well organized this conference was, and I must say it lives up to its reputation this year as well. This year I’m together with Hågen Landsem, which actually was my teacher at school, and of course all the other guys from Norway (and the rest of the world for that matter).

One thing we’ve noticed is that FOTB08 is a little bit more technical than last year; the Flex/Air session is dominating more now. This is a trend that runs the hole Flash community. This was something Hågen and I talked about yesterday, and It was interesting to hear some speakers expressed their concern about this evolution as well. One of the speakers that addressed this was Aral Balkan, he had a very nice session that was both entertaining, inspiring and an eye opener for many I think. He talked about the simplicity of AS1 compared to AS2, and especially AS3 and how this might be negative for the Flash community. That it might leave some of the creative people out of the Flash community, and those are, by my opinion, the most important users of the Flash platform. It is the creative part that has brought Flash to what it is today.

Anyway, we had a short chat when he was done and he really seems like a nice guy. I think it is very important that guys like Aral Balkan speak up about this.

Change the numeric values of two variables without a temp variable

Sunday, August 31st, 2008

I found a nice way to change the numeric values of two variables without the use of a temporary variable. It goes like this:

// set up two variables to play with
var value1:Number = 10;
var value2:Number = 20;

trace("values before");
trace("value1 = " + value1);
trace("value2 = " + value2);

// change values
value1 = value1 + value2; // value1 = 30
value2 = value1 - value2; // value2 = 30 - 20 = 10
value1 = value1 - value2; // value1 = 30 - 10 = 20

trace("values after");
trace("value1 = " + value1);
trace("value2 = " + value2);

It works with all kind of numbers I can think of both negative and positive integers and floting point numbers