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



9 Jul
Work Hard, Play Hard
经历了一个多月艰巨的任务以后,首要任务就是让自己放松一下:)
海吃一顿,
抒发感情……
本来还准备了Wii,可是投影仪不争气,几位Game爱好者只好玩起了PSP。
ps.顺便打个广告。我们的目标是打造中国最好的互动团队,如果你怀有与我们一样的梦想,欢迎与我联系。我们现在迫切需要热爱VFX的CG达人,或者能够玩转PV3D的Code Artist加入。与我们一起:Work Hard, Play Hard!
Tags: party
9 Jul
Lavida
ES大众团队6月份的呕心沥血之作:
同时进行的项目还有触摸屏和非接触式触摸屏,当然还有上市会——印象西湖,朗逸天地。

“水上漂”颇有气势
张靓颖在雨中十分敬业地唱了两首歌。
9 Jul
5 Jul
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
Tags: actionscript, embed
1 Jul





