Else Mobile Motion Graphics

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…

Posted in Uncategorized | Leave a comment

The 8 year project

Summer is coming fast, i’ll be cruising around… 1963 VW bug

Steering wheel is stiff need to replace the kingpins on the spindles. Oh and up a stereo! It gets real quiet when driving!

Continue reading

Posted in Uncategorized | Leave a comment

AS2 MovieClip fader

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;
		}
	};
}
Posted in Uncategorized | Leave a comment

AS3 Timer

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;
		}
		}
	}
}
Posted in Uncategorized | Leave a comment

Next Day Pair

Chew on this sneaker fiends…

http://nextdaypair.tumblr.com


Posted in Uncategorized | Leave a comment

Fresh Moves on Dubstep

Posted in Uncategorized | Leave a comment

Can I Have Your Number – Mad TV

Posted in Uncategorized | Leave a comment

Palos Verdes Cycling Route #1

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!

Posted in Uncategorized | 1 Comment

Le Tour de Death Valley 2009

First Ride with the new Bianchi :)

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

ltddv

WOOOT!

Posted in Uncategorized | Leave a comment

Trash Dance

No words needed…


Trash Dance from Oliver Fergusson-Taylor on Vimeo.

Posted in Uncategorized | Leave a comment