<?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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PokerAI.com</title>
	<atom:link href="http://www.pokerai.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pokerai.com</link>
	<description>Tools, Tips &#38; Hints</description>
	<lastBuildDate>Fri, 08 Apr 2011 00:46:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>OpenScrape &#8211; AutoIT script to collect fonts for OpenHoldem</title>
		<link>http://www.pokerai.com/2011/04/openscrape-autoit-script-to-collect-fonts-for-openholdem/</link>
		<comments>http://www.pokerai.com/2011/04/openscrape-autoit-script-to-collect-fonts-for-openholdem/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 22:41:00 +0000</pubDate>
		<dc:creator>pokerai</dc:creator>
				<category><![CDATA[Autoit]]></category>
		<category><![CDATA[OpenHoldem]]></category>
		<category><![CDATA[OpenScrape]]></category>

		<guid isPermaLink="false">http://www.pokerai.com/?p=1</guid>
		<description><![CDATA[Original thread (Thank you fn101) When editing/creating table maps, there are lots of tasks that are repetitive and time-consuming that can be automated. Here&#8217;s one of those tasks&#8230;. Once you have the tablemap laid out and need to create all the fonts you&#8217;ve already captured in replay frames, this tool will automate the process of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.maxinmontreal.com/forums/viewtopic.php?f=175&amp;t=12687">Original thread</a> (Thank you <strong>fn101</strong>)</p>
<p>When editing/creating table maps, there are lots of tasks that are repetitive and time-consuming that can be automated. Here&#8217;s one of those tasks&#8230;.</p>
<p>Once you have the tablemap laid out and need to create all the fonts you&#8217;ve already captured in replay frames, this tool will automate the process of &#8220;capturing&#8221; all of the font patterns for you to edit later.</p>
<p>What this script does: (From <strong>Folder</strong>&#8216;s request)</p>
<blockquote><p>1) Click Refresh (Next frame) (OS table view window)<br />
2) Click Create Font (OS utilities window)<br />
3) Either A) Click OK on &#8220;Font creation error&#8221; message box (no new fonts)<br />
or B) Click OK on Font creation window (new fonts are found)<br />
4) Repeat</p>
<p>This will cause all new fonts to be listed as &#8220;?&#8221; but those are easy to rename into the correct font or delete after wards.</p>
<p>When done (you have finished your coffee) you select a new text box, like the pot total, and start the script again.*</p>
<p>I think this would be a far less time consuming way to collect fonts/check your TM than doing this manually.</p>
<p>If  anyone has created such a script I would like to hear from you, if  anyone thinks this is a stupid thing to do, please let me know too.</p></blockquote>
<div>*Actually &#8211; this script runs through ALL of your regions and will grab all of the font patterns.</div>
<div></div>
<div>I&#8217;ve made an edit that exits the program after a user specified # of frames are grabbed. In the original version, it will loop forever.</div>
<div></div>
<div>Make sure you dont have OpenReplay obstructed!  Otherwise, you&#8217;ll find lots of invalid fonts.</div>

