Archive for July, 2008

Verizon Wireless

Verizon_DirectorsCut_Final_web

不错的motion

Verizon Wireless

电影特效公司小全

偶然翻到一本 Cinefex 杂志,觉得那些特效公司在杂志上给自己打的广告挺有意思,收集起来在这里和大家 share 一下。

DSC04492
ILM 花了一整版感谢他们的员工在电影《变形金刚》中的努力工作。

DSC04490
Ghost VFX | reel
下半版的广告是著名的CG教育机构 Gonmon 的。


More...

Secret Project

我们正在为某汽车品牌打造一个全新的互动体验。第一次真正应用了 3D + Live Action 。在技术上和流程控制上对我们的团队都是一次考验,也是一种提升。项目将在7月底上线,敬请期待:)




Work Hard, Play Hard

经历了一个多月艰巨的任务以后,首要任务就是让自己放松一下:)


海吃一顿,


抒发感情……


 

本来还准备了Wii,可是投影仪不争气,几位Game爱好者只好玩起了PSP。

相册

ps.顺便打个广告。我们的目标是打造中国最好的互动团队,如果你怀有与我们一样的梦想,欢迎与我联系。我们现在迫切需要热爱VFX的CG达人,或者能够玩转PV3D的Code Artist加入。与我们一起:Work Hard, Play Hard!

Lavida

ES大众团队6月份的呕心沥血之作:

SNAG-001
Lavida官方网站

同时进行的项目还有触摸屏和非接触式触摸屏,当然还有上市会——印象西湖,朗逸天地。



“水上漂”颇有气势


张靓颖在雨中十分敬业地唱了两首歌。

相册

Roewe 550 Experience Website

六月份的项目之一:

SNAG-000
荣威550产品体验网站

上市会在浦东滨江大道举行,现代感气氛营造的不错~


相册

Embedding Assets with AS3

在AS3中使用元数据嵌入资源的例子:

package
{
	import flash.display.Bitmap;
	import flash.display.MovieClip;
	import flash.display.Sprite;
	import flash.media.Sound;
	import flash.text.Font;
	import flash.text.TextField;
	import flash.text.TextFormat;
	import flash.text.TextFieldAutoSize;
 
	public class Main extends Sprite {
 
		[Embed(source = '../assets/fd-logo.jpg')]
		private var EmbeddedImage:Class;
		private var image:Bitmap;
 
		[Embed(source = '../assets/clip.swf', symbol = 'EmbeddedClipExample')]
		private var EmbeddedClip:Class;
		private var clip:MovieClip;
 
		[Embed(source = '../assets/bird-sound.mp3')]
		private var EmbeddedSound:Class;
		private var sound:Sound;
 
		[Embed(source='../assets/Arborcrest.ttf', fontName='Arborcrest')]
		public var EmbeddedFont:Class;
		private var field:TextField;
 
		public function Main():void {
			image = new EmbeddedImage();
			image.x = 50;
			image.y = 50;
			addChild(image);
 
			clip = new EmbeddedClip();
			clip.x = 200;
			clip.y = 50;
			addChild(clip);
 
			var s:Sound = new EmbeddedSound();
			s.play(0, 1000);
 
			Font.registerFont(EmbeddedFont);
			var style:TextFormat = new TextFormat();
			style.font = "Arborcrest";
			style.size = 45;
			field = new TextField();
			field.autoSize = TextFieldAutoSize.LEFT;
			field.embedFonts = true;
			field.defaultTextFormat = style;
			field.text = "Embedded Font Example";
			field.x = 50;
			field.y = 150;
			addChild(field);
		}
	}
}

注意必须用Flex编译,Flash的编译器自动忽略元数据。

其他参考:

Bit-101 Embedding Resources with AS3

Louis Vuitton Soundwalk

SNAG-000

摄影 + 文案 + 音乐。

LV的这个网站在这个设计和技术流横行的时代显得格外清新脱俗。

http://louisvuittonsoundwalk.com/go/en/home/

Close
E-mail It
Socialized through Gregarious 42