<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>The RoLLing cOde</title>
	<atom:link href="http://blog.rollingcode.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rollingcode.org</link>
	<description>Rumor, crap and --un--original</description>
	<pubDate>Sun, 15 Nov 2009 19:33:42 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Convert adblock rule list to regular expressions</title>
		<link>http://blog.rollingcode.org/2009/07/04/convert-adblock-rule-list-to-regular-expressions/</link>
		<comments>http://blog.rollingcode.org/2009/07/04/convert-adblock-rule-list-to-regular-expressions/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 17:27:14 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/7/Convert-adblock-rule-list-to-regular-expressions</guid>
		<description><![CDATA[
                Here&#8217;s the script convert EasyList and ChinaList to regex lines, which may be used in some web browsers or proxy programs.
#!/bin/sh
	ADLIST=&#8221;http://adblock-chinalist.googlecode.com/svn/trunk/adblock.txt http://easylist.adblockplus.org/easylist.txt&#8221;
echo -n &#62; /tmp/adblock.txt
for URL in $ADLIST
	do
	    echo Fetching $URL &#8230;
	    curl $URL &#124; grep -v ^$ &#124; [...]]]></description>
			<content:encoded><![CDATA[<div>
                Here&#8217;s the script convert EasyList and ChinaList to regex lines, which may be used in some web browsers or proxy programs.</p>
<p>#!/bin/sh<br />
	<br />ADLIST=&#8221;http://adblock-chinalist.googlecode.com/svn/trunk/adblock.txt http://easylist.adblockplus.org/easylist.txt&#8221;</p>
<p>echo -n &gt; /tmp/adblock.txt</p>
<p>for URL in $ADLIST<br />
	<br />do<br />
	<br />    echo Fetching $URL &#8230;<br />
	<br />    curl $URL | grep -v ^$ | grep -v # | grep -v ^[!|@] | grep -v \$ | sed &#8217;s/./\./g&#8217; | sed s/*/.*/g | sed &#8217;s/|/\|/g&#8217; | grep -v &#8216;Adblock Plus 1&#8242; &gt;&gt; /tmp/adblock.txt<br />
	<br />done<br />
	<br />Note this will generate &gt;1000 regexp lines, which might impact performance of your web browser.
            </div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/07/04/convert-adblock-rule-list-to-regular-expressions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Idle reminder script for The Hit List</title>
		<link>http://blog.rollingcode.org/2009/06/01/idle-reminder-script-for-the-hit-list/</link>
		<comments>http://blog.rollingcode.org/2009/06/01/idle-reminder-script-for-the-hit-list/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 09:34:32 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/6/Idle-reminder-script-for-The-Hit-List</guid>
		<description><![CDATA[
This handy script will remind(disturb?) you every N minutes about what you are doing (if you begin a task in
	The Hit List
) or you are idling right now as
	Growl
 notification.

	Paste the following code to Script Editor, Save.
try
	tell application "GrowlHelperApp" to register as application "THL Notifier" all notifications {"Doing", "Idle"} default notifications {"Doing", "Idle"} icon of [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>This handy script will remind(disturb?) you every N minutes about what you are doing (if you begin a task in<br />
	<a target="_blank" href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.potionfactory.com%2Fthehitlist%2F&amp;ei=-Z4jSoGkBqOQ6APQr8HEAw&amp;usg=AFQjCNFXyPgCj82o-u3SlM4vbCs0mYjINA&amp;sig2=WJBQ6KjJYmsVN0aJnoeY4Q">The Hit List</a><br />
) or you are idling right now as<br />
	<a target="_blank" href="http://growl.info/">Growl</a><br />
 notification.</p>
<p>
	<img alt="" src="http://img.skitch.com/20090601-gacf8wudw2bsj4n68spgtn3wmu.png" align="center">Paste the following code to Script Editor, Save.</p>
<pre name="code" class="python">try
	tell application "GrowlHelperApp" to register as application "THL Notifier" all notifications {"Doing", "Idle"} default notifications {"Doing", "Idle"} icon of application "The Hit List"
	tell application "System Events"
		tell process "The Hit List" to set myDoing to get value of text field 1 of window "Timer"
		tell application "GrowlHelperApp" to notify with name "Doing" title (myDoing) description ("now doing...") application name "THL Notifier" priority 0 sticky no icon of application "The Hit List"
	end tell
on error
	tell application "GrowlHelperApp" to notify with name "Idle" title ("Something to do?") description ("idle...") application name "THL Notifier" priority 0 sticky no icon of application "The Hit List"
end try</pre>
<p>Open Terminal, type </p>
<p>crontab -e</p>
<p>Add this line and save ( you can change 15 to what ever minutes between each reminder) </p>
<pre name="code" class="python">*/15  *    *    *    *    osascript /path/to/Whatsup.scpt</pre>
<p>Note: due to the limitation of the time tracking window display in THL, this script does not support Spaces very well.</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/06/01/idle-reminder-script-for-the-hit-list/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Install multiple versions of Flash plugin for Firefox</title>
		<link>http://blog.rollingcode.org/2009/04/18/install-multiple-versions-of-flash-plugin-for-firefox/</link>
		<comments>http://blog.rollingcode.org/2009/04/18/install-multiple-versions-of-flash-plugin-for-firefox/#comments</comments>
		<pubDate>Sat, 18 Apr 2009 16:21:16 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/4/Install-multiple-versions-of-Flash-plugin-for-Firefox</guid>
		<description><![CDATA[
As developing ActionScript projects, one have to frequently switch between different Flash versions and test. Here is a tip for Mac OSX ( also works on Windows I think ) to install multiple versions of Flash Player plugins for Firefox.
When Firefox starts, it scans for plugins in 3 sets of directories:

General plugin directory for current [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>As developing ActionScript projects, one have to frequently switch between different Flash versions and test. Here is a tip for Mac OSX ( also works on Windows I think ) to install multiple versions of Flash Player plugins for Firefox.</p>
<p>When Firefox starts, it scans for plugins in 3 sets of directories:</p>
<ol>
<li>General plugin directory for current system and user, e.g.<br />
	<em>/Library/Internet Plug-Ins/</em>
</li>
<li>Plugin directory for current application executable file, e.g.<br />
	<em>/Applications/Firefox.app/Contents/MacOS/plugins/</em>
</li>
<li>Plugin directory for current profile, e.g. <br />
	<em>~/Library/Application Support/Firefox/Profiles/fw9q5h64.default/plugins</em>
</li>
</ol>
<p>Then it will<br />
	<a title="Firefox source code" target="_blank" href="http://mxr.mozilla.org/firefox/source/modules/plugin/base/src/nsPluginHostImpl.cpp#5115">sort by modification time</a><br />
, dedupe and load all the plugins.</p>
<p>Now you get the trick: </p>
<ol>
<li>Extract the desired firefox plugin files (<br />
	<em>e.g. Flash Player.plugin</em><br />
 and<br />
	<em>flashplayer.xpt</em><br />
 on Mac ) from Flash plugin installer or copy from installed directory ( e.g.<br />
	<em>/Library/Internet Plug-Ins/</em><br />
 on Mac )</li>
<li>Copy these files to your favorite firefox app or profile directory</li>
<li>use the command<br />
	<em><br />
	<br />   touch -t 201603150101.01 </em></p>
<p>	<em>Flash Player.plugin</em></p>
<p>	<em>flashplayer.xpt</em></p>
<p>to make the mtime larger than the one in the general directory.</li>
<li>repeat above steps for all flash versions you want.</li>
</ol>
<p>Update: you should check &#8220;Open using Rosetta&#8221; when playing Flash 8 or earlier with Firefox on Mac.</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/04/18/install-multiple-versions-of-flash-plugin-for-firefox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>TextMate bundle for the haXe Language</title>
		<link>http://blog.rollingcode.org/2009/04/04/textmate-bundle-for-the-haxe-language/</link>
		<comments>http://blog.rollingcode.org/2009/04/04/textmate-bundle-for-the-haxe-language/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 07:18:07 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[haXe]]></category>

		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/4/TextMate-bundle-for-the-haXe-Language</guid>
		<description><![CDATA[

	
It&#8217;s modified from some post in the
	haXe mailing list
.
Check it out from
	GitHub
.

]]></description>
			<content:encoded><![CDATA[<div>
<p>
	<img style="width: 768px" src="http://img.skitch.com/20090404-jynb9ur37drkaxmsund9k6pqdk.png" align="center"></p>
<p>It&#8217;s modified from some post in the<br />
	<a href="http://lists.motion-twin.com/mailman/listinfo/haxe">haXe mailing list</a><br />
.</p>
<p>Check it out from<br />
	<a target="_blank" href="http://github.com/freewizard/haxe2.tmbundle/tree/master">GitHub</a><br />
.</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/04/04/textmate-bundle-for-the-haxe-language/feed/</wfw:commentRss>
		</item>
		<item>
		<title>URL Handler and Bookmarklet for The Hit List</title>
		<link>http://blog.rollingcode.org/2009/03/22/url-handler-and-bookmarklet-for-the-hit-list/</link>
		<comments>http://blog.rollingcode.org/2009/03/22/url-handler-and-bookmarklet-for-the-hit-list/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 21:59:48 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[The Hit List]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/3/URL-Handler-and-Bookmarklet-for-The-Hit-List</guid>
		<description><![CDATA[
This app will handle x-thl:// links and add task to your inbox of
	The Hit List
. 
The bookmarklet will use title of web page as title of the task and pick page url and selected text as notes.


	THL URL Handler.app.zip
 - unpack to Applications folder of your Mac

	Send to THL
 - Drag to bookmark bar of your [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>This app will handle x-thl:// links and add task to your inbox of<br />
	<a target="_blank" href="http://www.potionfactory.com/thehitlist/download/">The Hit List</a><br />
. </p>
<p>The bookmarklet will use title of web page as title of the task and pick page url and selected text as notes.</p>
</p>
<p>
	<a title="Download" href="http://dl.getdropbox.com/u/299419/app/THL%20URL%20Handler.app.zip">THL URL Handler.app.zip</a><br />
 - unpack to Applications folder of your Mac</p>
<p>
	<a title="Send to THL" href="//inbox?position=beginning&amp;title='+encodeURIComponent(document.title)+'&amp;notes='+encodeURIComponent(window.location+'nn')+encodeURIComponent(getSelection());">Send to THL</a><br />
 - Drag to bookmark bar of your favourite browser </p>
</p>
<p>If you&#8217;d like to write your own bookmarklet, here&#8217;s the template:</p>
<p>	<span style="color: #00bfbf"><br />
	<em><br />
	<span style="color: #00bfbf"><br />
	<span>position</span><br />
=optional<br />
	<span style="color: #ffffff"></span><br />
</span><br />
</em><br />
</span></p>
<p>
	<strike>only inbox is supported at this stage,</strike><br />
 i&#8217;ll consider if add support for start/due and specify a project in THL some time later.</p>
<p>
	<em><br />
	<strong>Mar 25, 2009 - App updated!</strong><br />
</em><br />
 Newly supports:</p>
<ul>
<li>optional position parameter ( beginning or end )</li>
<li>inbox can be any project or even folder1/folder2/project</li>
</ul>
<p>Enjoy!</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/03/22/url-handler-and-bookmarklet-for-the-hit-list/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Script Entourage messages to The Hit List</title>
		<link>http://blog.rollingcode.org/2009/03/18/script-entourage-messages-to-the-hit-list/</link>
		<comments>http://blog.rollingcode.org/2009/03/18/script-entourage-messages-to-the-hit-list/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 09:30:17 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Entourage]]></category>

		<category><![CDATA[The Hit List]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/3/Script-Entourage-messages-to-The-Hit-List</guid>
		<description><![CDATA[

	The Hit List
 is a good task management software for Mac OSX, and I think it&#8217;s better than
	OmniFocus
 and
	Things
.

 120 then
			set theNotes to get text 1 through 120 of theNotes
			set theNotes to theNotes &#38; "..."
		end if
		tell application "GrowlHelperApp" to notify with name "New Email" title (theTitle) description (theNotes) application name "Entourage Growl Notifier" priority 0 [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>
	<a title="THL" target="_blank" href="http://www.potionfactory.com/blog/2009/01/08/hit-list-public-preview">The Hit List</a><br />
 is a good task management software for Mac OSX, and I think it&#8217;s better than<br />
	<a target="_blank" href="http://www.omnigroup.com/applications/omnifocus/">OmniFocus</a><br />
 and<br />
	<a target="_blank" href="http://culturedcode.com/things/">Things</a><br />
.</p>
</p>
<pre name="code" class="python"> 120 then
			set theNotes to get text 1 through 120 of theNotes
			set theNotes to theNotes &amp; "..."
		end if
		tell application "GrowlHelperApp" to notify with name "New Email" title (theTitle) description (theNotes) application name "Entourage Growl Notifier" priority 0 sticky no icon of application "The Hit List"
	end repeat
end tell
]]&gt;</pre>
<p>To use this as a mail rule, in Entourage, open menuToolsRules, add a new rule with &#8220;Run AppleScript&#8221; as its action.</p>
<p>To use this as a menu item or hotkey script, copy the script to<br />
	<span style="color: #0060bf"><br />
	/Documents/Microsoft User Data/Entourage Script Menu Items/<br />
</span><br />
 , it&#8217;ll appear in the Script menu of Entourage.You can even add a<br />
	<span style="color: #0060bf">cT</span><br />
 after it&#8217;s name so that it will be triggered when you press Ctrl-T.  </p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/03/18/script-entourage-messages-to-the-hit-list/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bulk edit in redmine-0.7.x</title>
		<link>http://blog.rollingcode.org/2009/01/04/bulk-edit-in-redmine-07x/</link>
		<comments>http://blog.rollingcode.org/2009/01/04/bulk-edit-in-redmine-07x/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 06:28:15 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Ruby]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2009/1/Bulk-edit-in-redmine-07x</guid>
		<description><![CDATA[
for those who stick to redmine-0.7, apply this to make its bulk-edit rework in Firefox/Safari.
	


backported from trunk.

]]></description>
			<content:encoded><![CDATA[<div>
<p>for those who stick to redmine-0.7, apply this to make its bulk-edit rework in Firefox/Safari.<br />
	
</p>
<pre name="code" class="js"></pre>
<p>backported from trunk.</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2009/01/04/bulk-edit-in-redmine-07x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Detect ActionScript 2/3 in TextMate</title>
		<link>http://blog.rollingcode.org/2008/12/12/detect-actionscript-23-in-textmate/</link>
		<comments>http://blog.rollingcode.org/2008/12/12/detect-actionscript-23-in-textmate/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 07:07:51 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[ActionScript]]></category>

		<category><![CDATA[TextMate]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2008/12/Detect-ActionScript-23-in-TextMate</guid>
		<description><![CDATA[
I made
	a very rough tmplugin
 (TM 1.x OSX 10.4+ UB) to search the word &#8220;package&#8221; in the beginning of first 20 lines of .as file to determine whether it&#8217;s AS3 or AS2, then select a proper bundle. It&#8217;s modified from
	TabMate
.
You should have
	ActionScript
 and
	ActionScript 3
 tmbundle before install this tmplugin. 

]]></description>
			<content:encoded><![CDATA[<div>
<p>I made<br />
	<a title="TabMate.tmplugin" href="http://dl.getdropbox.com/u/299419/app/TabMate.tmplugin.zip">a very rough tmplugin</a><br />
 (TM 1.x OSX 10.4+ UB) to search the word &#8220;package&#8221; in the beginning of first 20 lines of .as file to determine whether it&#8217;s AS3 or AS2, then select a proper bundle. It&#8217;s modified from<br />
	<a title="TabMate" href="http://konstochvanligasaker.se/tabmate/">TabMate</a><br />
.</p>
<p>You should have<br />
	<a title="ActionScript.tmbundle" href="http://svn.textmate.org/trunk/Bundles/ActionScript.tmbundle">ActionScript</a><br />
 and<br />
	<a title="ActionScript 3.tmbundle" href="http://svn.textmate.org/trunk/Review/Bundles/ActionScript%203.tmbundle">ActionScript 3</a><br />
 tmbundle before install this tmplugin. </p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2008/12/12/detect-actionscript-23-in-textmate/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Growl notification for 1G1G.com</title>
		<link>http://blog.rollingcode.org/2008/12/08/growl-notification-for-1g1gcom/</link>
		<comments>http://blog.rollingcode.org/2008/12/08/growl-notification-for-1g1gcom/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 15:38:05 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2008/12/Growl-notification-for-1G1Gcom</guid>
		<description><![CDATA[
It&#8217;s a
	Fluid
 SSB user script.
// ==UserScript==
// @name        1G1G
// @namespace   http://fluidapp.com
// @description Show Growl notification when song changes
// @include     *
// @author      freewizard gmail.com
// ==/UserScript==

(function () {
    if (window.fluid) {
        window.lastTitle = "亦歌-自由自在听音乐";
        setInterval(function() {
            if (document.title == window.lastTitle) return;
            window.lastTitle = document.title;
            window.fluid.showGrowlNotification({
                title: "亦歌",
                description: window.lastTitle,
                identifier: "www.1G1G.com"
            });
        }, 1000);
    }
})();


]]></description>
			<content:encoded><![CDATA[<div>
<p>It&#8217;s a<br />
	<a target="_blank" href="http://fluidapp.com/">Fluid</a><br />
 SSB user script.</p>
<pre name="code" class="js">// ==UserScript==
// @name        1G1G
// @namespace   http://fluidapp.com
// @description Show Growl notification when song changes
// @include     *
// @author      freewizard gmail.com
// ==/UserScript==

(function () {
    if (window.fluid) {
        window.lastTitle = "亦歌-自由自在听音乐";
        setInterval(function() {
            if (document.title == window.lastTitle) return;
            window.lastTitle = document.title;
            window.fluid.showGrowlNotification({
                title: "亦歌",
                description: window.lastTitle,
                identifier: "www.1G1G.com"
            });
        }, 1000);
    }
})();
</pre>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2008/12/08/growl-notification-for-1g1gcom/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Quick filter by mail topic in Microsoft Entourage</title>
		<link>http://blog.rollingcode.org/2008/10/23/quick-filter-by-mail-topic-in-microsoft-entourage/</link>
		<comments>http://blog.rollingcode.org/2008/10/23/quick-filter-by-mail-topic-in-microsoft-entourage/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 09:43:15 +0000</pubDate>
		<dc:creator>freewizard</dc:creator>
		
		<category><![CDATA[Crap]]></category>

		<category><![CDATA[Entourage]]></category>

		<guid isPermaLink="false">http://blog.rollingcode.org/2008/10/Quck-filter-view-by-topic-in-Entourage</guid>
		<description><![CDATA[
                This script will filter mails by topic ( actually subject without &#8220;Re:&#8221; and &#8220;Fw:&#8221; ) of the selected message.
Save the following AppleScript code as ~/Documents/Microsoft User Data/Entourage Script Menu Items/Quick FiltercF
on ltrim(someText)
	repeat until first character of someText is not [...]]]></description>
			<content:encoded><![CDATA[<div>
                This script will filter mails by topic ( actually subject without &#8220;Re:&#8221; and &#8220;Fw:&#8221; ) of the selected message.</p>
<p>Save the following AppleScript code as ~/Documents/Microsoft User Data/Entourage Script Menu Items/Quick FiltercF</p>
<pre name="code" class="html">on ltrim(someText)
	repeat until first character of someText is not in {" ", tab, ASCII character 10, return, ASCII character 0}
		set someText to text 2 thru -1 of someText
	end repeat
	return someText
end ltrim

on run
	tell application "Microsoft Entourage"
		--activate
		set msgs to the current messages
		if msgs is {} then return
		repeat with msg in msgs
			set subj to get the subject of msg
		end repeat
		set AppleScript's text item delimiters to {":"}
		set tpc to last text item of subj
	end tell
	set tpc to my ltrim(tpc)
	set the clipboard to tpc
	tell application "System Events" to tell process "Entourage"
		delay 0.1
		keystroke tab
		delay 0.1
		keystroke "v" using command down
		keystroke tab
	end tell
end run
</pre>
<p>Make sure quick filter is turned on (Cmd-Shift-L);<br />
	<br />Click one item in the messages list;<br />
	<br />Click script menu and select our script.
            </div>
]]></content:encoded>
			<wfw:commentRss>http://blog.rollingcode.org/2008/10/23/quick-filter-by-mail-topic-in-microsoft-entourage/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
