<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/css" href="css/atom.css"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title type="html"><![CDATA[LevinChiu官方博客]]></title><subtitle type="html"><![CDATA[带着LEON去流浪!]]></subtitle><id>http://levinchiu.com/blog/</id><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/"/><link rel="self" type="application/atom+xml" href="http://levinchiu.com/blog/atom.xml"/><generator uri="http://www.rainbowsoft.org/" version="1.8 Devo Build 80201">RainbowSoft Studio Z-Blog</generator><updated>2009-11-06T17:31:16+08:00</updated><entry><title type="html"><![CDATA[35个强大的UI设计教程]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=2" label="设计相关"/><updated>2009-11-06T17:30:09+08:00</updated><published>2009-11-06T17:30:09+08:00</published><summary type="html"><![CDATA[<p>下面是35个非常不错的UI设计的的教程及效果图，非常不错哦。不但教你如何做一些特效，同样教你如何做UI**和界面设计。当然，他们风格迥异，也基本上都是Web页面上的。都非常不错。希望你喜欢。（点击下面的图片可以打开相关的教程）</p><p><a href="http://www.talk-mania.com/web-layouts/43999-old-paper-layout-great-portfolio-layout.html" nclick="pageTracker._trackPageview('/outgoing/www.talk-mania.com/web-layouts/43999-old-paper-layout-great-portfolio-layout.html?referer=http://cocre.com/?m=200904&amp;paged=5');"><span style="color: #000000; background-color: #e0f6ff">Old Paper Layout<br />...</p></span>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/UI.html"/><id>http://levinchiu.com/blog/post/UI.html</id></entry><entry><title type="html"><![CDATA[《AS3从入门到精通》 笔记]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=4" label="flash AS3.0"/><updated>2009-09-13T23:50:35+08:00</updated><published>2009-09-13T23:50:35+08:00</published><summary type="html"><![CDATA[1.AS3的虚拟机叫AVM2，而早期的AS使用的是AVM1，所以效率上AS3比早期版本快了10倍；<br/>2.舞台的名字叫state,主时间轴的名字叫root<br/>3.当trace()函数输出变量时，会自动调用toString()方法<br/>4.写在帧里面的变量都是在MainTimeLine的类里，并且MainTimeLine是动态类，而root是该类创建的对象，所以这些变量都变成了root的属性，可以用 root.xxx 来访问<br/>5.Stage不是动态类，所以不能给他创建属性，例如stage.xxx就不行了<br/>6.时间轴的方波顺序是在同一时间轴而不同图层中，同一帧上的代码由上到下执行；在同一图层上，按照包含这些代码的帧在时间轴上出现的先后顺序排列<br/>...]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/26.html"/><id>http://levinchiu.com/blog/post/26.html</id></entry><entry><title type="html"><![CDATA[flash倒影纯AS实现(as2.0]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=5" label="flash"/><updated>2009-08-19T15:17:18+08:00</updated><published>2009-08-19T15:17:18+08:00</published><summary type="html"><![CDATA[<p>[code]</p><p>import flash.geom.Point;<br />import flash.geom.Matrix;<br />import flash.display.BitmapData;<br />function createRef(p_source:MovieClip) {<br />&nbsp;var bd:BitmapData = new BitmapData(p_source._width, p_source._height, true, 0);<br />...</p>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/25.html"/><id>http://levinchiu.com/blog/post/25.html</id></entry><entry><title type="html"><![CDATA[AS 3.0 把MC用数组存放]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=4" label="flash AS3.0"/><updated>2009-08-15T18:25:18+08:00</updated><published>2009-08-15T18:25:18+08:00</published><summary type="html"><![CDATA[<textarea class="code" rows="10" cols="50">
var&nbsp;a:Array=[mc,maskMc];
function&nbsp;setMc(mcc)&nbsp;{
&nbsp;&nbsp;var&nbsp;_mc=&nbsp;new&nbsp;mcc&nbsp;as&nbsp;MovieClip;
&nbsp;&nbsp;this.addChild(_mc)
&nbsp;&nbsp;trace(_mc);
}
setMc(a[1]);
</textarea>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/24.html"/><id>http://levinchiu.com/blog/post/24.html</id></entry><entry><title type="html"><![CDATA[as .30 设置影片颜色.]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=4" label="flash AS3.0"/><updated>2009-07-28T21:25:58+08:00</updated><published>2009-07-28T21:25:58+08:00</published><summary type="html"><![CDATA[<p>[code]var theColor=new ColorTransform;<br />theColor.color = 0xFF0088;<br />ball.transform.colorTransform=theColor;</p><p><br />var color1:ColorTransform = new ColorTransform(1, 1, 1, 1, 55, 0, 55, 0);<br />ball.transform.colorTransform= color1;</p><p>...</p>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/23.html"/><id>http://levinchiu.com/blog/post/23.html</id></entry><entry><title type="html"><![CDATA[touch HD 开机画面两个]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=6" label="Touch HD"/><updated>2009-03-07T13:27:53+08:00</updated><published>2009-03-07T13:27:53+08:00</published><summary type="html"><![CDATA[<p>&nbsp;</p><p><img onload="ResizeImage(this,520)" src="http://levinchiu.com/blog/upload/hd1.jpg" alt="" title=""/></p><p><img onload="ResizeImage(this,520)" src="http://levinchiu.com/blog/upload/hd.jpg" alt="" title=""/></p><p><a href="http://levinchiu.com/blog/upload/hd.rar" target="_blank">hd.rar</a></p><p><a href="http://levinchiu.com/blog/upload/hd1.rar" target="_blank"></p><p>hd1.rar</a></p>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/22.html"/><id>http://levinchiu.com/blog/post/22.html</id></entry><entry><title type="html"><![CDATA[SharedObject 共享本地数据]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=5" label="flash"/><updated>2009-02-25T11:41:59+08:00</updated><published>2009-02-25T11:41:59+08:00</published><summary type="html"><![CDATA[[code]<br/>var so:SharedObject = SharedObject.getLocal("userHighScore");<br/>var mya:Array = [1, 2, 567, 8, 9];<br/>so.data.mya = mya;<br/>function showso() {<br/>	txt.text = so.data.mya;<br/>	trace(so.data.mya);<br/>}<br/>btn.onPress = function() {<br/>	so.data.mya = [2, 67, 8, 9, 9, 0,"ce"];<br/>...]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/21.html"/><id>http://levinchiu.com/blog/post/21.html</id></entry><entry><title type="html"><![CDATA[设计师必须了解的一些字体知识]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=2" label="设计相关"/><updated>2008-07-18T09:31:06+08:00</updated><published>2008-07-18T09:31:06+08:00</published><summary type="html"><![CDATA[<p>设计师必须了解的一些字体知识以前在上广的时候就被总监骂，说我的字体应用得非常有问题，当时死不悔改，觉得自己做得还算不错吧。现在看看以前的东西&quot;觉悟&quot;了，那时怎么会用那样的字体呢&hellip;&hellip;字体说话，一句一句来。很多LOGO的字体都是标志设计师专门设计的，所以不要问比如&quot;中国银行的中文书法字体叫什么？&quot;这样的问题。但是很多国际公司都有自己专</p>]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/fonts.html"/><id>http://levinchiu.com/blog/post/fonts.html</id></entry><entry><title type="html"><![CDATA[AS3.0 多参数匹配写法]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=4" label="flash AS3.0"/><updated>2007-09-09T22:22:04+08:00</updated><published>2007-09-09T22:22:04+08:00</published><summary type="html"><![CDATA[AS3.0 多参数匹配写法,同样适合1.0 2.0<br/><br/>简单,效率也高...<br/><br/>[code]<br/>var txt:String = "c";<br/>//txt 输入值<br/>var a:Array = new Array("a","b","c","d");<br/>//匹配的数组内容<br/>//如果匹配了就输入txt的值<br/>if(a.indexOf(txt) != -1){<br/>	trace(txt)<br/>}else{<br/>	trace("不匹配")<br/>}...]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/19.html"/><id>http://levinchiu.com/blog/post/19.html</id></entry><entry><title type="html"><![CDATA[AS3.0 控制帧数播放]]></title><author><name>LevinChiu</name><email>a@b.com</email></author><category term="" scheme="http://levinchiu.com/blog/catalog.asp?cate=4" label="flash AS3.0"/><updated>2007-08-22T14:59:11+08:00</updated><published>2007-08-22T14:59:11+08:00</published><summary type="html"><![CDATA[检测MC播放的<textarea class="code" rows="10" cols="50">root.addEventListener(Event.ENTER_FRAME,tx);function&nbsp;tx(e:Event):void&nbsp;{&nbsp;trace(this.currentFrame);&nbsp;if&nbsp;(this.currentFrame&nbsp;==&nbsp;10)&nbsp;{&nbsp;&nbsp;stop();&nbsp;&nbsp;removeEventListener(Event.ENTER_FRAME,&nbsp;tx);&nbsp;}}</textarea>...]]></summary><link rel="alternate" type="text/html" href="http://levinchiu.com/blog/post/18.html"/><id>http://levinchiu.com/blog/post/18.html</id></entry></feed>
