<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="css/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>李淳的个人博客</title><link>http://www.ilichun.com/blog/</link><description>我爱我家</description><generator>RainbowSoft Studio Z-Blog 1.8 Arwen Build 81206</generator><language>zh-CN</language><copyright>Copyright 淳佳设计 www.ilichu.com. All Rights Reserved.</copyright><pubDate>Sun, 04 Jul 2010 13:05:25 +0800</pubDate><item><title>asv2010完美版破解版下载</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/205/</link><pubDate>Sun, 04 Jul 2010 13:01:55 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/205/</guid><description><![CDATA[<p><font color="#ff0000">这也是我千辛万苦在网上搜索找到的了,现在特别转发贡献出来,<br />下载地址1：&nbsp;&nbsp;</font><a href="http://www.vdisk.cn/down/index/4573697A2989" target="_blank">点击下载</a><font color="#ff0000">&nbsp; &nbsp; 下载地址2(密码123456）：&nbsp;&nbsp;</font><a href="http://disk.c365.com/zh-cn/files/cb5e29a1-81b8-11df-bfae-001372629043/" target="_blank">点击下载</a><font color="#ff0000"> <br /></font>当然asv2010虽然强大也不是万能的，有些加密是作者自己加密和其他类加密软件加密的，当然asv2010也不能解密，再说asv2010主要也不是为了盗swf而出的！</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/205/" target="_blank">继续阅读《asv2010完美版破解版下载》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/flash/">flash</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=asv2010">asv2010</a>&nbsp;&nbsp;<a href="http://www.ilichun.com/blog/catalog.asp?tags=%E7%A0%B4%E8%A7%A3">破解</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/205/#comment" target="_blank">添加评论</a>(0)</p><h3>相关文章:</h3><ul><p><a  href="http://www.ilichun.com/blog/skyer/192/">asv2009,asv2009破解版下载！</a>&nbsp;&nbsp;(2009-10-17 3:19:47)</p><p><a  href="http://www.ilichun.com/blog/skyer/110/">真正解决Dreamweaver CS4 的出现注册码问题</a>&nbsp;&nbsp;(2009-3-23 10:33:34)</p><p><a  href="http://www.ilichun.com/blog/skyer/109/">真正解决Dreamweaver CS4 的出现注册码问题</a>&nbsp;&nbsp;(2009-3-23 10:33:34)</p><p><a  href="http://www.ilichun.com/blog/skyer/31/">防止被ASV6.0破解的方法</a>&nbsp;&nbsp;(2008-10-4 17:32:38)</p></ul>]]></description><category>flash</category><comments>http://www.ilichun.com/blog/skyer/205/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=205</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=205&amp;key=bde52818</trackback:ping></item><item><title>ie6下png透明 包括背景图片</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/204/</link><pubDate>Sat, 01 May 2010 17:37:52 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/204/</guid><description><![CDATA[<p>大家都知道ie6不支持png图片，导致你某些效果表现不出来或者是表现的不好（针对gif）。而下面这短代码可是我精心整理的，让你省去烦恼。这个代码跟以前的很多网页上的让ie6支持png的代码不一样，有js的 有css的，但这个是htc的，可以说是说最好、最方便的了。不信你看了试试就知道了。<br /><br /><strong>用法：<br /><br />&nbsp; &nbsp;&nbsp; &nbsp; </strong>先复制下面的代码在记事本中，然后另存为pngbehavior.htc（名字可以任意）：<br /><br />&lt;public:component lightWeight=&quot;true&quot;&gt;<br />&lt;public:attach event=&quot;onpropertychange&quot; /&gt;<br />&lt;public:attach event=&quot;onbeforeprint&quot; for=&quot;window&quot;/&gt;<br />&lt;public:attach event=&quot;onafterprint&quot; for=&quot;window&quot;/&gt;<br />&lt;script&gt;<br /><br />/*<br />* PNG Behavior<br />*<br />* This script was created by Erik Arvidsson (<a href="http://www.ilichun.com/blog/upload/2010/5/201005011739525621.gif&quot;;<br />var isPrinting = false;<br /><br />if (supported) fixImage();<br /><br />function propertyChanged() {<br />&nbsp; &nbsp; if (!supported || isPrinting) return;<br /><br />&nbsp; &nbsp; var pName = event.propertyName;<br />&nbsp; &nbsp; if (pName != &quot;src&quot;) return;<br />&nbsp; &nbsp; // if not set to blank<br />&nbsp; &nbsp; if (!new RegExp(blankSrc).test(src))<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;fixImage();<br />};<br /><br />function fixImage() {<br />&nbsp; &nbsp; // get src<br />&nbsp; &nbsp; var src = element.src;<br /><br />&nbsp; &nbsp; // check for real change<br />&nbsp; &nbsp; if (src == realSrc &amp;&amp; /\.png$/i.test(src)) {<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;element.src = blankSrc;<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;return;<br />&nbsp; &nbsp; }<br /><br />&nbsp; &nbsp; if ( ! new RegExp(blankSrc).test(src)) {<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;// backup old src<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;realSrc = src;<br />&nbsp; &nbsp; }<br /><br />&nbsp; &nbsp; // test for png<br />&nbsp; &nbsp; if (/\.png$/i.test(realSrc)) {<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;// set blank image<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;element.src = blankSrc;<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;// set filter<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;element.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.&quot; +<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&quot;AlphaImageLoader(src='&quot; + src + &quot;',sizingMethod='scale')&quot;;<br />&nbsp; &nbsp; }<br />&nbsp; &nbsp; else {<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;// remove filter<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;element.runtimeStyle.filter = &quot;&quot;;<br />&nbsp; &nbsp; }<br />}<br /><br />function beforePrint() {<br />&nbsp; &nbsp; isPrinting = true;<br />&nbsp; &nbsp; element.src = realSrc;<br />&nbsp; &nbsp; element.runtimeStyle.filter = &quot;&quot;;<br />&nbsp; &nbsp; realSrc = null;<br />}<br /><br />function afterPrint() {<br />&nbsp; &nbsp; isPrinting = false;<br />&nbsp; &nbsp; fixImage();<br />}<br /><br />&lt;/script&gt;<br />&lt;/public:component&gt;<br /><br /><br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;最后在你的css文件里面加上这么一段代码：<br />img {<br />behavior: url(&quot;pngbehavior.htc&quot;);<br />}<br /><br />一切就好了！！你所有的png图片在ie6下都会被支持了！！</p><p>FF和IE7已经直接支持透明的png图了,下面这个主要是解决IE6下透明PNG图片有灰底的<br /><font color="#ff0000">=============================================================================</font><br />此效果简单，。。。。相当不错 <font color="#ff0000"><strong>推荐</strong></font><br /><br />style=&quot;FILTER: progid:DXImageTransform.Microsoft.AlphaImageLoader(src=images/fl.png')&quot;<br />语法：<br />filter : progid:DXImageTransform.Microsoft.AlphaImageLoader ( enabled=bEnabled , sizingMethod=sSize , src=sURL )<br />enabled : 可选项。布尔值(Boolean)。设置或检索滤镜是否激活。true | false true : 默认值。滤镜激活。<br />false : 滤镜被禁止。<br /><br />sizingMethod : 可选项。字符串(String)。设置或检索滤镜作用的对象的图片在对象容器边界内的显示方式。 crop : 剪切图片以适应对象尺寸。<br />image : 默认值。增大或减小对象的尺寸边界以适应图片的尺寸。<br />scale : 缩放图片以适应对象的尺寸边界。<br /><br />src : 必选项。字符串(String)。使用绝对或相对 url 地址指定背景图像。假如忽略此参数，滤镜将不会作用。<br />特性：<br />Enabled : 可读写。布尔值(Boolean)。参阅 enabled 属性。<br />sizingMethod : 可读写。字符串(String)。参阅 sizingMethod 属性。<br />src : 可读写。字符串(String)。参阅 src 属性。<br />说明：<br />在对象容器边界内，在对象的背景和内容之间显示一张图片。并提供对此图片的剪切和改变尺寸的操作。如果载入的是PNG(Portable Network Graphics)格式，则0%-100%的透明度也被提供。<br />PNG(Portable Network Graphics)格式的图片的透明度不妨碍你选择文本。也就是说，你可以选择显示在PNG(Portable Network Graphics)格式的图片完全透明区域后面的内容。<br /><strong>实例：</strong><strong>解决IE6下png透明失效的问题。</strong><br />CSS样式:<br />.png{<br />_background: url(<font color="#003300">http://www.snowangel.cn/images/angel.png</font>) no-repeat !important; <br />filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=noscale, src=&quot;http://www.snowangel.cn/images/angel.png&quot;);<br />background:none;<br />width:118px;height:133px;<br />}<br />.png div{position:relative;}<br />HTML代码：<br />&lt;div class=&quot;png&quot;&gt;<br />&lt;div&gt;<br />CSS 背景PNG透明 及 链接失效问题解决<br />&lt;/div&gt;<br />&lt;/div&gt;<br /><br />/*<br />兼容IE6.0、IE7.0、FF，<br />IE7.0和新版的FF其实是可以不加filter滤镜直接透明的。<br />*/<br /><font color="#ff0000">=============================================================================</font><br /><br /><br /><font color="#ff0000">第 1 种方法:定义一个样式,给某个div应用这个样式后，div的透明png<font size="3"><font color="#ff9900"><strong>背景图</strong></font></font>片自动透明了。（注意两处图片的路径写法不一样，本例中，</font><font color="#000000">icon_home.png图片与html文件在相同目录）</font> <br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.ilichun.com/blog/upload/2010/5/201005011739537721.png</font></strong>)!important;/* FF IE7 */<br />background-repeat: no-repeat;<br />_filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(<font color="#ff6600"><strong>src='icon_home.png'</strong></font>); /* IE6 */<br />_ background-image: none; /* IE6 */<br />}<br />--&gt;<br />&lt;/style&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />&lt;div class=&quot;qq&quot;&gt;&lt;/div&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;<br /><br /><br /><font color="#ff0000">第 2 种方法: 给img定义样式，页面上所有透明png即自动透明了。（这方法只对直接插入的图片有效，<font color="#ff6600"><strong>对背景图无效</strong></font>）</font><font color="#ff0000">注意，要准备一个透明的小图片</font><font color="#ff6600"><strong>transparent.gif,</strong></font><font color="#000000">大小不限。必须放在和html相同的目录<br /></font><font color="#000000">请勿大量使用，否则会导致页面打开很慢!!!)</font><br /><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.ilichun.com/blog/upload/2010/5/201005011739531632.pngSet?this.pngSet=true:(this.nodeName == &quot;IMG&quot; &amp;&amp; this.src.toLowerCase().indexOf('.png')&gt;-1?(this.runtimeStyle.backgroundImage = &quot;none&quot;,<br />this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src='&quot; + this.src + &quot;', sizingMethod='image')&quot;,<br /><font color="#ff6600"><strong>this.src = &quot;transparent.gif&quot;</strong></font>):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url(&quot;','').replace('&quot;)',''),<br />this.runtimeStyle.filter = &quot;progid:DXImageTransform.Microsoft.AlphaImageLoader(src='&quot; + this.origBg + &quot;', sizingMethod='crop')&quot;,<br />this.runtimeStyle.backgroundImage = &quot;none&quot;)),this.pngSet=true);<br />}<br />&lt;/style&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />换成你的png图片<br /><font color="#ff6600"><strong>&lt;div class=&quot;mypng&quot;&gt;<br /></strong></font>&lt;img src=&quot;icon_face_07.png&quot; width=&quot;30&quot; height=&quot;30&quot; /&gt;<br />&lt;img src=&quot;icon_face_10.png&quot; width=&quot;30&quot; height=&quot;30&quot; /&gt;<br />&lt;img src=&quot;icon_face_08.png&quot; width=&quot;30&quot; height=&quot;30&quot; /&gt;<br />&lt;/div&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;<br /><br /><font color="#ff0000">第 3 种方法:用JS实现,加上一段js代码后,所有插入的透明png自动透明了.（注意，这方法也是只对直接插入的图片有效，<font color="#ff6600"><strong>对背景图无效</strong></font>）</font><br />&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.ilichun.com/blog/upload/2010/5/201005011739544264.gif" border="0" smilieid="1" />) <br />&nbsp; &nbsp; if ((version &gt;= 5.5) &amp;&amp; (document.body.filters)) <br />&nbsp; &nbsp; { <br />&nbsp; &nbsp;&nbsp; &nbsp; for(var j=0; j&lt;document.images.length; j++) <br />&nbsp; &nbsp;&nbsp; &nbsp; { <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var img = document.images[j] <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var imgName = img.src.toUpperCase() <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; if (imgName.substring(imgName.length-3, imgName.length) == &quot;PNG&quot;) <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; { <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var imgID = (img.id) ? &quot;id='&quot; + img.id + &quot;' &quot; : &quot;&quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var imgClass = (img.className) ? &quot;class='&quot; + img.className + &quot;' &quot; : &quot;&quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var imgTitle = (img.title) ? &quot;title='&quot; + img.title + &quot;' &quot; : &quot;title='&quot; + img.alt + &quot;' &quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var imgStyle = &quot;display:inline-block;&quot; + img.style.cssText <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; if (img.align == &quot;left&quot;) imgStyle = &quot;float:left;&quot; + imgStyle <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; if (img.align == &quot;right&quot;) imgStyle = &quot;float:right;&quot; + imgStyle <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; if (img.parentElement.href) imgStyle = &quot;cursor:hand;&quot; + imgStyle <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; var strNewHTML = &quot;&lt;span &quot; + imgID + imgClass + imgTitle <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; + &quot; style=\&quot;&quot; + &quot;width:&quot; + img.width + &quot;px; height:&quot; + img.height + &quot;px;&quot; + imgStyle + &quot;;&quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; + &quot;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader&quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; + &quot;(src=\'&quot; + img.src + &quot;\', sizingMethod='scale');\&quot;&gt;&lt;/span&gt;&quot; <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; img.outerHTML = strNewHTML <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; j = j-1 <br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; } <br />&nbsp; &nbsp;&nbsp; &nbsp; } <br />&nbsp; &nbsp; }&nbsp; &nbsp;&nbsp;&nbsp;<br />} <br />window.attachEvent(&quot;onload&quot;, correctPNG); <br />&lt;/script&gt;<br />&lt;style type=&quot;text/css&quot;&gt;<br />&lt;!--<br />body {<br />background-color: #9999CC;<br />}<br />--&gt;<br />&lt;/style&gt;&lt;/head&gt;<br />&lt;body&gt;<br />把图片换成你自己的图片<br />&lt;img src=&quot;img/icon_face_03.png&quot; width=&quot;30&quot; height=&quot;30&quot; /&gt;&lt;!--把图片换成你自己的图片 --&gt;<br />&lt;img src=&quot;img/icon_face_05.png&quot; width=&quot;30&quot; height=&quot;30&quot; /&gt;<br />&lt;img src=&quot;img/menu_title_over.png&quot; width=&quot;130&quot; height=&quot;36&quot; /&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;&nbsp; &nbsp;&nbsp;&nbsp;<br /><br /><br /><br /><br /><font color="#ff0000"><strong>方法四</strong></font><br /><br /><br />&lt;script language=&quot;javascript&quot;&gt;<br />// 修复 IE 下 PNG 图片不能透明显示的问题<br />function fixPNG(myImage) {<br />var arVersion = navigator.appVersion.split(&quot;MSIE&quot;);<br />var version = parseFloat(arVersion<img alt="" src="file:///E:/skyer1/ie6下png透明%20包括背景图片%20-%20〓网络程序〓%20-%20Ю同在金华Я综合论坛%20博客,旅游,交友,影音,动漫,体育,DJ,发型,妆容,图片,素材,DV,网络技术,信息综合%20-%20Powered%20by%20Discuz!_files/20070625_ac0bb8a1fa9657485abbAjp6gnXL8GXe.gif" border="0" smilieid="1" />);<br />if ((version &gt;= 5.5) &amp;&amp; (version &lt; 7) &amp;&amp; (document.body.filters))<br />{<br />&nbsp; &nbsp;&nbsp;&nbsp;var imgID = (myImage.id) ? &quot;id='&quot; + myImage.id + &quot;' &quot; : &quot;&quot;;<br />&nbsp; &nbsp;&nbsp;&nbsp;var imgClass = (myImage.className) ? &quot;class='&quot; + myImage.className + &quot;' &quot; : &quot;&quot;;<br />&nbsp; &nbsp;&nbsp;&nbsp;var imgTitle = (myImage.title) ? &quot;title='&quot; + myImage.title&nbsp; &nbsp;+ &quot;' &quot; : &quot;title='&quot; + myImage.alt + &quot;' &quot;;<br />&nbsp; &nbsp;&nbsp;&nbsp;var imgStyle = &quot;display:inline-block;&quot; + myImage.style.cssText;<br />&nbsp; &nbsp;&nbsp;&nbsp;var strNewHTML = &quot;&lt;span &quot; + imgID + imgClass + imgTitle<br /><br />&nbsp; &nbsp;+ &quot; style=\&quot;&quot; + &quot;width:&quot; + myImage.width<br /><br />&nbsp; &nbsp;+ &quot;px; height:&quot; + myImage.height<br /><br />&nbsp; &nbsp;+ &quot;px;&quot; + imgStyle + &quot;;&quot;<br /><br />&nbsp; &nbsp;+ &quot;filter:progid:DXImageTransform.Microsoft.AlphaImageLoader&quot;<br /><br />&nbsp; &nbsp;+ &quot;(src=\'&quot; + myImage.src + &quot;\', sizingMethod='scale');\&quot;&gt;&lt;/span&gt;&quot;;<br />&nbsp; &nbsp;&nbsp;&nbsp;myImage.outerHTML = strNewHTML;<br />} } <br /><br />window.onload=function(){<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;document.getElementById(&quot;top&quot;).style.height=screen.height/5+&quot;px&quot;;<br />&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;<br />}//<br />&lt;/script&gt;<br /><br />用法如下：<br />&lt;img src=&quot;logo.png&quot; width=&quot;328&quot; height=&quot;325&quot; border=&quot;0&quot; /&gt;<!--++ plugin_code qcomic begin--></p><p>&nbsp;</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/204/" target="_blank">继续阅读《ie6下png透明 包括背景图片》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/webdesign/">web设计</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=png%E9%80%8F%E6%98%8E">png透明</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/204/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/204/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>web设计</category><comments>http://www.ilichun.com/blog/skyer/204/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=204</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=204&amp;key=b6c67e3e</trackback:ping></item><item><title>Red Giant Trapcode 插件 注册码 全</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/203/</link><pubDate>Tue, 20 Apr 2010 00:27:46 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/203/</guid><description><![CDATA[<p>3DStroke v2.5<br />8903-8797-2500-5519-4444<br />8340-8710-2500-7987-6881<br />9218-8738-2500-7902-9759</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p>Red Giant Composite Wizard v1.4<br />serial: 1558-7224-1340-6093-8252</p><p>After Effects 6.0-8.0 Support</p><p>&nbsp;</p><p>Red Giant Image Lounge v1.4<br />serial: 9601-7161-1124-7096-5124</p><p>After Effects 6.0-8.0 Support</p><p>&nbsp;</p><p>Red Giant Knoll Light Factory Pro v2.5.2<br />serial: 9248-3000-2939-3565-1044 motion<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8405-3024-2555-8703-3817</p><p>After Effects, Premiere Pro,<br />Final Cut Pro,Motion, Avid</p><p>&nbsp;</p><p>Red.Giant.Primatte.Keyer.Pro.v4.0.for.AE.and.AVX<br />serial: 9473-4044-4228-6877-3228</p><p>After Effects, Avid,<br />Final Cut Pro, and Motion</p><p><br />Red Giant Radium Glow v1.0<br />serial: 1374-0436-1563-3568-3475</p><p>FCP6.x下使用有退出状况，建议使用前保存FCP工程文件。<br />After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p><br />Red.Giant.InstantHD.v1.1<br />Serial: <br />1295-8014-1459-6092-3204<br />2222-8012-1493-4603-2165<br />2026-8076-1026-5021-7502<br />2017-8058-1816-4209-7283</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion</p><p>&nbsp;</p><p>Key Correct Pro version 1.0 (c) Red Giant</p><p>8343-7014-1000-9466-8680<br />9115-7038-1000-3692-7452 <br />8511-7074-1000-9177-3848 <br />9058-7042-1000-3846-6395 <br />8472-7080-1000-6336-9809</p><p>After Effects</p><p>&nbsp;</p><p>Magic_Bullet_Colorista_v1.01<br />9074-2114-1000-9156-1323</p><p>After Effects, Premiere Pro,<br />Final Cut Pro,Motion, Avid</p><p>&nbsp;</p><p><br />Red.Giant.Magic.Bullet.Frames.v1.0<br />9070-2866-1000-9967-7903<br />9155-2800-1000-6426-1988<br />8276-2818-1000-5233-9109<br />8501-2800-1000-5742-4334<br />8688-2874-1000-6209-4521</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion</p><p><br />Red Giant Magic Bullet Looks v1.1<br />1767-2912-1377-3554-6482</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p>&nbsp;</p><p>Red.Giant.Magic.Bullet.Steady.v1.0<br />Serial: <br />2028-2224-1970-4850-0752<br />2251-2292-1519-4342-3524<br />1727-2200-1765-6833-1246<br />1301-2270-1712-8837-6767</p><p>After Effects, Final Cut Pro</p><p>&nbsp;</p><p>Red.Giant.ToonIt.v1.1<br />Serial: <br />1551-5518-1679-5387-1880<br />1391-5502-1379-6523-3420<br />1564-5577-1760-5031-8974<br />1596-5533-1345-7032-6591</p><p>After Effects, Premiere Pro, Avid,<br />Final Cut Pro, Motion</p><p><br />3DStroke v2.5<br />8903-8797-2500-5519-4444<br />8340-8710-2500-7987-6881<br />9218-8738-2500-7902-9759</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p>&nbsp;</p><p>Red Giant Trapcode Echo Space v1.0.2<br />serial: 1806-9363-1382-3577-4294</p><p>After Effects</p><p>&nbsp;</p><p>Red Giant Trapcode Form v1.0.2<br />serial: 9297-8963-1018-3565-2930</p><p>After Effects</p><p>&nbsp;</p><p>Red Giant Trapcode Horizon v1.0<br />serial: 1382-9470-1730-7815-0730</p><p>After Effects</p><p>&nbsp;</p><p>Red Giant Trapcode Lux v1.0.2<br />serial: 1918-9141-1402-9998-4402</p><p><br />After Effects</p><p>&nbsp;</p><p><br />Red Giant Trapcode Particular v1.5.1<br />serial: 9002-8862-1284-3553-3389</p><p>After Effects</p><p>&nbsp;</p><p>&nbsp;</p><p>Shine v1.5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />8815-8527-1500-5923-7332 <br />9211-8575-1500-7243-1728 <br />8659-8595-1500-6742-1176</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p>&nbsp;</p><p>Trapcode.Sound.Keys.v1.1.3<br />1406-9268-1890-7019-3890</p><p>After Effects</p><p>&nbsp;</p><p><br />Starglow v1.5 <br />8936-8664-1500-9257-8965 <br />9153-8636-1500-6778-9182<br />8955-8630-1500-5230-5984</p><p>After Effects, Premiere Pro,<br />Final Cut Pro, Motion, Avid</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>迅雷下载:</p><p><a href="http://user3.smzy.net/cj/ae/TrapcodePlugs.rar?urlid=BGQAAKLQHQMWH8LJMC8R2KQRWFUPKPNMRJQMQJEBKQFWATM1TEDR">http://user3.smzy.net/cj/ae/TrapcodePlugs.rar?urlid=BGQAAKLQHQMWH8LJMC8R2KQRWFUPKPNMRJQMQJEBKQFWATM1TEDR</a></p><p>&nbsp;</p><p>AE全套Trapcode系列光效最新版插件(2264字节)</p><p>trapcode全套最新：<br />shine<br />3dstorke<br />soundkey<br />lux<br />Particular<br />统一用户：linxi<br />key:<br />Shine : WNNCXXUQ<br />Site-License Code: WNNCXXUQW8K3<br />SoundKeys : QKUZT3QN<br />Site-License Code: QKUZT3QN03U3<br />Lux : UC38PZUU<br />Site-License Code: UC38PZUUUA8C<br />3DStroke : 4CWQQNQN<br />Site-License Code: 4CWQQNQN4ZTZ<br />StarGlow : 44ATFPUK<br />Site-License Code: 44ATFPUK4NKY<br />Particular: 4WXUTC4X<br />Site-License Code: 4WXUTC4X43FY<br />如果你想一次全部注册，把下面的文本另存为graybelt.reg<br />然后双击加入注册表，提示成功就注册成功了<br />=============把下面的文字复制下来，存到文本文档，另存为graybelt.reg==========</p><p>REGEDIT4<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\3DStroke]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\3DStroke\Key]<br />@=&quot;4CWQQNQN4ZTZ&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\3DStroke\Name]<br />@=&quot;linxi&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Lux]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Lux\Key]<br />@=&quot;UC38PZUUUA8C&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Lux\Name]<br />@=&quot;linxi&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Shine]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Shine\Key]<br />@=&quot;UC38PZUUUA8C&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Shine\Name]<br />@=&quot;linxi&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\SoundKeys]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\SoundKeys\Key]<br />@=&quot;QKUZT3QN03U3&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\SoundKeys\Name]<br />@=&quot;linxi&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\StarGlow]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\StarGlow\Key]<br />@=&quot;44ATFPUK4NKY&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\StarGlow\Name]<br />@=&quot;linxi&quot;<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Particular]<br />[HKEY_LOCAL_MACHINE\SOFTWARE\Trapcode\Particular\Key]<br />@=&quot;4WXUTC4X43F...『详细内容』</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/203/" target="_blank">继续阅读《Red Giant Trapcode 插件 注册码 全》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/webdesign/">web设计</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=Trapcode">Trapcode</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/203/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/203/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>web设计</category><comments>http://www.ilichun.com/blog/skyer/203/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=203</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=203&amp;key=1df42872</trackback:ping></item><item><title>如何将你的公司标注到google地图上?</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/202/</link><pubDate>Mon, 15 Mar 2010 22:29:47 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/202/</guid><description><![CDATA[<p>看一个例子：通过google网页搜索&ldquo;艾都科技&rdquo;，可以看到如下界面</p><div class="wp-caption aligncenter" id="attachment_361" style="width: 310px"><a href="http://www.ilichun.com/blog/upload/2010/3/201003152230592710.jpg"><img class="size-medium wp-image-361" title="bendi3" height="163" alt="bendi3" src="http://www.ilichun.com/blog/upload/2010/3/201003152230591413.jpg" width="300" /></a><p class="wp-caption-text">公司名称搜索</p>（说明：当用户搜索你的公司时，可以更直观看到公司具体地理位置，点击地图进入到地图显示界面，如下）</div><div class="wp-caption aligncenter" id="attachment_362" style="width: 310px"><a href="http://www.ilichun.com/blog/upload/2010/3/201003152230594475.jpg"><img class="size-medium wp-image-362" title="bendi4" height="137" alt="bendi4" src="http://www.ilichun.com/blog/upload/2010/3/201003152231000638.jpg" width="300" /></a><p class="wp-caption-text">地理位置及公司概况显示（即google地图搜索效果）</p>（点击公司名称下面的&ldquo;更多信息&rdquo;，可以看到公司介绍、公司行业类别、公司图片、公司视频等详尽信息，还可以查阅公交/驾车路线等，见下图）</div><div class="wp-caption aligncenter" id="attachment_363" style="width: 310px"><a href="http://www.ilichun.com/blog/upload/2010/3/201003152231000887.jpg"><img class="size-medium wp-image-363" title="bendi5" height="178" alt="bendi5" src="http://www.ilichun.com/blog/upload/2010/3/201003152231003035.jpg" width="300" /></a><p class="wp-caption-text">公司相关详细资料</p></div><p>这是不是很好的宣传方式、同时又方便您的客户使用呢？下面给大家介绍一下如何将您的公司信息标注到google地图上（即在google本地商户中心登记您的公司信息和标注地理位置）：</p><p><strong>第一步：核实是否收录及正确性。</strong></p><p>通过google地图（<a href="http://www.ilichun.com/blog/upload/2010/3/201003152231006187.jpg"><img class="size-medium wp-image-359" title="bendi1" height="237" alt="google本地商户中心信息录入" src="http://www.ilichun.com/blog/upload/2010/3/201003152231006565.jpg" width="300" /></a><p class="wp-caption-text">google本地商户中心信息录入</p></div><p><strong>第三步：验证</strong></p><p>录入信息检查无误后进入到验证方式选择界面，验证所需的验证码（5位数字）可以选择电话获取（google自动语音系统拨打您的首选电话）或邮寄信函获取（google给您邮寄信函）。建议选择电话方式，可以在几秒中内获取验证码。（注意需要填写直拨号码而不是总机号码，并在google电话打过来时记录号验证码）。获取验证码后在商户列表页中填入验证码进行验证即可，成功验证后一个小时内您就可以看到贵公司在google地图中展示的效果了，赶快去试试吧。</p><div class="wp-caption aligncenter" id="attachment_360" style="width: 310px"><a href="http://www.ilichun.com/blog/upload/2010/3/201003152231008675.jpg"><img class="size-medium wp-image-360" title="bendi2" height="154" alt="验证方式选择界面" src="http://www.ilichun.com/blog/upload/2010/3/201003152231014603.jpg" width="300" /></a><p class="wp-caption-text">验证方式选择界面</p></div><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/202/" target="_blank">继续阅读《如何将你的公司标注到google地图上?》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/webdesign/">web设计</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=google%E5%9C%B0%E5%9B%BE">google地图</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/202/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/202/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>web设计</category><comments>http://www.ilichun.com/blog/skyer/202/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=202</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=202&amp;key=892b0c2d</trackback:ping></item><item><title>godaddy空间设置教程</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/201/</link><pubDate>Thu, 04 Mar 2010 19:26:21 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/201/</guid><description><![CDATA[<p>godaddy空间设置教程</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/201/" target="_blank">继续阅读《godaddy空间设置教程》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/webdesign/">web设计</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=godaddy">godaddy</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/201/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/201/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>web设计</category><comments>http://www.ilichun.com/blog/skyer/201/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=201</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=201&amp;key=2827c6c9</trackback:ping></item><item><title>浅谈PR输出值</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/200/</link><pubDate>Thu, 04 Mar 2010 19:05:17 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/200/</guid><description><![CDATA[<div class="ArticleTitle"><span style="color: #ff6600"><strong><span style="font-size: small"><span class="ArticleTitleText">什么是PR输出值，浅议计算方式</span></span></strong></span></div><div class="ArticleBlog"><div class="ArticleBlogText"><div id="BlogArticleDetail" style="font-size: 14px"><p>GOOGLE PR值计算公式<br /><br />PAGERANK公式:<br /><br />PR(A) = (1-d) + d(PR(t1)/C(t1) + ... + PR(tn)/C(tn))<br /><br />其中PR(A)表示的是从一个外部链接站点t1上，依据Pagerank为系统给你的网站所增加的PR分值;PR(t1)表示该外部链接网站本身的PR分值;C(t1)则表示该外部链接站点所拥有的外部链接数量。大家要谨记:一个网站的投票权值只有该网站PR分值的0.85，而且这个0.85的权值平均分配给其链接的每个外部网站。<br /><br />设想一个名为akamarketing.com的网站，被链接至PR值为4，外部链接数为9的网站XYZ.COM，则计算公式如下:<br /><br />PR(AKA) = (1-0.85) + 0.85*(4/10)<br /><br />PR(AKA) = 0.15 + 0.85*(0.4)<br /><br />PR(AKA) = 0.15 + 0.34<br /><br />PR(AKA) = 0.49<br /><br />也就是说，如果我的网站获得一个PR值为4，外部链接数为9的网站的链接，最后我的网站将获得0.49的PR分值。<br /><br />再让我们看看如果我的网站获得的是一个PR分值为8，外部链接数为16的网站的链接，那么我将获得的PR分值将是:<br /><br />PR(AKA) = (1-0.85) + 0.85*(8/16)<br /><br />PR(AKA) = 0.15 + 0.85(0.5)<br /><br />PR(AKA) = 0.15 + 0.425<br /><br />PR(AKA) = 0.575<br /><br />上述两个例子表明，外部链接站点的PR值固然重要，该站点的外部链接数也是一个需要考虑的重要因素。<br /><br />综述：<br /><br />1. 在网站的标题标签(TITLE tag)中包含主要关键词和关键短语。<br /><br />2. 提高外部链接的质量和数量。<br /><br />3. 使网站被三大知名网络目录DMOZ，Yahoo和Looksmart收录。</p></div></div></div><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/200/" target="_blank">继续阅读《浅谈PR输出值》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/seo/">网站优化</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=pr">pr</a>&nbsp;&nbsp;<a href="http://www.ilichun.com/blog/catalog.asp?tags=PR%E8%BE%93%E5%87%BA%E5%80%BC">PR输出值</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/200/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/200/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>网站优化</category><comments>http://www.ilichun.com/blog/skyer/200/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=200</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=200&amp;key=2250bb0e</trackback:ping></item><item><title>PHP开源项目网 - PHP开源软件开发交流平台</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/199/</link><pubDate>Sat, 05 Dec 2009 01:55:50 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/199/</guid><description><![CDATA[<p><a href="http://www.coderhome.net/">http://www.coderhome.net/</a></p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/199/" target="_blank">继续阅读《PHP开源项目网 - PHP开源软件开发交流平台》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/webdesign/">web设计</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=php%E7%A8%8B%E5%BA%8F%E7%BD%91">php程序网</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/199/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/199/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>web设计</category><comments>http://www.ilichun.com/blog/skyer/199/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=199</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=199&amp;key=922b0e86</trackback:ping></item><item><title>Flash图片展示效果相关网址</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/198/</link><pubDate>Sat, 05 Dec 2009 01:28:16 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/198/</guid><description><![CDATA[<p><a href="http://www.flash-gallery.org/">http://www.flash-gallery.org</a><br /><a href="http://www.flashgallery.org/">http://www.flashgallery.org/</a><br /><a href="http://flashimagegallery.com">http://flashimagegallery.com</a></p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/198/" target="_blank">继续阅读《Flash图片展示效果相关网址》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/flash/">flash</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=Flash">Flash</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/198/#comment" target="_blank">添加评论</a>(0)</p><h3>相关文章:</h3><ul><p><a  href="http://www.ilichun.com/blog/skyer/190/">IE浏览器去掉FLASH虚线框的两种方法</a>&nbsp;&nbsp;(2009-9-30 10:54:12)</p><p><a  href="http://www.ilichun.com/blog/skyer/184/">SWF Encrypt 6.0 破解版</a>&nbsp;&nbsp;(2009-9-5 11:51:36)</p><p><a  href="http://www.ilichun.com/blog/skyer/183/">FLASH调用外部文本文件</a>&nbsp;&nbsp;(2009-9-3 1:23:35)</p><p><a  href="http://www.ilichun.com/blog/skyer/182/">flash调用asp生成的txt的例子</a>&nbsp;&nbsp;(2009-9-3 1:14:40)</p><p><a  href="http://www.ilichun.com/blog/skyer/159/">动态flash调用图片</a>&nbsp;&nbsp;(2009-6-28 21:36:41)</p></ul>]]></description><category>flash</category><comments>http://www.ilichun.com/blog/skyer/198/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=198</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=198&amp;key=1a28127a</trackback:ping></item><item><title>Flash右键菜单时间代码</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/197/</link><pubDate>Wed, 25 Nov 2009 10:15:02 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/197/</guid><description><![CDATA[<p>新建一个fla文件,把下面的脚本帖到第一帧:<br />stop();<br />var mydate = new Date();<br />var myear = mydate.getFullYear();<br />var mmon = mydate.getMonth() + 1;<br />var mdate = mydate.getDate();<br />var mytime = myear + &quot;年&quot; + mmon + &quot;月&quot; + mdate + &quot;日&quot;<br />var mymenu: ContextMenu= new ContextMenu(); <br />mymenu.hideBuiltInItems(); <br />mymenu.customItems.push(new ContextMenuItem(mytime, dj_menu0, false)); <br />mymenu.customItems.push(new ContextMenuItem(&quot;卡车土匪&quot;, dj_menu1, false,false)); <br />mymenu.customItems.push(new ContextMenuItem(&quot;QQ：123456&quot;, dj_menu2, false,true)); <br />function dj_menu0() { <br />//...<br />} <br />function dj_menu1() { <br />//...<br />} <br />function dj_menu2() { <br />getURL(&quot;<a href="http://123456.qzone.qq.com/" target="_blank">http://123456.qzone.qq.com</a>&quot;,_blank); <br />} <br />_root.menu=mymenu;</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/197/" target="_blank">继续阅读《Flash右键菜单时间代码》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/flash/">flash</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=flash%E5%8F%B3%E9%94%AE%E8%8F%9C%E5%8D%95">flash右键菜单</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/197/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/197/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>flash</category><comments>http://www.ilichun.com/blog/skyer/197/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=197</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=197&amp;key=2c51bc2e</trackback:ping></item><item><title>Sothink SWF Quicker v3.0注册码序列号 Systweak AntiSpyware注册码序列号</title><author>lichun903@126.com (李淳)</author><link>http://www.ilichun.com/blog/skyer/196/</link><pubDate>Wed, 25 Nov 2009 10:14:22 +0800</pubDate><guid>http://www.ilichun.com/blog/skyer/196/</guid><description><![CDATA[<h1>Sothink SWF Quicker v3.0 注册码 序列号</h1><p>Registration Name: peter666@kfz.zeichen.ws<br />Registration Key : 000015-HRJMBE-74HYM8-V7G88B-MRKMY8-UPVPKV-UX8EF8-VZQHZP-BAABFJ-85BNT4</p><p>&nbsp;</p><p>Sothink SWF Quicker v3.0 下载：<br /><a href="http://www.bybc.net/soft/photo/tx85/2007/2007062916223.html"><font color="#1a500a">http://www.bybc.net/soft/photo/tx85/2007/2007062916223.html</font></a></p><p>&nbsp;</p><p>Sothink SWF Quicker v3.0简介：</p><p>硕思闪客之锤是一款专业的Flash影片制作工具。其最强大的一个功能是运用智能的运动动画分析和完全的动作脚本支持，来导入*.SWF格式的文件。所有导入的元素及动作脚本可以被轻松的修改，还可以将影片再导出为SWF格式，保证原来影片的元素和功能毫无损失。为了制作出更专业的动画，闪客之锤自带了80余款各种样式的生动的动画特效。您只需轻点几下鼠标，更改几个参数即可完成复杂的动画作品。此外，还支持多字节语言文字。</p><h1>Systweak AntiSpyware 注册码 序列号</h1><p>USER/用户名：Clark Kent - TRIALPAY<br />KEY/注册码/序列号：0J86KK-55NQJE-JFT60V-UAD49R</p><p>&nbsp;</p><p>Systweak AntiSpyware 下载：<br /><a href="http://down.zdnet.com.cn/detail/9/84294.shtml"><font color="#1a500a">http://down.zdnet.com.cn/detail/9/84294.shtml</font></a></p><p>&nbsp;</p><p>Systweak AntiSpyware简介：</p><p>Systweak AntiSpyware有一个浩大的数据库，它能保护你免受Malware, Trojans, Sniffers, Adware, BHOs, Exploits, Key Loggers, Worms, Monitoring Programs等等类似的威胁。内置的一些其它功能也很不错，感兴趣的可以试试。通过Microsoft Gold Certified Partner认证。(微软金牌合作伙伴)</p><p>Copyright © 2008</p><p><a href="http://www.ilichun.com/blog/skyer/196/" target="_blank">继续阅读《Sothink SWF Quicker v3.0注册码序列号 Systweak AntiSpyware注册码序列号》的全文内容...</a></p><p>分类: <a href="http://www.ilichun.com/blog/skyer/flash/">flash</a> | Tags: <a href="http://www.ilichun.com/blog/catalog.asp?tags=Sothink">Sothink</a>&nbsp;&nbsp; | <a href="http://www.ilichun.com/blog/skyer/196/#comment" target="_blank">添加评论</a>(0)</p><p><a href="http://www.ilichun.com/blog/skyer/196/#comment" target="_blank">还没有相关文章，您来说两句？</a></p>]]></description><category>flash</category><comments>http://www.ilichun.com/blog/skyer/196/#comment</comments><wfw:comment>http://www.ilichun.com/blog/</wfw:comment><wfw:commentRss>http://www.ilichun.com/blog/feed.asp?cmt=196</wfw:commentRss><trackback:ping>http://www.ilichun.com/blog/cmd.asp?act=tb&amp;id=196&amp;key=0a28cf40</trackback:ping></item></channel></rss>
