<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
	<title>Last 10 Submissions RSS Feed</title>
	<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&module=search&section=search&do=last_ten]]></link>
	<pubDate>Sat, 21 Nov 2009 00:58:13 +0000</pubDate>
	<ttl>1800</ttl>
	<description>This is the RSS feed of the last ten file submissions accepted into our database.  This RSS feed is always up to date as it is dynamically updated.</description>
	<item>
		<title>test</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=161]]></link>
		<description></description>
		<pubDate>Fri, 24 Jul 2009 14:30:28 +0000</pubDate>
		<guid isPermaLink="false">161</guid>
	</item>
	<item>
		<title>IE Builder</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=160]]></link>
		<description><![CDATA[See Forum for all info...<br />
<br />
<a href='http://www.autoitscript.com/forum/index.php?showtopic=19368&view=findpost&p=133767' class='bbc_url' title='External link' rel='external'>http://www.autoitscript.com/forum/index....p?showtopic=19368&view=findpost&p=133767</a><br />
<br />
<br />
Enjoy!!<br />
8)]]></description>
		<pubDate>Sun, 19 Jul 2009 00:23:48 +0000</pubDate>
		<guid isPermaLink="false">160</guid>
	</item>
	<item>
		<title>MP3 Inventory</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=158]]></link>
		<description><![CDATA[Ever wanted to make a list for those mp3 files you have sitting in a directory?<br />
<br />
Look no further... I have made a simple script to do such that!<br />
<br />
http://666kb.com/i/ba65s2vm9tusi1gc3.jpg<br />
<br />
http://666kb.com/i/ba65si62u2d58p3oz.jpg<br />
<br />
http://666kb.com/i/ba65sz75n8lyc5b03.jpg<br />
<br />
http://666kb.com/i/ba65sre3u7g3q1yib.jpg<br />
<br />
<div class='geshitop'>&#91; code='text' &#93; &nbsp; &nbsp;( <a href='javascript:;' onclick='javascript:geshiExpand(this)'>Expand</a><a href='javascript:;' onclick='javascript:geshiCollapse(this)' style='display: none'>Collapse</a> - <a href='#' onclick='javascript:geshiPopup(this); return false;'>Popup</a> )</div><div class='geshimainboxed'><pre><div class="text" style="font-family:monospace;">#include &lt;File.au3&gt;
#include &lt;GUIConstants.au3&gt;

Opt("TrayIconHide",1)
Global $temppath = @ScriptDir

GUICreate("MP3 Inventory", 320, 205, -1, @DesktopHeight/10)
GUICtrlCreateLabel("This program is for Mp3 file(s) only! &nbsp; - &nbsp; Created by Rogue", 24, 5, 275, 20)
$Button_1 = GUICtrlCreateButton("Take Invenotry", 200, 34, 100, 50)
$Checkbox_1 = GUICtrlCreateCheckbox("Include Subfolders", 10, 30)
$Checkbox_2 = GUICtrlCreateCheckbox("Include Full File Path", 10, 55)
GUICtrlCreateLabel("Save Inventory File to:", 8, 87, 125, 20)
Global $Input1 = GUICtrlCreateInput(@ScriptDir, 25, 107, 240, 20)
$Browse_1 = GUICtrlCreateButton("...", 270, 107, 30, 20)
GUICtrlCreateLabel("Scan directory for Mp3's:", 8, 137, 125, 20)
Global $Input2 = GUICtrlCreateInput(@ScriptDir, 25, 157, 240, 20)
$Browse_2 = GUICtrlCreateButton("...", 270, 157, 30, 20)
GUICtrlCreateLabel("Progress:", 90, 180, 65, 20)
GUICtrlSetFont (-1, 10, 600)
Global $Label_1 = GUICtrlCreateLabel("Waiting", 165, 180, 95, 20)
GUICtrlSetFont (-1, 10, 600)
GUISetState (@SW_SHOW)

While 1
&nbsp; &nbsp; $msg = GUIGetMsg()
&nbsp; &nbsp; $Text = @ScriptDir & "&#092;Inventory.txt"
&nbsp; &nbsp; Select
&nbsp; &nbsp; &nbsp; &nbsp; Case $msg = $GUI_EVENT_CLOSE
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ExitLoop
&nbsp; &nbsp; &nbsp; &nbsp; Case $msg = $Button_1
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetData($Label_1, "Scanning...")
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetFont (-1, 10, 600)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetColor(-1, 16711680)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If BitAND(GUICtrlRead($Checkbox_1), $GUI_CHECKED) = $GUI_CHECKED And BitAND(GUICtrlRead($Checkbox_2), $GUI_CHECKED) = $GUI_CHECKED Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $Inventory = _RecFileListToArray($temppath, "*.mp3", 1, 1, 1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @Error=4 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox (48,"Error","No MP3 Files Found.", 5)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ElseIf BitAND(GUICtrlRead($Checkbox_1), $GUI_CHECKED) = $GUI_CHECKED And BitAND(GUICtrlRead($Checkbox_2), $GUI_UNCHECKED) = $GUI_UNCHECKED Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $Inventory = _RecFileListToArray($temppath, "*.mp3", 1, 1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @Error=4 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox (48,"Error","No MP3 Files Found.", 5)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ElseIf BitAND(GUICtrlRead($Checkbox_1), $GUI_UNCHECKED) = $GUI_UNCHECKED And BitAND(GUICtrlRead($Checkbox_2), $GUI_CHECKED) = $GUI_CHECKED Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $Inventory = _RecFileListToArray($temppath, "*.mp3", 1, 0, 1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @Error=4 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox (48,"Error","No MP3 Files Found.", 5)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Else
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $Inventory = _RecFileListToArray($temppath, "*.mp3", 1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @Error=4 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox (48,"Error","No MP3 Files Found.", 5)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If FileExists($Text) Then FileDelete($Text)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _FileWriteFromArray($Text, $Inventory, 1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetData($Label_1, "Done")
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetFont (-1, 10, 600)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetColor(-1, 32768)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Sleep(2000)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $CountLines = (_FileCountLines($Text) -1)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If $CountLines &gt; 0 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox(1, "Info", "Number of Mp3's in folder: " & $Countlines & @CRLF & "List saved at: " & $Text, 8)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Run("notepad.exe " & $Text)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; Case $msg = $Browse_1
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $temppath = FileSelectFolder("Save File Where", "", 1, @ScriptDir)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetData($Input1, $temppath)
&nbsp; &nbsp; &nbsp; &nbsp; Case $msg = $Browse_2
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $temppath = FileSelectFolder("Choose a folder with Mp3's", "", 1, @ScriptDir)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GUICtrlSetData($Input2, $temppath)
&nbsp; &nbsp; EndSelect
Wend

Func _RecFileListToArray($sPath, $sFilter = "*", $iFlag = 0, $iRecur = 0, $iFullPath = 0)
&nbsp; &nbsp; Local $asFileList&#91;1&#93;, $sFullPath
&nbsp; &nbsp; If Not FileExists($sPath) Then Return SetError(1, 1, "")
&nbsp; &nbsp; If StringRight($sPath, 1) &lt;&gt; "&#092;" Then $sPath = $sPath & "&#092;"
&nbsp; &nbsp; If (StringInStr($sFilter, "&#092;")) Or (StringInStr($sFilter, "/")) Or (StringInStr($sFilter, ":")) Or (StringInStr($sFilter, "&gt;")) Or (StringInStr($sFilter, "&lt;")) Or (StringInStr($sFilter, "|")) Or (StringStripWS($sFilter, 8) = "") Then Return SetError(2, 2, "")
&nbsp; &nbsp; If Not ($iFlag = 0 Or $iFlag = 1 Or $iFlag = 2) Then Return SetError(3, 3, "")
&nbsp; &nbsp; If Not ($iRecur = 0 Or $iRecur = 1) Then Return SetError(4, 4, "")
&nbsp; &nbsp; If $iFullPath = 0 Then
&nbsp; &nbsp; &nbsp; &nbsp; $sFullPath = $sPath
&nbsp; &nbsp; ElseIf $iFullPath = 1 Then
&nbsp; &nbsp; &nbsp; &nbsp; $sFullPath = ""
&nbsp; &nbsp; &nbsp; &nbsp; $sFullPath = StringTrimLeft($sPath, (StringLen(@ScriptDir) + 1))
&nbsp; &nbsp; Else
&nbsp; &nbsp; &nbsp; &nbsp; Return SetError(5, 5, "")
&nbsp; &nbsp; EndIf
&nbsp; &nbsp; _FLTA_Search($sPath, $sFilter, $iFlag, $iRecur, $sFullPath, $asFileList)
&nbsp; &nbsp; If $asFileList&#91;0&#93; = 0 Then Return SetError(6, 6, "")
&nbsp; &nbsp; Return $asFileList
EndFunc &nbsp;

Func _FLTA_Search($sStartFolder, $sFilter, $iFlag, $iRecur, $sFullPath, ByRef $asFileList)
&nbsp; &nbsp; 
&nbsp; &nbsp; Local $hSearch, $sFile

&nbsp; &nbsp; If StringRight($sStartFolder, 1) &lt;&gt; "&#092;" Then $sStartFolder = $sStartFolder & "&#092;"
; First look for filtered files/folders in folder
&nbsp; &nbsp; $hSearch = FileFindFirstFile($sStartFolder & $sFilter)
&nbsp; &nbsp; If $hSearch &gt; 0 Then
&nbsp; &nbsp; &nbsp; &nbsp; While 1
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $sFile = FileFindNextFile($hSearch)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @error Then ExitLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Switch $iFlag
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Case 0; Both files and folders
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If $iRecur And StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") &lt;&gt; 0 Then ContinueLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Case 1; Files Only
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") &lt;&gt; 0 Then ContinueLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; Case 2; Folders only
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") = 0 Then ContinueLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndSwitch
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If $iFlag = 1 And StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") &lt;&gt; 0 Then ContinueLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If $iFlag = 2 And StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") = 0 Then ContinueLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _FLTA_Add($asFileList, $sFullPath, $sStartFolder, $sFile)
&nbsp; &nbsp; &nbsp; &nbsp; WEnd
&nbsp; &nbsp; &nbsp; &nbsp; FileClose($hSearch)
&nbsp; &nbsp; &nbsp; &nbsp; ReDim $asFileList&#91;$asFileList&#91;0&#93; + 1&#93;
&nbsp; &nbsp; EndIf
&nbsp; &nbsp; 
&nbsp; &nbsp; If $iRecur = 1 Then
&nbsp; &nbsp;; Now look for subfolders
&nbsp; &nbsp; &nbsp; &nbsp; $hSearch = FileFindFirstFile($sStartFolder & "*.*")
&nbsp; &nbsp; &nbsp; &nbsp; If $hSearch &gt; 0 Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; While 1
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $sFile = FileFindNextFile($hSearch)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If @error Then ExitLoop
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If StringInStr(FileGetAttrib($sStartFolder & $sFile), "D") And ($sFile &lt;&gt; "." Or $sFile &lt;&gt; "..") Then
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; If folders needed, add subfolder to array
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; If $iFlag &lt;&gt; 1 Then _FLTA_Add($asFileList, $sFullPath, $sStartFolder, $sFile)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;; Recursive search of this subfolder
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _FLTA_Search($sStartFolder & $sFile, $sFilter, $iFlag, $iRecur, $sFullPath, $asFileList)
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; WEnd
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; FileClose($hSearch)
&nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; EndIf
&nbsp; &nbsp; 
EndFunc

Func _FLTA_Add(ByRef $asFileList, $sFullPath, $sStartFolder, $sFile)
&nbsp; &nbsp; 
&nbsp; &nbsp; Local $sAddFolder
&nbsp; &nbsp; 
&nbsp; &nbsp; $asFileList&#91;0&#93; += 1
&nbsp; &nbsp; If UBound($asFileList) &lt;= $asFileList&#91;0&#93; Then ReDim $asFileList&#91;UBound($asFileList) * 2&#93;
&nbsp; &nbsp; If $sFullPath = "" Then
&nbsp; &nbsp; &nbsp; &nbsp; $sAddFolder = $sStartFolder
&nbsp; &nbsp; Else
&nbsp; &nbsp; &nbsp; &nbsp; $sAddFolder = StringReplace($sStartFolder, $sFullPath, "")
&nbsp; &nbsp; EndIf
&nbsp; &nbsp; $asFileList&#91;$asFileList&#91;0&#93;&#93; = $sAddFolder & $sFile
&nbsp; &nbsp; 
EndFunc</div></pre></div>]]></description>
		<pubDate>Sat, 27 Jun 2009 22:06:55 +0000</pubDate>
		<guid isPermaLink="false">158</guid>
	</item>
	<item>
		<title>MyPCTweet - Use Twitter to Control Your PC</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=156]]></link>
		<description><![CDATA[<span style='font-size: 15px;'><strong class='bbc'><br />
<br />
http://img36.imageshack.us/img36/7230/clipboard02isq.jpg<br />
<br />
<br />
<br />
No Password or Personal info needed, it works with the "Account Name" </strong></span><br />
<strong class='bbc'><span style='font-size: 15px;'><br />
Easy to use... Just download and read the Simple Instructions.<br />
<br />
This Lite Version is completely Free.<br />
<br />
Example...  "@MyPCTweet Message#I Love My Twins!!#"<br />
<br />
and that's it!!<br />
<br />
<a href='http://mypchell.com/content/view/69/1/' class='bbc_url' title='External link' rel='external'>over 150+ run commands available here</a><br />
<br />
You can Command as many computers as you want with "Just One Tweet"<br />
<br />
Enjoy!!<br />
<br />
Valuater<br />
8)</span></strong><br />
<br />
<a href='http://www.autoitscript.com/forum/index.php?showtopic=97110' class='bbc_url' title='External link' rel='external'>** For More Information, See the Complete MyPcTweet Q & A Forum Thread **</a><br />
<br />
<span style='font-size: 9px;'>Not associated with twitter</span>]]></description>
		<pubDate>Sun, 21 Jun 2009 00:36:09 +0000</pubDate>
		<guid isPermaLink="false">156</guid>
	</item>
	<item>
		<title>s!mpL3 LAN Messenger</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=152]]></link>
		<description><![CDATA[I started working on this program in the summer then I stopped cause I faced some problems I couldn't overcome back then. Now that I've practiced more and have become a better scripter/programmer I'm releasing the program to the public to get some opinions. I know it's not a new concept but it's the first program I started besides some small stuff I did just for practice! I won't post the source code yet because it's still under construction, although I'm sure I've posted early stages of the code with bugs in the past in some topic...<br />
<br />
What I wanted was a simple, small, serverless program that would work without installation cause I wanted it for where I work, so I ended up with this!<br />
<br />
I have attached an image of version 2.9.5.7 to check out more visit the main thread.<br />
<br />
<strong class='bbc'>Current version 2.9.5.9!</strong> [02/11/2009]<br />
<br />
<strong class='bbc'>1.</strong> Fixed Settings window position. (Thanks again BoonPek, read <a href='http://www.autoitscript.com/forum/index.php?showtopic=88782&view=findpost&p=741861' class='bbc_url' title='External link' rel='external'>here</a>)<br />
(That was because of "GUICreate() with $WS_EX_MDICHILD has been fixed to be relative to client area as documented." in the latest BETA, to read more go <a href='http://www.autoitscript.com/forum/index.php?showtopic=104576' class='bbc_url' title='External link' rel='external'>here</a>)<strong class='bbc'> </strong><strong class='bbc'><br />
</strong><br />
<br />
<br />
<strong class='bbc'>Check the corresponding thread to view/download the change log and more information:</strong><br />
<br />
<a href='http://www.autoitscript.com/forum/index.php?showtopic=88782' class='bbc_url' title='External link' rel='external'>http://www.autoitscript.com/forum/index.php?showtopic=88782</a>]]></description>
		<pubDate>Thu, 07 May 2009 07:55:10 +0000</pubDate>
		<guid isPermaLink="false">152</guid>
	</item>
	<item>
		<title>MRU.au3</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=147]]></link>
		<description>Most Recently Used (MRU) List Automation UDF Library for AutoIt3</description>
		<pubDate>Tue, 17 Mar 2009 00:01:33 +0000</pubDate>
		<guid isPermaLink="false">147</guid>
	</item>
	<item>
		<title>XSkin for ASC - Black-Autoit</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=144]]></link>
		<description><![CDATA[<strong class='bbc'><span style='font-size: 15px;'>**NEW 3.0+** ( with picture menu )<br />
<br />
See our New XSkin-Pro Home!!<br />
<br />
<span style='font-size: 17px;'><a href='http://www.clicktask.com/' class='bbc_url' title='External link' rel='external'>www.ClickTask.com</a></span> <br />
<br />
For ALL the Latest Skins!<br />
<br />
Valuater<br />
8)</span></strong>]]></description>
		<pubDate>Sat, 07 Mar 2009 19:21:35 +0000</pubDate>
		<guid isPermaLink="false">144</guid>
	</item>
	<item>
		<title>Sleep until a further date</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=143]]></link>
		<description><![CDATA[I remember about 5 months or so ago someone was asking if there was a way to sleep until a specific time (Date) then run the script...I wrote this up for him, but forgot to post it sleep.gif hope this helps someone, cause its useless to me tongue.gif<br />
<br />
<br />
<br />
you can push it further by adding year in there too, but thats kind of useless tongue.gif...also, it may be benaficial to you if you made it =&gt; rather than =<br />
<br />
heres another way to use the func<br />
<br />
<br />
<div class='geshitop'>&#91; code='text' &#93; &nbsp; &nbsp;( <a href='#' onclick='javascript:geshiPopup(this); return false;'>Popup</a> )</div><div class='geshimain'><pre><div class="text" style="font-family:monospace;">#include&lt;Misc.au3&gt;

Global $Month = 12
Global $Day = 28
Global $Hour = 21
Global $Minute = 49

_Sleep($Month, $Day, $Hour, $Minute)

Func _Sleep($Month = @MON, $Day = @MDAY, $Hour = @HOUR, $Minute = @MIN)
&nbsp; &nbsp; Do
&nbsp; &nbsp; &nbsp; &nbsp; If _IsPressed('10') And _IsPressed('be') Then; Shift + &gt;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox(0, "", "Working!")
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ExitLoop
&nbsp; &nbsp; &nbsp; &nbsp; EndIf
&nbsp; &nbsp; ; &nbsp; &nbsp; &nbsp; &nbsp; MsgBox(0, "", @MON & ":" & @MDay & ":" & @HOUR & ":" & @MIN)
&nbsp; &nbsp; Until $Month = @MON And $Day = @MDAY And $Hour = @HOUR And $Minute = @MIN
&nbsp; &nbsp; MsgBox(0, "", "Works")
EndFunc &nbsp;;==&gt;_Sleep</div></pre></div>]]></description>
		<pubDate>Sat, 14 Feb 2009 14:58:46 +0000</pubDate>
		<guid isPermaLink="false">143</guid>
	</item>
	<item>
		<title>Auto Shutdown</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=142]]></link>
		<description>got a younger brother...annoying parent....or snoopy cat? make your computer automatically shut down unless they enter in the correct username and password...</description>
		<pubDate>Sat, 14 Feb 2009 14:55:04 +0000</pubDate>
		<guid isPermaLink="false">142</guid>
	</item>
	<item>
		<title>XSkin for ASC - Black-Vegas</title>
		<link><![CDATA[http://www.autoitscript.com/forum/index.php?app=downloads&showfile=141]]></link>
		<description><![CDATA[<strong class='bbc'><span style='font-size: 15px;'>**NEW 3.0+** ( with picture menu )<br />
<br />
See our New XSkin-Pro Home!!<br />
<br />
<span style='font-size: 17px;'><a href='http://www.ClickTask.com' class='bbc_url' title='External link' rel='external'>www.ClickTask.com</a></span> <br />
<br />
For ALL the Latest Skins!<br />
<br />
Valuater<br />
8)</span></strong>]]></description>
		<pubDate>Tue, 27 Jan 2009 06:27:26 +0000</pubDate>
		<guid isPermaLink="false">141</guid>
	</item>
</channel>
</rss>