Else Mobile Motion Graphics

16/02/2010

It’s been so long i haven’t posted anything but this is too good not to post. A huge collaboration between TVG and Rob Chui  - Else Mobile.

Check it out.

Else Mobile (The Time Has Come) from Rob Chiu on Vimeo.

“Created for Else Mobile Phones as half viral campaign, half official website content and commissioned by The Visionaire Group in LA. ‘The Time Has Come’ acts as an intro for the new mobile device. The entire campaign was shot on location in downtown LA and California.

Directed, Edited, Composited and Graded by Rob Chiu.
Producer Maria Park for The Visionaire Group, Production Company The Visionaire Group, Director of Photography Eric Koretz, 1st Camera Assistant Rob Kraetsch, 2nd Camera Assistant Dave Edsall, Gaffer Henry Dhuy, Grip Aryeh Kraus, Creative Director Jeff Lin for The Visionaire Group, Animators (for TVG) Chris Wang, Francisco Camberos, Anthony Possobon, Score and Sound Effects Ben Lukas Boysen, Storyboard Artist Jason Badower.”

Will be posting behind the scenes photos soon…

No Comments

AS2 MovieClip fader

23/12/2009

In the world of advertising sometimes your required to produce these wonderful 40k-30k flash ads using tons of images and fonts. I know we all get exited about those but settle down.

We can’t always import tweening engines, because even 4.7k is too much (Tweenlite). I’m not ragging on Greenshock, actually i use it myself and love it, but of course publishers wont budge on 40k. In the day’s of 56k i understand but tons of people are on broadband already! That’s a whole other discussion so without any further ado ::drumroll::, i present my simple fading function. tadddaa!

Quick & dirty AS2 fade function… (rollover to test)

This movie requires Flash Player 9

Obviously you can expand on it by adding different properties but this is basic fading.

/* ------------------------------------------------------------------------- */
// BASIC FADE FUNCTION
 
// @ AUTHOR - Fancisco Camberos
// @ EMAIL - Francisco@1984interactive.com
 
//Copyright (c) 2009 Fancisco Camberos, 1984interactive
 
/* ------------------------------------------------------------------------- */
 
// fadeIt(direction:String,target:Movieclip,fadeSpeed:Number)
 
function fadeIt(dir:String, tar:Object,fadeSpeed:Number):Void {
	onEnterFrame = function () {
		switch (dir) {
			case 'on' : tar._alpha += Math.round(fadeSpeed); break;
			case 'off' : tar._alpha -= Math.round(fadeSpeed); break;
		}
		if (tar._alpha >= 100 || tar._alpha <= 0) {
			delete onEnterFrame;
		}
	};
}
No Comments

AS3 Timer

16/06/2009

Simple AS3 Timer Example with a stop button.

This movie requires Flash Player 9

package {
import flash.utils.Timer;
import flash.events.TimerEvent;
import flash.display.MovieClip;
import flash.events.MouseEvent;
 
public class TimerExample extends MovieClip {
 
	var sW:Number = stage.stageWidth;
	var sH:Number = stage.stageHeight;
 
	public function TimerExample() {
 
		//add timer mc
		var t:timer_mc = new timer_mc();
		addChild(t);
		t.x = sW*.5;
		t.y = sH*.5-50;
		//add btn
		var btn:b = new b();
		addChild(btn);
		btn.x = sW*.5;
		btn.y = sH*.5;
		var myTimer:Timer = new Timer(500);
		myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
		myTimer.start();
		btn.addEventListener(MouseEvent.CLICK, stopTimer,false,0);
		btn.buttonMode = true;
 
		function stopTimer(e:MouseEvent){
		myTimer.stop();
		}
 
		function timerHandler(et:TimerEvent) {
			trace(myTimer.currentCount);
			t.t_txt.text = ' myTimer.currentCount ' + myTimer.currentCount;
		}
		}
	}
}
No Comments

Next Day Pair

8/05/2009

Chew on this sneaker fiends…


http://nextdaypair.tumblr.com

No Comments

Fresh Moves on Dubstep

14/04/2009

No Comments

Can I Have Your Number - Mad TV

13/04/2009

No Comments

Palos Verdes Cycling Route #1

5/04/2009

OH Yes, Nice Sunday ride. No pictures but a heck of a ride. Well only one ;)

A friendly 31 mile route, nice steep hills, switchbacks and an incredible view of the coast.

(Crappy razr photo) :/

View


View Larger Map
Death Valley Coming SOon!

1 Comment

Le Tour de Death Valley 2009

29/03/2009

First Ride with the new Bianchi :)

Full write-up coming soon…Videos & photos :)

ltddv

WOOOT!

No Comments

Trash Dance

30/01/2009

No words needed…


Trash Dance from Oliver Fergusson-Taylor on Vimeo.

No Comments

Classic Fresstyles

21/01/2009

Off the top I will always go back to these classics…

This one’s just hillarious

No Comments