<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[JHM's Space]]></title> 
    <link>http://www.lin68.com/blog/</link> 
    <description><![CDATA[我的收藏夹]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2010, JHM's Space]]></copyright> 
    <webMaster><![CDATA[null@null.com (JHM)]]></webMaster> 
    <generator>LBS v2.0.310</generator> 
    <pubDate>Fri, 12 Mar 2010 17:15:00 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[CKSource Docs]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=156]]></link> 
      <category><![CDATA[My Favorite]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Mon, 19 Oct 2009 13:31:56 +0800</pubDate> 
      <description><![CDATA[CKSource Docs<br /><a href="http://docs.cksource.com/CKFinder/Developers_Guide/PHP/Configuration" title="http://docs.cksource.com/CKFinder/Developers_Guide/PHP/Configuration" target="_blank">http://docs.cksource.com/CKFinder/Developers_Guide/PHP/Configuration</a><br />CK产品的帮助文档]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=156]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[showModalDialog和showModelessDialog使用心得(转帖)]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=155]]></link> 
      <category><![CDATA[Js(javascript)]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 16 Oct 2009 11:44:29 +0800</pubDate> 
      <description><![CDATA[showModalDialog和showModelessDialog使用心得<br /><br />一、showModalDialog和showModelessDialog有什么不同？<br />　　showModalDialog：被打开后就会始终保持输入焦点。除非对话框被关闭，否则用户无法切换到主窗口。类似alert的运行效果。<br />　　showModelessDialog：被打开后，用户可以随机切换输入焦点。对主窗口没有任何影响(最多是被挡住一下而以。:P)<br /><br />二、怎样才让在showModalDialog和showModelessDialog的超连接不弹出新窗口？<br />　　在被打开的网页里加上&lt;base target=&quot;_self&quot;&gt;就可以了。这句话一般是放在&lt;html&gt;和&lt;body&gt;之间的。<br /><br />三、怎样才刷新showModalDialog和showModelessDialog里的内容？<br />　　在showModalDialo]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=155]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[jquery.validate.js：jquery的表单验证]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=154]]></link> 
      <category><![CDATA[Js(javascript)]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sun, 11 Oct 2009 16:47:57 +0800</pubDate> 
      <description><![CDATA[remote：URL<br />使用ajax方式进行验证，默认会提交当前验证的值到远程地址，如果需要提交其他的值，可以使用data选项<br />remote: &quot;check-email.php&quot;<br />remote: {<br />    url: &quot;check-email.php&quot;,     //后台处理程序<br />    type: &quot;post&quot;,               //数据发送方式<br />    dataType: &quot;json&quot;,           //接受数据格式   <br />    data: {                     //要传递的数据<br />        username: function() {<br />            return $(&quot;#username&quot;).val();<br />        }<br />    }<br />}<br /><br />远程地址只能输出 &quot;true&quot; 或 &quot;false&quot;，不能有其它输出<br /><br />addMethod：name, method, message<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=154]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[js学习网站]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=153]]></link> 
      <category><![CDATA[My Favorite]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 10 Oct 2009 16:55:43 +0800</pubDate> 
      <description><![CDATA[cloudgamer - 博客园<br /><a href="http://www.cnblogs.com/cloudgamer" title="http://www.cnblogs.com/cloudgamer" target="_blank">http://www.cnblogs.com/cloudgamer</a><br /><br />很多js效果 JavaScript  - Web Development Blog<br /><a href="http://www.leigeber.com/category/javascript/" title="http://www.leigeber.com/category/javascript/" target="_blank">http://www.leigeber.com/category/javascript/</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=153]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[jQuery.validate.js API]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=152]]></link> 
      <category><![CDATA[Js(javascript)]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 10 Oct 2009 14:25:22 +0800</pubDate> 
      <description><![CDATA[转自：<a href="http://ideabean.javaeye.com/blog/362875" title="http://ideabean.javaeye.com/blog/362875" target="_blank">http://ideabean.javaeye.com/blog/362875</a><br /><a href="http://hi.baidu.com/greenandcoffee/blog/item/5ebe5850e2cfbb551138c24d.html" title="http://hi.baidu.com/greenandcoffee/blog/item/5ebe5850e2cfbb551138c24d.html" target="_blank">http://hi.baidu.com/greenandcoffee/blog/item/5ebe5850e2cfbb551138c24d.html</a><br /><br />Name&nbsp;&nbsp;Type<br />validate( options ) &nbsp;&nbsp;Returns: Validator<br />验证所选的FORM<br />valid( ) &nbsp;&nbsp;Returns: Boolean<br />检查是否验证通过<br />rules( ) &nbsp;&nbsp;Returns: Options<br />返回元素的验证规则<br />rules( &quot;add&quot;, rules ) &nbsp;&nbsp;Returns: Options<br />增加验证规则。<br />rules( &quot;remove&quot;, rules ) &nbsp;&nbsp;Returns: Options<br />删除验证规则<br />removeAttrs( attributes ) &nbsp;&nbsp;Returns: Options<br />删除特殊属性并且返回他们<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=152]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[如何改变Flex程序的默认背景色]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=151]]></link> 
      <category><![CDATA[Flex]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 22 Sep 2009 12:52:07 +0800</pubDate> 
      <description><![CDATA[通过设置编译器参数<br /><br />-default-frame-rate 50<br />-default-background-color #FFFFFF<br />-default-size 800 600<br /><br />纯Actionscript代码中，可以在主运行类前面做如下声明：<br />[SWF(width=&quot;800&quot;, height=&quot;600&quot;, frameRate=&quot;20&quot;, backgroundColor=&quot;#FFFFFF&quot;)]]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=151]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Flex创建一个UI component的全过程]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=150]]></link> 
      <category><![CDATA[Flex]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 19 Sep 2009 13:05:51 +0800</pubDate> 
      <description><![CDATA[请求component的构造器<br />设置component的属性<br />调用父容器的addChild方法，这包括：<br /><br />1.a) Flex设置component的parent属性并引用其父容器。<br />2.b) 设置component样式<br />3.c) component发送add事件（其实是flex发送，component是源）<br />4.d) 父容器发送addChild事件<br />5.e) Flex发送component的preinitialize时间<br />6.f) Flex创建并初始化component的子UI—如button组件显示“确定”文本的text label<br />7.g) Flex发送Initialize时间<br /><br />接下来，为了显示component，一个render事件被触发<br />1.a) Flex完成显示component的所有必需过程，包括layout component<br />2.b) Flex设置component的visible属性为true<br />]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=150]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[flex的常用用法二十条]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=149]]></link> 
      <category><![CDATA[Flex]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 19 Sep 2009 12:36:26 +0800</pubDate> 
      <description><![CDATA[一 、System.setClipboard(&quot;给系统剪切板赋值 &quot;); 用于给系统的剪切板赋值。<br />二、var objectid =  ExternalInterface.objectID; //在 Internet Explorer 中返回 object 标签的 id 属性，或者在 Netscape 中返回 embed 标签的 name 属性。<br />三、如果要创建一个自定义组件，你需要重写 UIComponent 类的某些方法，最少需要重写如下方法(按先后顺序)：构造函数 , createChildren(), commitProperties(), measure(), layoutChrome(), updateDisplayList() 。<br />四、改变输出swf的尺度,背景颜色或帧频<br />在”Navigator”窗框里右键你的项目&gt;选中”Properties”&gt;选中”ActionScript ]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=149]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[as3类库]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=148]]></link> 
      <category><![CDATA[My Favorite]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Mon, 07 Sep 2009 14:44:17 +0800</pubDate> 
      <description><![CDATA[<a href="http://code.google.com/p/as3corelib/" title="http://code.google.com/p/as3corelib/" target="_blank">http://code.google.com/p/as3corelib/</a>]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=148]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[[转帖]Reflection倒影应用一例]]></title> 
      <link><![CDATA[http://www.lin68.com/blog/article.asp?id=147]]></link> 
      <category><![CDATA[Flash]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 28 Jul 2009 17:52:33 +0800</pubDate> 
      <description><![CDATA[调用的时候直接使用getReflection(target)返回一个bitmapData对象<br />也可以使用getReflection(target,100)来指定倒影高度...<br /><br />private function getReflection(target:DisplayObject,height:Number = -1):BitmapData<br />{ <br />&nbsp;&nbsp;if(height&lt;0)height = target.height<br />&nbsp;&nbsp;var bit:BitmapData = new BitmapData(target.width,height,true,0); <br />&nbsp;&nbsp;bit.draw(target,new Matrix(1,0,0,-1,0,target.height)); <br />&nbsp;&nbsp;<br />&nbsp;&nbsp;<br />&nbsp;&nbsp;var mtx:Matrix = new Matrix(); <br />&nbsp;&nbsp;mtx.createGradientBox(target.width,height,0.5 * Math.PI); <br />]]></description>
      <wfw:commentRss><![CDATA[http://www.lin68.com/blog/feed.asp?q=comment&id=147]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
