Archive

Posts Tagged ‘Flash’

Best Game about Milk Ever!

July 7th, 2009
Comments Off

Blog Response to – http://cartoonsmartblog.wordpress.com/2009/07/06/milk-is-gross-but-this-got-milk-site-is-not/

So I checked out CartoonSmart blog as I do most days and it directed me to the coolest milk game I have ever seen or played. Milk has really pushed their product, with some of the best tv commercials and now a very cool game GetTheGlass.com.

Test your skills and see if you can Get The Glass it’s a very cool Flash Game – GetTheGlass.com

My Favorite Commercial

Blog Responses , , , , ,

NVIDIA® Great Hardware Cool Flash Website

July 7th, 2009
Comments Off

I’m a big fan of the NVIDIA Graphics cards in my pc’s even though currently I must admit i have an ATI in my machine, but I plan on upgrading it the near future with a new NVIDIA®.

So I was doing some googling and found out they have a very cool flash website that is worth taking a look at.

http://www.speakvisual.com/#/spotlight

If you have a couple of minutes take a look, I love how they leveraged just about every cool feature of flash, utilizing video within the site as well.

General , , , ,

Flash AS3 – Random Time Pause

May 19th, 2009
Comments Off

When your looking to create a delay say on multiple movie clips so that the animations, play at different times, but you need to have a stop state here’s some code that will make it easier.

This allows you to setup a time delay before playing the next frames so you can have different start times.

stop();
var timer:Timer = new Timer(Math.random() * (10000 – 2000) + 1000, 1);
timer.start();
timer.addEventListener(TimerEvent.TIMER_COMPLETE, hope);

function hope(event:TimerEvent):void{
play();
}

Tips and Tricks ,