<div class="my_syntax_box"><span class="my_syntax_selecall"><a href="javascript:;" onclick="selectCode(this); return false;">Selec All</a> </span><span class="my_syntax_Bar">Code:</span><div class="my_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
</pre></td><td class="code"><pre class="autoit" style="font-family:monospace;"><span style="font-style: italic; color: #009933;">; Since OpenReplay loops - &quot;ESC&quot; quits..</span>
&nbsp;
<span style="font-style: italic; color: #009933;">; Required: OpenScrape loaded with a TM and connected to OpenReplay with a loaded frame.</span>
&nbsp;
<span style="font-style: italic; color: #009933;">; The number of replay frames to collect</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$ReplayFrames</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">100</span>
&nbsp;
<span style="font-style: italic; color: #009933;">; Change these depending on your PC's performance</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$QuickDelay</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">250</span>    <span style="font-style: italic; color: #009933;">; How quickly to move to the next item. Give enough time for the Create Font button state to update.</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$RefreshDelay</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">1000</span>    <span style="font-style: italic; color: #009933;">; How long before you start after refreshing the table.</span>
&nbsp;
<span style="font-style: italic; color: #009933;">; Leave the rest alone!</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleTMPropWin</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[TITLE:TableMap;CLASS:#32770]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleOpenScrape</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[CLASS:OpenScrape]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleTreeView</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[CLASS:SysTreeView32; INSTANCE:1]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleCreateFont</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[CLASS:Button; INSTANCE:24]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleFontCreationError</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[TITLE:Font creation error;CLASS:#32770]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleFontCreationOKButton</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[CLASS:Button; INSTANCE:1]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharacters</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[TITLE:Add font characters;CLASS:#32770]&quot;</span>
<span style="color: #0000FF; font-weight: bold;">Local</span> <span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharactersOKButton</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;[CLASS:Button; INSTANCE:2]&quot;</span>
&nbsp;
<span style="color: #000080; font-style: italic; font-weight: bold;">HotKeySet</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #9977BB;">&quot;{esc}&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;Quit&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="font-weight: bold; color: #AA0000;">$TMPropWin</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #000080; font-style: italic; font-weight: bold;">WinGetHandle</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleTMPropWin</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #0000FF; font-weight: bold;">If</span> <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">==</span><span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #0000FF; font-weight: bold;">Then</span>
   <span style="color: #000080; font-style: italic; font-weight: bold;">MsgBox</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;FoldersFontTool&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;OS TableMap Properties Window not found.&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
   <span style="color: #0000FF; font-weight: bold;">Exit</span>
<span style="color: #0000FF; font-weight: bold;">EndIf</span>
&nbsp;
<span style="font-style: italic; color: #009933;">;Get handle to the treeview</span>
<span style="font-weight: bold; color: #AA0000;">$TreeView</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #000080; font-style: italic; font-weight: bold;">ControlGetHandle</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TitleTreeView</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
fCW<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #9977BB;">&quot;$TreeView:&quot;</span> <span style="color: #FF0000; font-weight: bold;">&amp;</span> <span style="font-weight: bold; color: #AA0000;">$TreeView</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="font-style: italic; color: #009933;">;Get the regions</span>
<span style="color: #000080; font-style: italic; font-weight: bold;">ControlTreeView</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TreeView</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;Expand&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;#2&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<span style="font-weight: bold; color: #AA0000;">$Regions</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #000080; font-style: italic; font-weight: bold;">ControlTreeView</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TreeView</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;GetItemCount&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;#2&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
fCW<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #9977BB;">&quot;$Regions:&quot;</span><span style="color: #FF0000; font-weight: bold;">&amp;</span><span style="font-weight: bold; color: #AA0000;">$Regions</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="font-weight: bold; color: #AA0000;">$CreateFont</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #000080; font-style: italic; font-weight: bold;">ControlGetHandle</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TitleCreateFont</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
&nbsp;
<span style="color: #0000FF; font-weight: bold;">If</span> <span style="font-weight: bold; color: #AA0000;">$Regions</span><span style="color: #FF0000; font-weight: bold;">&gt;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span> <span style="color: #0000FF; font-weight: bold;">Then</span>
   <span style="color: #0000FF; font-weight: bold;">For</span> <span style="font-weight: bold; color: #AA0000;">$xx</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span> <span style="color: #0000FF; font-weight: bold;">to</span> <span style="font-weight: bold; color: #AA0000;">$ReplayFrames</span>
      <span style="color: #0000FF; font-weight: bold;">For</span> <span style="font-weight: bold; color: #AA0000;">$a</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="color: #AC00A9; font-style: italic; font-weight: bold;">0</span> <span style="color: #0000FF; font-weight: bold;">to</span> <span style="font-weight: bold; color: #AA0000;">$Regions</span><span style="color: #FF0000; font-weight: bold;">-</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">1</span>
         <span style="font-weight: bold; color: #AA0000;">$Select</span> <span style="color: #FF0000; font-weight: bold;">=</span> <span style="font-weight: bold; color: #9977BB;">&quot;#2|#&quot;</span> <span style="color: #FF0000; font-weight: bold;">&amp;</span> <span style="font-weight: bold; color: #AA0000;">$a</span>
         fCW<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$Select</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
         <span style="color: #000080; font-style: italic; font-weight: bold;">ControlTreeView</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TreeView</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;Select&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$Select</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
         <span style="color: #000080; font-style: italic; font-weight: bold;">Sleep</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #AC00A9; font-style: italic; font-weight: bold;">100</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
         <span style="color: #0000FF; font-weight: bold;">If</span> <span style="color: #000080; font-style: italic; font-weight: bold;">ControlCommand</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$CreateFont</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;IsEnabled&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #0000FF; font-weight: bold;">Then</span>
            <span style="color: #0000FF; font-weight: bold;">While</span> <span style="color: #0000FF; font-weight: bold;">Not</span> <span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleFontCreationError</span><span style="color: #FF0000; font-weight: bold;">&#41;</span> <span style="color: #0000FF; font-weight: bold;">OR</span> <span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharacters</span><span style="color: #FF0000; font-weight: bold;">&#41;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TMPropWin</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$CreateFont</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">Sleep</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$QuickDelay</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
            <span style="color: #0000FF; font-weight: bold;">WEnd</span>
            <span style="color: #0000FF; font-weight: bold;">While</span> <span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleFontCreationError</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleFontCreationError</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TitleFontCreationOKButton</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">Sleep</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$QuickDelay</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
            <span style="color: #0000FF; font-weight: bold;">WEnd</span>
            <span style="color: #0000FF; font-weight: bold;">While</span> <span style="color: #000080; font-style: italic; font-weight: bold;">WinExists</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharacters</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">ControlClick</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharacters</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #9977BB;">&quot;&quot;</span><span style="color: #FF0000; font-weight: bold;">,</span> <span style="font-weight: bold; color: #AA0000;">$TitleAddFontCharactersOKButton</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
               <span style="color: #000080; font-style: italic; font-weight: bold;">Sleep</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$QuickDelay</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
            <span style="color: #0000FF; font-weight: bold;">WEnd</span>
         <span style="color: #0000FF; font-weight: bold;">EndIf</span>
      <span style="color: #0000FF; font-weight: bold;">Next</span>
      <span style="color: #000080; font-style: italic; font-weight: bold;">SendKeepActive</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$TitleOpenScrape</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
      <span style="color: #000080; font-style: italic; font-weight: bold;">Send</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #9977BB;">&quot;{F5}&quot;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
      <span style="color: #000080; font-style: italic; font-weight: bold;">Sleep</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$RefreshDelay</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
   <span style="color: #0000FF; font-weight: bold;">Next</span>
<span style="color: #0000FF; font-weight: bold;">EndIf</span>
&nbsp;
<span style="color: #0000FF; font-weight: bold;">Func</span> Quit<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
   <span style="color: #0000FF; font-weight: bold;">Exit</span>
<span style="color: #0000FF; font-weight: bold;">EndFunc</span>
&nbsp;
<span style="color: #0000FF; font-weight: bold;">Func</span> fCW<span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$a</span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
   <span style="color: #000080; font-style: italic; font-weight: bold;">ConsoleWrite</span><span style="color: #FF0000; font-weight: bold;">&#40;</span><span style="font-weight: bold; color: #AA0000;">$a</span> <span style="color: #FF0000; font-weight: bold;">&amp;</span> <span style="color: #800000; font-weight: bold;"><span style="font-weight: bold; color: #AA0000;">@CRLF</span></span><span style="color: #FF0000; font-weight: bold;">&#41;</span>
<span style="color: #0000FF; font-weight: bold;">EndFunc</span></pre></td></tr></table></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.pokerai.com/2011/04/openscrape-autoit-script-to-collect-fonts-for-openholdem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

