[Archive] Collection of lost AHK Scripts & Libraries

Post your working scripts, libraries and tools for AHK v1.1 and older
brutus_skywalker
Posts: 175
Joined: 24 Dec 2016, 13:16
Location: Antarctica

Re: [Archive] Collection of lost AHK Scripts & Libraries

12 May 2018, 22:49

Does anyone have a copy of rajat's Active GoTo v4, the only versions i seem to find archived are older ones' that don't match the description of it's final update. Thx in advance.
Outsourcing Clicks & Presses Since 2004.
User avatar
jballi
Posts: 723
Joined: 29 Sep 2013, 17:34

Re: [Archive] Collection of lost AHK Scripts & Libraries

13 May 2018, 03:05

I have a ActiveGoto script in a "v4" folder. I cannot guarantee the veracity of the file or the version. I hope it's what you need.

https://www.dropbox.com/s/xpurtiis52kk2 ... o.zip?dl=1
brutus_skywalker
Posts: 175
Joined: 24 Dec 2016, 13:16
Location: Antarctica

Re: [Archive] Collection of lost AHK Scripts & Libraries

13 May 2018, 04:15

jballi wrote:I have a ActiveGoto script in a "v4" folder. I cannot guarantee the veracity of the file or the version. I hope it's what you need.

https://www.dropbox.com/s/xpurtiis52kk2 ... o.zip?dl=1


:dance: THANKS DUDE, Exactly what i was looking for. FORUM ROCKS!!!
Outsourcing Clicks & Presses Since 2004.
User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: [Archive] Collection of lost AHK Scripts & Libraries

19 May 2018, 11:03

The Listing from AHK-libs-and-classes-collection
doesnt work... i tried the html and the script... :think:
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
drozdman
Posts: 78
Joined: 05 Dec 2015, 01:07

Re: [Archive] Collection of lost AHK Scripts & Libraries

01 Jun 2018, 19:28

I have been using this Icon Browser. Taken from this old forum
(I changed it a little to quickly select .dll files).
Useful for looking for icons for GUIs.

Code: Select all

; Program: Icon Browser
; Version: 00
; Last Modified: 2005.09.29
; Last Changes: First Version
;https://autohotkey.com/board/topic/5278-simple-icon-browser/ ?
file = %SystemRoot%\system32\SHELL32.dll

Start:
Gui, Destroy
SetBatchLines, -1
Gui, Margin, 5, 5
Gui, color, white
Gui, font, s8, Tahoma
;Gui, Add, Edit, w300 r1 readonly vFile -Multi, %file%
Gui, Add, ComboBox, w300 vFile2 gSelect2 -Multi Limit, %file%|wmploc.dll|imageres.dll|netshell.dll|SHELL32.dll
Gui, Add, Button, x+5 h20 gSelectFile, ...
Loop, 500
{
  if a_index = 1
    Gui, add, Pic, xm y+5 w32 h32 icon%a_index% border altsubmit gIcon vIcon%a_index%, %file%
  else if a_index in 1,21,41,61,81,101,121,141,161,181,201,221,241,261,281,301
    Gui, add, Pic, xm y+2 w32 h32 icon%a_index% border altsubmit gIcon vIcon%a_index%, %file%
  else
    Gui, add, Pic, x+2 w32 h32 icon%a_index% border altsubmit gIcon vIcon%a_index%, %file%
  GuiControlGet, test, pos, Icon%a_index%
  if testw <> 34
  {
    GuiControl, Hide, Icon%a_index%
    break
  }
}
Gui, Show,, Icon Browser
OnMessage(0x200, "WM_MOUSEMOVE")
return

WM_MOUSEMOVE(wParam, lParam)
{
  Global file,outputvarcontrol,disabletool
  if disabletool = 1
    return
  MouseGetPos,,,, OutputVarControl
  StringTrimLeft, icon, outputvarcontrol, 6
  CurrentTip = IconFileName = %file%`nIL_Add(ImageListID1, IconFileName, %icon%)`nGui,add, pic, Icon%icon%, %file%
  If (tt_TipShown <> CurrentTip)
  {
    IfNotInString, outputvarcontrol, Static
      ToolTip
    else
      ToolTip, %currenttip%
  }
}

GuiClose:
ExitApp

SelectFile:
FileSelectFile, File, 1, %systemroot%\system32\, Open, Icon Files (*.ico; *.dll; *.exe)
GuiControl,, File, %file%
Goto, Start
return

Select2:
Gui, Submit, Nohide
File= %File2%
Goto, Start
return

Icon:
Gui, +OwnDialog
StringTrimLeft, icon, a_guicontrol, 4
clipboard = IconFileName = %file%`nIL_Add(ImageListID1, IconFileName, %icon%)`nGui,add, pic, Icon%icon%, %file%
disabletool = 1
ToolTip
MsgBox, Text Copied to Clipboard.
disabletool = 0
return






Esc:: exitapp

Guest

Re: [Archive] Collection of lost AHK Scripts & Libraries

05 Jun 2018, 17:11

Anybody have the script I think used to be called "measure" or "simplemeasure" that would put two small triangles up on the screen that you could use to place on the upper and lower corner diagonals to measure between the triangles?
User avatar
jeeswg
Posts: 6902
Joined: 19 Dec 2016, 01:58
Location: UK

Re: [Archive] Collection of lost AHK Scripts & Libraries

06 Jun 2018, 04:57

- Since no-one's replied yet, I thought I'd mention this, in case it's relevant.
Compass - Measure angles and scale distances with your mouse - AutoHotkey Community
https://autohotkey.com/boards/viewtopic.php?f=6&t=7225
- Also, I recommend searching with Bing, as it often finds more AutoHotkey pages than Google.
homepage | tutorials | wish list | fun threads | donate
WARNING: copy your posts/messages before hitting Submit as you may lose them due to CAPTCHA
grandoth
Posts: 2
Joined: 05 Jun 2018, 17:05

Re: [Archive] Collection of lost AHK Scripts & Libraries

06 Jun 2018, 07:32

Guest wrote:Anybody have the script I think used to be called "measure" or "simplemeasure" that would put two small triangles up on the screen that you could use to place on the upper and lower corner diagonals to measure between the triangles?
jeeswg wrote:- Since no-one's replied yet, I thought I'd mention this, in case it's relevant.
Compass - Measure angles and scale distances with your mouse - AutoHotkey Community
https://autohotkey.com/boards/viewtopic.php?f=6&t=7225
- Also, I recommend searching with Bing, as it often finds more AutoHotkey pages than Google.
Thanks for the reference! I may have stumbled across that one but passed over it. You can make it report measured pixels by doing a set scale and moving the mouse 1 pixel so it's usable. I'm modifying it to add to the display the X and Y also. Perhaps I'll also mod it to leave a persistent control up and move them after the fact in order to adjust the endpoints. I'll post back to that thread if I am successful :).

Edit: I registered yesterday while I was posting so I didn't do my initial post right. Quoted to clear up the chain of communication.
User avatar
SpeedMaster
Posts: 494
Joined: 12 Nov 2016, 16:09

Re: [Archive] Collection of lost AHK Scripts & Libraries

06 Jun 2018, 12:20

Invité wrote:Anybody have the script I think used to be called "measure" or "simplemeasure" that would put two small triangles up on the screen that you could use to place on the upper and lower corner diagonals to measure between the triangles?
I made a pixel ruler some time ago If you are interested here is the link: ;)
Advanced Pixel Ruler
https://autohotkey.com/boards/viewtopic.php?t=45606

For the one you mentioned here is the link
Smallmeasure
https://www.dcmembers.com/skrommel/down ... llmeasure/

Cheers,
User avatar
Frosti
Posts: 426
Joined: 27 Oct 2017, 14:30
Contact:

Re: [Archive] Collection of lost AHK Scripts & Libraries

06 Jun 2018, 14:20

@Joedf I'm working on it. I try to build a better script. I want to script a library manager. It should be able to read the functions and list the descriptions inside every function if its available. Then I want to compare libraries to solve problems with dependencies.
grandoth
Posts: 2
Joined: 05 Jun 2018, 17:05

Re: [Archive] Collection of lost AHK Scripts & Libraries

06 Jun 2018, 15:18

SpeedMaster wrote: I made a pixel ruler some time ago If you are interested here is the link: ;)
Advanced Pixel Ruler
https://autohotkey.com/boards/viewtopic.php?t=45606

For the one you mentioned here is the link
Smallmeasure
https://www.dcmembers.com/skrommel/down ... llmeasure/
Nice find. That's the one. Thanks a lot! It's from before '09 apparently:
http://www.donationcoder.com/forum/inde ... ic=16723.0

Also, for the tool you created, I will check it out! Thanks again.
User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: [Archive] Collection of lost AHK Scripts & Libraries

07 Jun 2018, 14:56

Frosti wrote:@Joedf I'm working on it. I try to build a better script. I want to script a library manager. It should be able to read the functions and list the descriptions inside every function if its available. Then I want to compare libraries to solve problems with dependencies.
Cool! but Don't reinvent the wheel!
We have a manager but it was put on hold and never made "official".

You might want to consider looking at pAHKlight for a libs lister
https://github.com/hi5/pAHKlight
Screenshot
or at ASPDM for a full-blown library manager (it works and everything, it's mainly the website backend and library uploads that are lacking. I have been wanting to merge the accounts with the forum itself.)
https://github.com/ahkscript/ASPDM
Screenshots
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
User avatar
jballi
Posts: 723
Joined: 29 Sep 2013, 17:34

Re: [Archive] Collection of lost AHK Scripts & Libraries

26 Jun 2018, 00:18

Someone asked for this a while back. I just found it in my archives. May be a duplicate. Sorry, I didn't check before posting.

Ini - ini-like handling of strings - v1.0b2
https://www.dropbox.com/s/xwhwbo2qqjb3m ... s.zip?dl=1

Original Post:
https://autohotkey.com/board/topic/2073 ... f-strings/
User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: [Archive] Collection of lost AHK Scripts & Libraries

26 Jun 2018, 08:10

Thanks for sharing :)
I found a copy here: rbrtryn_3-04-2014\Google_CacheFiles\~majkinetor\Ini\Ini.ahk
Less direct than your tho ;)
I'll have to make the archives more user friendly...
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
User avatar
SpeedMaster
Posts: 494
Joined: 12 Nov 2016, 16:09

Re: [Archive] Collection of lost AHK Scripts & Libraries

22 Jul 2018, 06:12

Hello,
Does anyone have a copy of this game Heightmap Raser ? :)
topic: http://ahkscript.org/germans/forums/vie ... 6610429640
All links are dead :cry:
Thanks
User avatar
joedf
Posts: 8937
Joined: 29 Sep 2013, 17:08
Location: Canada
Contact:

Re: [Archive] Collection of lost AHK Scripts & Libraries

22 Jul 2018, 11:08

I've checked my archives... Couldn't find it. Maybe bentschi has it?
Bentschi wrote:@mention
If there's no reply, maybe we send an email? No activity for awhile now...
Image Image Image Image Image
Windows 10 x64 Professional, Intel i5-8500, NVIDIA GTX 1060 6GB, 2x16GB Kingston FURY Beast - DDR4 3200 MHz | [About Me] | [About the AHK Foundation] | [Courses on AutoHotkey]
[ASPDM - StdLib Distribution] | [Qonsole - Quake-like console emulator] | [LibCon - Autohotkey Console Library]
User avatar
SpeedMaster
Posts: 494
Joined: 12 Nov 2016, 16:09

Re: [Archive] Collection of lost AHK Scripts & Libraries

22 Jul 2018, 15:36

joedf wrote:I've checked my archives... Couldn't find it.
Thanks for checking your archives. :thumbup:
joedf wrote:Maybe bentschi has it? ... No activity for awhile now.
C'est dommage, Bentschi était plutôt doué... :ugeek: :salute:

Heightmap Raser ? Yet another game that may fall into oblivion :?
SOTE
Posts: 1426
Joined: 15 Jun 2015, 06:21

Re: [Archive] Collection of lost AHK Scripts & Libraries

11 Sep 2018, 01:32

List of various scripts in rbrtryn_3-04-2014.7z
https://autohotkey.com/joe_df/autohotke ... 04-2014.7z
Note- Thanks to Joedf's efforts to collect them. List possibly helpful for anybody encountering broken links to scripts from Google searches or from the Archived AutoHotkey Forum.
  • Sources:

    Google's Archive

    Gamax92 Archive

    Posts by rbrtryn

    Majkinetor SVN

    Myhotkey SVN

    Nimda Archive

    LIST OF VARIOUS LOST AHK SCRIPTS & LIBRARIES

    ahkstdlib\COPYING.txt
    ahkstdlib\HISTORY.txt
    ahkstdlib\libdb.ini
    ahkstdlib\LibraryExplorer.ahk
    ahkstdlib\notes.txt
    ahkstdlib\doc\A.html
    ahkstdlib\doc\Affinity.html
    ahkstdlib\doc\argp.html
    ahkstdlib\doc\com.txt
    ahkstdlib\doc\com.html
    ahkstdlib\doc\ConnectedToInternet.txt
    ahkstdlib\doc\consoleApp.txt
    ahkstdlib\doc\Dlg.html
    ahkstdlib\doc\Dock.html
    ahkstdlib\doc\eval.txt
    ahkstdlib\doc\exec.html
    ahkstdlib\doc\GetAvailableFileName.txt
    ahkstdlib\doc\httpQuery.html
    ahkstdlib\doc\ini.html
    ahkstdlib\doc\md5.txt
    ahkstdlib\doc\pgArray.html
    ahkstdlib\doc\Rand.txt
    ahkstdlib\doc\SB.html
    ahkstdlib\doc\st.txt
    ahkstdlib\doc\StrX.html
    ahkstdlib\doc\sXMLget.txt
    ahkstdlib\doc\tf.html
    ahkstdlib\doc\ToolTip.html
    ahkstdlib\doc\TrayIcon.txt
    ahkstdlib\doc\tvx.html
    ahkstdlib\doc\VA.html
    ahkstdlib\doc\xpath.html
    ahkstdlib\doc\A-Dateien\index.css
    ahkstdlib\doc\Affinity-Dateien\index.css
    ahkstdlib\doc\Affinity-Dateien\procaff.png
    ahkstdlib\doc\Affinity-Dateien\wintaskmgr.png
    ahkstdlib\doc\com-Dateien\index.css
    ahkstdlib\doc\Dlg-Dateien\Dlg_Color.png
    ahkstdlib\doc\Dlg-Dateien\Dlg_Find.png
    ahkstdlib\doc\Dlg-Dateien\Dlg_Font.png
    ahkstdlib\doc\Dlg-Dateien\Dlg_Icon.png
    ahkstdlib\doc\Dlg-Dateien\Dlg_Open.png
    ahkstdlib\doc\Dlg-Dateien\Dlg_Replace.png
    ahkstdlib\doc\Dlg-Dateien\pixel.gif
    ahkstdlib\doc\exec-Dateien\icon_exclaim.gif
    ahkstdlib\doc\exec-Dateien\index.css
    ahkstdlib\doc\Forms\files\inc\Align-ahk.html
    ahkstdlib\doc\Forms\files\inc\CColor-ahk.html
    ahkstdlib\doc\Forms\files\inc\Dlg-ahk.html
    ahkstdlib\doc\Forms\files\inc\DockA-ahk.html
    ahkstdlib\doc\Forms\files\inc\Font-ahk.html
    ahkstdlib\doc\Forms\files\inc\HLink-ahk.html
    ahkstdlib\doc\Forms\files\inc\ILButton-ahk.html
    ahkstdlib\doc\Forms\files\inc\Rebar-ahk.html
    ahkstdlib\doc\Forms\files\inc\RichEdit-ahk.html
    ahkstdlib\doc\Forms\files\inc\Splitter-ahk.html
    ahkstdlib\doc\Forms\files\inc\Toolbar-ahk.html
    ahkstdlib\doc\Forms\files\inc\Win-ahk.html
    ahkstdlib\doc\Forms\javascript\main.js
    ahkstdlib\doc\Forms\javascript\searchdata.js
    ahkstdlib\doc\Forms\styles\main.css
    ahkstdlib\doc\httpQuery-Dateien\index.css
    ahkstdlib\doc\pgArray-Dateien\index.css
    ahkstdlib\doc\SB-Dateien\index.css
    ahkstdlib\doc\StrX-Dateien\index.css
    ahkstdlib\doc\tf-Dateien\commands.css
    ahkstdlib\doc\ToolTip-Dateien\index.css
    ahkstdlib\doc\ToolTip-Dateien\tooltip.png
    ahkstdlib\doc\tvx-Dateien\index.css
    ahkstdlib\doc\tvx-Dateien\tvx.gif
    ahkstdlib\lib\A.ahk
    ahkstdlib\lib\Affinity.ahk
    ahkstdlib\lib\Align.ahk
    ahkstdlib\lib\Anchor.ahk
    ahkstdlib\lib\argp.ahk
    ahkstdlib\lib\baseConvert.ahk
    ahkstdlib\lib\CColor.ahk
    ahkstdlib\lib\cdomessage.ahk
    ahkstdlib\lib\CMDret.ahk
    ahkstdlib\lib\CMDret_stream.ahk
    ahkstdlib\lib\com.ahk
    ahkstdlib\lib\ConnectedToInternet.ahk
    ahkstdlib\lib\ConsoleApp.ahk
    ahkstdlib\lib\Crypt.ahk
    ahkstdlib\lib\DamerauLevenshteinDistance.ahk
    ahkstdlib\lib\DateParse.ahk
    ahkstdlib\lib\Dlg.ahk
    ahkstdlib\lib\Dock.ahk
    ahkstdlib\lib\DockA.ahk
    ahkstdlib\lib\EmptyMem.ahk
    ahkstdlib\lib\Eval.ahk
    ahkstdlib\lib\Exec.ahk
    ahkstdlib\lib\File.ahk
    ahkstdlib\lib\FileExtract.ahk
    ahkstdlib\lib\FileGetVersionInfo.ahk
    ahkstdlib\lib\fileIsBinary.ahk
    ahkstdlib\lib\Font.ahk
    ahkstdlib\lib\ftp.ahk
    ahkstdlib\lib\Functions.ahk
    ahkstdlib\lib\Gdip.ahk
    ahkstdlib\lib\GetAvailableFileName.ahk
    ahkstdlib\lib\GetCommonPath.ahk
    ahkstdlib\lib\HLink.ahk
    ahkstdlib\lib\Hotstrings.ahk
    ahkstdlib\lib\httpQuery.ahk
    ahkstdlib\lib\HttpQueryInfo.ahk
    ahkstdlib\lib\ILButton.ahk
    ahkstdlib\lib\ini.ahk
    ahkstdlib\lib\IsFullScreen.ahk
    ahkstdlib\lib\json.ahk
    ahkstdlib\lib\MCI.ahk
    ahkstdlib\lib\MCode.ahk
    ahkstdlib\lib\md5.ahk
    ahkstdlib\lib\mg.ahk
    ahkstdlib\lib\MI.ahk
    ahkstdlib\lib\Mount.ahk
    ahkstdlib\lib\msTill.ahk
    ahkstdlib\lib\pgArray.ahk
    ahkstdlib\lib\ping.ahk
    ahkstdlib\lib\ProcessInfo.ahk
    ahkstdlib\lib\rand.ahk
    ahkstdlib\lib\RandomUniqNum.ahk
    ahkstdlib\lib\Rebar.ahk
    ahkstdlib\lib\regionGetColor.ahk
    ahkstdlib\lib\RichEdit.ahk
    ahkstdlib\lib\SB.ahk
    ahkstdlib\lib\sc.ahk
    ahkstdlib\lib\Splitter.ahk
    ahkstdlib\lib\st.ahk
    ahkstdlib\lib\StdoutToVar.ahk
    ahkstdlib\lib\strTail.ahk
    ahkstdlib\lib\StrX.ahk
    ahkstdlib\lib\sXMLget.ahk
    ahkstdlib\lib\TaskButton.ahk
    ahkstdlib\lib\tf.ahk
    ahkstdlib\lib\ThousandsSep.ahk
    ahkstdlib\lib\Toolbar.ahk
    ahkstdlib\lib\ToolTip.ahk
    ahkstdlib\lib\TrayIcon.ahk
    ahkstdlib\lib\TVX.ahk
    ahkstdlib\lib\UnHTM.ahk
    ahkstdlib\lib\USBD.ahk
    ahkstdlib\lib\uuid.ahk
    ahkstdlib\lib\VA.ahk
    ahkstdlib\lib\WatchDirectory.ahk
    ahkstdlib\lib\Win.ahk
    ahkstdlib\lib\xpath.ahk
    ahkstdlib\licenses\[VxE]-license.txt
    ahkstdlib\licenses\default-license.txt
    ahkstdlib\licenses\drifter_consoleApp-license.txt
    ahkstdlib\licenses\EUPL-EN.pdf
    ahkstdlib\licenses\gpl-2.0.txt
    ahkstdlib\licenses\gpl-3.0.txt
    ahkstdlib\licenses\infogulch-license.txt
    ahkstdlib\licenses\Learningone_mg-license.txt
    ahkstdlib\licenses\lexikos-license.txt
    ahkstdlib\licenses\lgpl-3.0.txt
    ahkstdlib\licenses\PhiLhoSoftLicence.txt
    ahkstdlib\licenses\tic_gdip-license.txt
    ahkstdlib\licenses\titan-license.txt
    ahkstdlib\samp\a_demo.ahk
    ahkstdlib\samp\affinity_demo.ahk
    ahkstdlib\samp\align_demo.ahk
    ahkstdlib\samp\anchor_demo.ahk
    ahkstdlib\samp\argp_demo.ahk
    ahkstdlib\samp\baseConvert_demo.ahk
    ahkstdlib\samp\cColor_demo.ahk
    ahkstdlib\samp\cmdret_demo.ahk
    ahkstdlib\samp\cmdret_stream_demo.ahk
    ahkstdlib\samp\com_demo.ahk
    ahkstdlib\samp\connectedToInternet_demo.ahk
    ahkstdlib\samp\consoleApp_demo.ahk
    ahkstdlib\samp\crypt_demo.ahk
    ahkstdlib\samp\damerauLevenshteinDistance_demo.ahk
    ahkstdlib\samp\dateParse_demo.ahk
    ahkstdlib\samp\dlg_demo.ahk
    ahkstdlib\samp\dock_demo.ahk
    ahkstdlib\samp\dockA_demo.ahk
    ahkstdlib\samp\emptyMem_demo.ahk
    ahkstdlib\samp\eval_demo.ahk
    ahkstdlib\samp\exec_demo.ahk
    ahkstdlib\samp\file_demo.ahk
    ahkstdlib\samp\fileExtract_demo.ahk
    ahkstdlib\samp\fileGetVersionInfo_demo.ahk
    ahkstdlib\samp\fileIsBinary_demo.ahk
    ahkstdlib\samp\font_demo.ahk
    ahkstdlib\samp\ftp_demo.ahk
    ahkstdlib\samp\functions_demo.ahk
    ahkstdlib\samp\gdip_demo.ahk
    ahkstdlib\samp\getAvailableFileName_demo.ahk
    ahkstdlib\samp\getCommonPath_demo.ahk
    ahkstdlib\samp\hLink_demo.ahk
    ahkstdlib\samp\hotstrings_demo.ahk
    ahkstdlib\samp\httpQuery_demo.ahk
    ahkstdlib\samp\httpQueryInfo_demo.ahk
    ahkstdlib\samp\iLButton_demo.ahk
    ahkstdlib\samp\ini_demo.ahk
    ahkstdlib\samp\isFullScreen_demo.ahk
    ahkstdlib\samp\json_demo.ahk
    ahkstdlib\samp\mci_demo.ahk
    ahkstdlib\samp\mcode_demo.ahk
    ahkstdlib\samp\md5_demo.ahk
    ahkstdlib\samp\mg_demo.ahk
    ahkstdlib\samp\mi_demo.ahk
    ahkstdlib\samp\mount_demo.ahk
    ahkstdlib\samp\mstill_demo.ahk
    ahkstdlib\samp\pgArray_demo.ahk
    ahkstdlib\samp\ping_demo.ahk
    ahkstdlib\samp\processInfo_demo.ahk
    ahkstdlib\samp\rand_demo.ahk
    ahkstdlib\samp\randomUniqNum_demo.ahk
    ahkstdlib\samp\rebar_demo.ahk
    ahkstdlib\samp\regionGetColor_demo.ahk
    ahkstdlib\samp\richEdit_demo.ahk
    ahkstdlib\samp\sb_demo.ahk
    ahkstdlib\samp\sc_demo.ahk
    ahkstdlib\samp\splitter_demo.ahk
    ahkstdlib\samp\st_demo.ahk
    ahkstdlib\samp\stdoutToVar_demo.ahk
    ahkstdlib\samp\strTail_demo.ahk
    ahkstdlib\samp\strx_demo.ahk
    ahkstdlib\samp\sXMLget_demo.ahk
    ahkstdlib\samp\taskButton_demo.ahk
    ahkstdlib\samp\tf_demo.ahk
    ahkstdlib\samp\thousandsSep_demo.ahk
    ahkstdlib\samp\toolbar_demo.ahk
    ahkstdlib\samp\tooltip_demo.ahk
    ahkstdlib\samp\trayIcon_demo.ahk
    ahkstdlib\samp\tvx_demo.ahk
    ahkstdlib\samp\unhtm_demo.ahk
    ahkstdlib\samp\usbd_demo.ahk
    ahkstdlib\samp\uuid_demo.ahk
    ahkstdlib\samp\va_demo.ahk
    ahkstdlib\samp\watchDirectory_demo.ahk
    ahkstdlib\samp\win_demo.ahk
    ahkstdlib\samp\xpath_demo.ahk
    ahkstdlib\tools\doc-o-matic.ahk
    ahkstdlib\tools\libdb-add_entry.ahk
    ahkstdlib\tools\libdb_getList.ahk
    AHK_Quizzer\misc. notes.htm
    AHK_Quizzer\quiz00 - Scripts.ini
    AHK_Quizzer\quiz01 - Hotstrings.ini
    AHK_Quizzer\quiz02 - Hotkeys.ini
    AHK_Quizzer\quiz03 - Mouse.ini
    AHK_Quizzer\quiz04 - Variables.ini
    AHK_Quizzer\quiz05 - Expressions.ini
    AHK_Quizzer\quiz06 - Loops.ini
    AHK_Quizzer\quiz07 - Strings.ini
    AHK_Quizzer\quiz08 - If,Else.ini
    AHK_Quizzer\quiz09 - Arrays.ini
    AHK_Quizzer\quiz10 - Functions.ini
    AHK_Quizzer\quiz11 - GUIs.ini
    AHK_Quizzer\Quizzer.ahk
    AHK_Quizzer\Traditional vs Expression.htm
    AHK_Quizzer\Tutorial for Newbies.htm
    Alt_Tab\AltTab.ahk
    Alt_Tab\AltTab.ico
    Alt_Tab\expose.ahk
    autorun-inf\insert.ahk
    autorun-inf\run.ini
    autorun-inf\run.ahk
    AWin\ahk_acdsee5.ahk
    AWin\ahk_acdsee31.ahk
    AWin\ahk_caj.ahk
    AWin\ahk_flash.ahk
    AWin\ahk_foxmail.ahk
    AWin\beyondcompare.ahk
    AWin\Emedit.aik
    AWin\Emedit.ahk
    AWin\googleciba.ahk
    AWin\Help.txt
    AWin\kugou2008.ahk
    AWin\QQTM.ahk
    AWin\SecureCRT.ahk
    AWin\SourceInsight.ahk
    AWin\vim.aik
    AWin\VMware.ahk
    AWin\VS2005_del.aik
    AWin\WinMediaPlayer.ahk
    AWin\BCB\BCB.ahk
    AWin\BCB\TEditWindow6.aik
    AWin\Explore\Explore.ahk
    AWin\Explore\Explore.aik
    AWin\Explore\explore_share.aik
    AWin\Explore\FreeCommander.ahk
    AWin\Game\cs_common.aik
    AWin\Game\cs15.ahk
    AWin\Game\cs15.aik
    AWin\Game\cs16.aik
    AWin\Game\cs16.ahk
    AWin\Game\MKZ.ahk
    AWin\iciba\iciba.aik
    AWin\IE\chrome.ahk
    AWin\IE\Firefox.ahk
    AWin\IE\Firefox4.ahk
    AWin\IE\IE.ahk
    AWin\IE\QQexplore.ahk
    AWin\Java\eclipse.aik
    AWin\MyHotkey\PhiyonKeyboard.ahk
    AWin\Office\ahk_Office_temp.ahk
    AWin\Office\Office.ahk
    AWin\Office\Office_Autotransparent.ahk
    AWin\Office\Office_Autotransparent.aik
    AWin\Office\OfficeRibbon.aik
    AWin\Office\OneNote.ahk
    AWin\Office\OutLook.ahk
    AWin\Snap\Jing.ahk
    AWin\Snap\Jing.aik
    AWin\Snap\WinK.ahk
    AWin\SQL\PLSQL.aik
    AWin\SQL\PLSQL.ahk
    AWin\SQL\PLSQL_cninfo.aik
    AWin\SQL\sf_report.aik
    AWin\SQL\SQL_common.aik
    AWin\VC\VC6.aik
    AWin\VC\vcCommon.aik
    AWin\VC\VS2005.aik
    AWin\VC\VS2008.aik
    AWin\VC\VSAll.aik
    BBCode Parser\BBCode Parser.exe
    BBCode Parser\ParserData
    blat\blat.dll
    blat\blat.lib
    blat\blat.exe
    blat\syntax.txt
    copyfiles\copyfiles.ahk
    copyfiles\setting.ini
    derRaphael Form Dumper\Form Dumper derRaphael.ahk
    derRaphael Form Dumper\httpQuery.aik
    DesktopSwitch\0.ico
    DesktopSwitch\1.ico
    DesktopSwitch\2.ico
    DesktopSwitch\3.ico
    DesktopSwitch\4.ico
    DesktopSwitch\5.ico
    DesktopSwitch\6.ico
    DesktopSwitch\7.ico
    DesktopSwitch\8.ico
    DesktopSwitch\9.ico
    DesktopSwitch\DesktopSwitch.ahk
    DesktopSwitch\DesktopSwitch.ico
    DragToScroll\DragToScroll.ini
    DragToScroll\DragToScroll.ahk
    DragToScroll\DragToScroll.exe
    DragToScroll\ini.ahk
    DragToScroll\ReadMe.txt
    inc\__corruptedname.aik
    inc\_Help.txt
    inc\ahkfile.aik
    inc\Array.aik
    inc\attach.aik
    inc\capture.aik
    inc\cmdstring.aik
    inc\common.aik
    inc\ControlColor.aik
    inc\csmenu.aik
    inc\DateTime.aik
    inc\Emedit.aik
    inc\expression.aik
    inc\FTP.aik
    inc\functions.inc
    inc\hotstring_add.aik
    inc\hotstring_file.aik
    inc\IE.aik
    inc\inifile.aik
    inc\mail.aik
    inc\MouseGesture.aik
    inc\MouseMoveInfo.aik
    inc\OneNote.aik
    inc\path.aik
    inc\run.aik
    inc\ShortcutMenu.aik
    inc\string.aik
    inc\StringTrans.aik
    inc\systime.aik
    inc\tempfunctions.aik
    inc\tip.aik
    inc\TVPath.aik
    inc\window.aik
    inc\word.aik
    inc\XML\feed.xml
    inc\XML\mytest.ahk
    inc\XML\xhotstring.aik
    inc\XML\xpath.aik
    inc\XML\xpath.html
    inc\XML\xword.aik
    ISense_1.5.4\ISense.ahk
    ISense_1.5.4\readme.txt
    ISense_1.5.4\includes\ActiveGoTo.ahk
    ISense_1.5.4\includes\Aux_.ahk
    ISense_1.5.4\includes\CoHelper.ahk
    ISense_1.5.4\includes\EditorMethods.ahk
    ISense_1.5.4\includes\IE.ahk
    ISense_1.5.4\includes\IEControl.ahk
    ISense_1.5.4\includes\Setup_GUI.ahk
    ISense_1.5.4\res\Commands.txt
    ISense_1.5.4\res\disable.ico
    ISense_1.5.4\res\enable.ico
    ISense_1.5.4\res\help.ico
    ISense_1.5.4\res\main.ico
    ISense_1.5.4\res\options.ico
    Joy\joy2key_1.ahk
    Joy\joy2key_2.ahk
    Joy\joym.ahk
    Joy\JoystickMouse.ahk
    Joy\JoystickMouse2.ahk
    lib\appkey.aik
    lib\AutoHotString.aik
    lib\AutoLable.aik
    lib\blockmouse.aik
    lib\common.aik
    lib\GeneralWord.aik
    lib\insert.aik
    lib\MButton.aik
    lib\RButton.aik
    lib\readme.txt
    lib\run.aik
    lib\SCRSLEEP.aik
    lib\timer.aik
    lib\XHotString.aik
    ListView\EditListViewBody.aik
    ListView\GuiAddEditListView.aik
    ListView\iconlist.aik
    ListView\ListViewDemo.ahk
    ListView\ListViews Color individual rows, multiple LV .htm
    ListView\LTVCustomColors.aik
    ListView\LVA.aik
    ListView\lvfunc.aik
    ListViewLib\Anchor_v3.3.ahk
    ListViewLib\icon lite.ahk
    ListViewLib\test0.ahk
    MiniFTP3\Add.ico
    MiniFTP3\Anchor.ahk
    MiniFTP3\Check.ico
    MiniFTP3\CoHelper.ahk
    MiniFTP3\Connect.ico
    MiniFTP3\Dictionary.ahk
    MiniFTP3\File.ico
    MiniFTP3\FTP.ahk
    MiniFTP3\MiniClient.ahk
    MiniFTP3\MiniFTP_Settings.ini
    MiniFTP3\Rebar.ahk
    MiniFTP3\Refresh.ico
    MiniFTP3\Save.ico
    MiniFTP3\Settings.ico
    MiniFTP3\Toolbar.ahk
    MiniFTP3\Tools.ico
    NiftyWindows-0.9.3.1-source\build.txt
    NiftyWindows-0.9.3.1-source\changes.txt
    NiftyWindows-0.9.3.1-source\cursor_drag_arrow.ico
    NiftyWindows-0.9.3.1-source\help_concise.txt
    NiftyWindows-0.9.3.1-source\license.txt
    NiftyWindows-0.9.3.1-source\NiftyWindows.ini
    NiftyWindows-0.9.3.1-source\NiftyWindows.ahk
    NiftyWindows-0.9.3.1-source\readme.txt
    NiftyWindows-0.9.3.1-source\version.txt
    ScreenDraw\ScreenDraw1.ahk
    ScreenDraw\ScreenDraw2.ahk
    SetingReg\SetingReg.cjp
    SetingReg\SetingReg.ahk
    SetingReg\setup.ini
    SmartGUI Creator\calc.ahk
    SmartGUI Creator\Manual.htm
    SmartGUI Creator\SmartGUI.exe
    SmartGUI Creator\YT.ahk
    Socket\Client.ahk
    Socket\Server.ahk
    sqlite\FoxSQLite.ahk
    sqlite\SQLite.ahk
    sqlite\sqlite3.dll
    sqlite\sqlite3.exe
    sqlite\test.ahk
    Texter\texter.ahk
    TypingAid v2.16b\Preferences.ini
    TypingAid v2.16b\TypingAid v2.16b.ahk
    TypingAid v2.16b\Wordlist.txt
    TypingAid v2.16b\Includes\Helper.ahk
    TypingAid v2.16b\Includes\ListBox.ahk
    TypingAid v2.16b\Includes\Preferences File.ahk
    TypingAid v2.16b\Includes\Sending.ahk
    TypingAid v2.16b\Includes\Window.ahk
    TypingAid v2.16b\Includes\Wordlist.ahk
    word\EmEditorMainFrame3.aik
    word\Framework__CFrame.aik
    word\include.ahk
    word\include.inc
    word\readme.txt
    word\wndclass_desked_gsk.aik
    XMLTest\test.xml
    XMLTest\test2.xml
    XMLTest\XMLAhkL.ahk
    XMLTest\bin\xmltest.ini
    XMLTest\bin\xmltest.ahk
    ~aaronbewza\Aaron's YouTube Television\Aaron's YouTube Television.ahk
    ~aaronbewza\AaronsSoundclickMusicPlayer\Aaron's Soundclick Music Player.ahk
    ~aaronbewza\AlexJonesRadioShow\The Alex Jones Radio Show.ahk
    ~aaronbewza\SortAnyFolder\Sort Any Folder.ahk
    ~aaronbewza\WesternWallCams\Western Wall Cams - Channels.ahk
    ~aaronbewza\WesternWallCams\Western Wall Cams - Multiple.ahk
    ~AGermanUser\BBCodeWriter\functions.ahk
    ~AGermanUser\CopyPassage\functions.ahk
    ~AGermanUser\CopyPassage\main.ahk
    ~AHKnow\AHK_ScriptWriter_v023.ahk
    ~alesc\ctags.ahk
    ~alextorex\Screen_Off.ahk
    ~AmourSpirit\LogitechDualAction\Logitech Dual Action Template.ahk
    ~AmourSpirit\NPP\NPP_Run_helper.ahk
    ~andkiko\BOT COMPLETO v12.ahk
    ~andkiko\Bot DL Completo.ahk
    ~animeaime\LVDD_Test.ahk
    ~anonymous\API\API_Draw.ahk
    ~anonymous\COM\Wrappers\IEControl.ahk
    ~apocalypse_r\joymouse.ahk
    ~art\AHK\CloudStorage_SugarSync\CloudStorage_SugarSync.ahk
    ~ashwin\ShowOrHideGadgets.ahk
    ~awannaknow\Resources\AHK Almost No BlanK Lines.ahk
    ~awannaknow\Resources\AHK No BlanK Lines.ahk
    ~awannaknow\Resources\AHK No Comments.ahk
    ~ayosh\AhkDllObject.ahk
    ~ayosh\MultiThreading_test.ahk
    ~bekihito\weather\weathertool.ahk
    ~Bentschi\wrapper\glu.ahk
    ~berban\BerbanBBcodeFormatter.ahk
    ~Big_Digger\AVerMedia\averlircA.ahk
    ~Big_Digger\AVerMedia\buttons.ahk
    ~Blackholyman\VariemClick.ahk
    ~bLisTeRinG\countdn.ahk
    ~bLisTeRinG\hider.ahk
    ~bLisTeRinG\hostutil.ahk
    ~bLisTeRinG\keypad.ahk
    ~bLisTeRinG\shutter.ahk
    ~Buckaroo\DVSubMaker.ahk
    ~Canta\WallpaperOptions\WallpaperOptions.ahk
    ~capitalH\TDL New Task Creator upload 2011-12-09.ahk
    ~chaidy\Ahk Source\CStruct\Test.ahk
    ~chrism\My Favorites\MyFavorites.ahk
    ~crazyfirex\AutoHotkey Basic Bug.ahk
    ~crazyfirex\AutoHotkey Basic Bug 2.ahk
    ~crazyfirex\AutoHotkey Basic Bug 3.ahk
    ~cstr\gkey_colorpicker.ahk
    ~dadepp\LBDDLib.ahk
    ~dadepp\LVA.ahk
    ~daonlyfreez\scripting\GetScriptFromAHKForum.ahk
    ~daonlyfreez\scripting\rsmashup.ahk
    ~daonlyfreez\tutorials\3p\Veil\fnkey\FnMapper.ahk
    ~daonlyfreez\tutorials\3p\Veil\fnkey\MultimediaKeys.ahk
    ~daonlyfreez\tutorials\3p\Veil\fnkey\SpecialCharacters.ahk
    ~darossa\darossa.ahk
    ~DataLife\SavePictureAs.ahk
    ~DataLife\XPSnap.ahk
    ~DataLife\MyIpChanger\MyIpChanger.ahk
    ~DataLife\ScriptCache\AHKsock.ahk
    ~DataLife\ScriptCache\calc.ahk
    ~DataLife\ScriptCache\RichEdit.ahk
    ~DeathByNukes\JoystickMouseX360_DBN.ahk
    ~DeathByNukes\libcurl\libcurl.ahk
    ~DeathByNukes\libcurl\libcurl_imageshacktest.ahk
    ~DeathByNukes\libcurl\libcurl_test.ahk
    ~debouncer\KeybounceFilter.ahk
    ~deleyd\xprxmp\autohotkey_expression_examples.ahk
    ~deleyd\xprxmp\WebsiteNav.ahk
    ~Deo\hdr_conv.ahk
    ~Deo\QMsgBox\QMsgBox.ahk
    ~Deo\QMsgBox\QMsgBox_foos.ahk
    ~DerRaphael\_b64.ahk
    ~DerRaphael\DLG_FileOpenSave.ahk
    ~DerRaphael\fileOpenSaveDemo.ahk
    ~DerRaphael\SplashAFlash.AHK
    ~DerRaphael\pictures\tst_icon.ahk
    ~DerRaphael\tmp\demoScript.ahk
    ~desmin88\Source.ahk
    ~drosen\Accelerated Scrolling.ahk
    ~dumpster.monkey\HyperPin\HyperFPLaunch\HyperSettings.ahk
    ~DupaUnit\HitFixer.ahk
    ~dwuttke\Compile\Compile_AHK.ahk
    ~dwuttke\Compile\Compile_AHK_Setup.ahk
    ~dwuttke\SQLite\SQLite.ahk
    ~dylan904\FTPv2.ahk
    ~dylan904\Functions.ahk
    ~dylan904\INI_Editor.ahk
    ~dylan904\LoneIRC.ahk
    ~dylan904\LoneIRC(MainBody).ahk
    ~dylan904\RichEdit.ahk
    ~eagle00789\Functions\printerfunctions.ahk
    ~earlsd\xmore.ahk
    ~easycom\COMmemLeak.ahk
    ~easycom\testcom.ahk
    ~easycom\WS_DEControl.ahk
    ~easycom\WS_DEControl2.ahk
    ~easycom\WS_DEdemo.ahk
    ~easycom\WS_DEDemo2.ahk
    ~easycom\WS_RemoveErrChk.ahk
    ~easycom\ws4ahk.ahk
    ~easycom\ws4ahk0-01.ahk
    ~easycom\ws4ahk0-03.ahk
    ~easycom\ws4ahk0-04.ahk
    ~easycom\ws4ahk0-20.ahk
    ~Eedis\Games\Paper Wars BUGS\Paper Wars.ahk
    ~Eedis\MiscFun\Binary Clock\Binary Clock.ahk
    ~Elesar\Scripts\GUI-LED.ahk
    ~Elesar\Scripts\SwatTools.ahk
    ~Elesar\Scripts\VGLauncher.ahk
    ~emdktl\StopWatch\Stopwatch1.ahk
    ~emdktl\StopWatch\Stopwatch3.ahk
    ~eryksun\bell\bell.ahk
    ~evanlim86\loggy.ahk
    ~evl\AltTab\AltTab.ahk
    ~evl\AutoHotkey Script Restarter\AutoHotkey Script Restarter.ahk
    ~evl\Start_Button_Clock\Start Button Clock.ahk
    ~exiled\steins_gate.ahk
    ~exiled\sticky_calc.ahk
    ~fasto\gdi\gdiplus_outlinedtext.ahk
    ~fbird17\RemoteKCWin7\RemoteKCWin7.ahk
    ~FenrirMushaka\ScrollTrek - v1.0.ahk
    ~FenrirMushaka\ScrollTrek - v1.3.ahk
    ~firefly-mini\FireflyMini.ahk
    ~FirstToyLab\NKInfiltrator.ahk
    ~flashkid\Compile_AHK.ahk
    ~Fluffy654\Tag\Tag 0.1.ahk
    ~foom\ShellNew\AHK Template Script Creator.ahk
    ~Fragman\gdip.ahk
    ~frankie\IE_Input\IE Input Helper.ahk
    ~fredchf\Scripts\Spiegelung\Spiegelung.ahk
    ~fuzz54\Unit-converter20.ahk
    ~gahks\AutoComplete-Example.ahk
    ~gahks\BetterRun!.ahk
    ~gahks\CopyDirStructure.ahk
    ~gahks\dynamic.ahk
    ~gahks\httpQuery.ahk
    ~gahks\hwtimer.ahk
    ~gahks\Listview_G.ahk
    ~gahks\Listview_G_sandbox.ahk
    ~gahks\randomdotorg.ahk
    ~gahks\SnapWindows.ahk
    ~gahks\SrtSynch.ahk
    ~gahks\Sub2Srt_Srt2Sub.ahk
    ~gahks\subframerate.ahk
    ~gahks\uriencode.ahk
    ~gahks\uriEncoder-Decoder.ahk
    ~gahks\WinHideGUI.ahk
    ~garry\20080801_TV_RADIO_YOUTUBE_M3U.ahk
    ~garry\20080803_TV_RADIO_YOUTUBE_M3U.ahk
    ~garry\INDEXDAT_IE_FIREFOX_CACHE02.ahk
    ~garry\LVX_EX_103b.ahk
    ~garry\YOUTUBE05_FORUM.ahk
    ~Getfree\Ahk2Exe\Compiler.ahk
    ~Getfree\Ahk2Exe\IconChanger.ahk
    ~Getfree\Ahk2Exe\ScriptParser.ahk
    ~GlabbichRulz\IpChecker\IPchecker.ahk
    ~gobertech\AutoHotkey.ahk
    ~goyyah\AHK\ControlSPY.ahk
    ~goyyah\CrazyScripts\ScreenCaptureToPNG\SCTP-Ext1.ahk
    ~goyyah\CrazyScripts\SlideShow\SlideShow.ahk
    ~goyyah\samples\1\MyHotkeys.ahk
    ~goyyah\Tips-N-Tricks\AOB\DT_Clock.ahk
    ~goyyah\Tips-N-Tricks\Gradients\BitmapGradient.ahk
    ~goyyah\Tips-N-Tricks\Gradients\gb1.ahk
    ~goyyah\Tips-N-Tricks\Gradients\OSD_VOL_Gradient.ahk
    ~goyyah\Tips-N-Tricks\IEAR\IE_Auto_Refresher.ahk
    ~goyyah\Tips-N-Tricks\Shadowed_Text\ST_Demo.ahk
    ~goyyah\Tips-N-Tricks\TaskBar\Button_Clock_WINXP.ahk
    ~goyyah\Tips-N-Tricks\TaskBar\ButtonClock_CDT_WINXP.ahk
    ~grayatrox\VersionUpdater\ftp.ahk
    ~guest3456\myUTest.ahk
    ~gwarble\Compile\Compile.ahk
    ~gwarble\EitherMouse\v041\EitherMouse.ahk
    ~gwarble\EmailTest\EmailTest.ahk
    ~gwarble\Instance\Instance.ahk
    ~gwarble\Notify\Notify.ahk
    ~gwarble\Notify\NotifyTest4981.ahk
    ~haichen\Kronomium\Kronomium.ahk
    ~haichen\zbox\zbox_pc1.ahk
    ~halweg\fensterpflege.ahk
    ~halweg\IC_Settings.ahk
    ~health901\evetools\T1_rig.ahk
    ~health901\justforfun\QQ.ahk
    ~heresy\Functions\CB.ahk
    ~heresy\Functions\msg.ahk
    ~heresy\Functions\On.ahk
    ~heresy\Functions\SB.ahk
    ~heresy\Functions\Service.ahk
    ~heresy\Scripts\AHKMessenger.ahk
    ~heresy\Scripts\QuickConverter-TrayTipVer.ahk
    ~Herters1893\SmartGUI.ahk
    ~HotKeyIt\_RemoteBuf.ahk
    ~HotKeyIt\_Scintilla.ahk
    ~HotKeyIt\HotKeyIt.AHK
    ~HotKeyIt\Struct.ahk
    ~HotKeyIt\TT.ahk
    ~HotKeyIt\TTExample.ahk
    ~HotKeyIt\Watchdir_AHK_H.ahk
    ~HotKeyIt\WinDlls.ahk
    ~HotKeyIt\AutoHotFile\AutoHotFile.ahk
    ~HotKeyIt\LibV1\AhkDllThread.ahk
    ~HotKeyIt\LibV1\WinApi.ahk
    ~HotKeyIt\LibV1\Yaml.ahk
    ~HotKeyIt\LibV2\_MemoryLibrary.ahk
    ~HotKeyIt\LibV2\AhkDllThread.ahk
    ~HotKeyIt\LibV2\WatchDirectory.ahk
    ~HotKeyIt\LibV2\WinApi.ahk
    ~HuBa\AHKDevHelper.ahk
    ~HuBa\ProcessInfo.ahk
    ~hugov\tf.ahk
    ~Hyde\hyde\hyde.zip
    ~iBob35555VR\Library\LV_ShellIcons.ahk
    ~ich_L\CTLCOLORS\CTLCOLORS_sample.ahk
    ~ich_L\InCell\LVEDIT.ahk
    ~ich_L\LV_InCellEdit\v1.1\Class_LV_InCellEdit.ahk
    ~ich_L\SQLiteDB_EN\SQLiteDB_sample.ahk
    ~ih57452\Registry.ahk
    ~infogulch\GameKeymapping.ahk
    ~infogulch\TaskButton.ahk
    ~infogulch\TrayIcon.ahk
    ~infogulch\iTunes\iTunes.ahk
    ~infogulch\Projects\random\AHK_L\random.ahk
    ~infogulch\Projects\SimpleArray\SimpleArray-Current.ahk
    ~irv\forums\specialchar.ahk
    ~jaco0646\Clipboard History.ahk
    ~jaco0646\Correlation Coefficient.ahk
    ~jaco0646\Directory Compare.ahk
    ~jaco0646\Dual Display Toggle.ahk
    ~jaco0646\Dynamic Hotkeys.ahk
    ~jaco0646\ECSD.ahk
    ~jaco0646\IE Cache Delete.ahk
    ~jaco0646\Infection.ahk
    ~jaco0646\Mancala.ahk
    ~jaco0646\MasterMind.ahk
    ~jaco0646\MRU.ahk
    ~jaco0646\Real-Time Search.ahk
    ~jaco0646\Sender.ahk
    ~jaco0646\StopWatch.ahk
    ~jaco0646\Win32Constants.ahk
    ~Jamie\bmpread.ahk
    ~Jamie\is2.ahk
    ~jballi\CMsgBox\v0.1\CMsgBox.ahk
    ~jballi\HotkeyGUI\v0.4\HotkeyGUI.ahk
    ~jballi\InfoGUI\v0.4\InfoGUI.ahk
    ~jballi\InfoGUI\v0.4\InfoGUI - Examples.ahk
    ~jballi\MCI\v0.1\MCI.ahk
    ~jballi\MCI\v0.2\MCI.ahk
    ~jballi\MCI\v0.3\MCI.ahk
    ~jballi\MCI\v1.1\MCI.ahk
    ~jballi\PopupXY\v0.4\PopupXY.ahk
    ~jballi\PopupXY\v0.4\PopupXY - Examples Of Use.ahk
    ~jballi\PopupXY\v2.0\PopupXY - Examples.ahk
    ~jballi\Winamp\v1.0\Winamp.ahk
    ~JDN\CONFIG\EDIT_TOOLS.AHK
    ~JDN\CONFIG\MAIN.AHK
    ~Jero3n\Fusion\Fusion_0.2_beta_source.ahk
    ~jethrow\Acc.ahk
    ~jethrow\iWeb_L.ahk
    ~jethrow\CLSID Registry\CLSID Registry Scanner Source.ahk
    ~jethrow\iWebBrowser2 Learner\iWB2 Learner.zip
    ~jethrow\Mouse Recorder\Mouse Recorder.ahk
    ~Johny\AutoScriptPlayer\AutoScriptPlayer.ahk
    ~Johny\AutoScriptPlayer\AutoScriptPlayer0_1.ahk
    ~JonS\cycleWindow\cycleWindow.ahk
    ~JonS\cycleWindow\older versions\CycleWindow1.0\cycleWindow.ahk
    ~JonS\cycleWindow\older versions\CycleWindow1.0\cycleWindow(noThumb).ahk
    ~joten\bunny.ahk
    ~joten\download\quaky_a-nd_001.ahk
    ~jpjazzy\CodeTester.ahk
    ~jpjazzy\FAKE BUG.ahk
    ~jpjazzy\GUIHider.ahk
    ~jpjazzy\SmartBright.ahk
    ~jpjazzy\AutoHotkey Topic Watcher\AutoHotkey Topic Watcher.ahk
    ~jpjazzy\AutoHotkey Topic Watcher\RSSINI.txt
    ~jpjazzy\MasterBoard\MasterBoard.ahk
    ~jpjazzy\UniversalController\JoystickScript.AHK
    ~JSLover\Scripts\Includes\Auto-Reload.ahi\Auto-Reload.ahi-Example.ahk
    ~JSLover\Scripts\Includes\Switch-Case\Switch-Case-Example.ahk
    ~JudH\fitatrak.ahk
    ~jyloup\Lastminute\COM.ahk
    ~jyloup\Lastminute\CSV.ahk
    ~jyloup\Lastminute\Lastminute_fast_ENGv.1.0.ahk
    ~k3ph\bass\+examples\videoplayer.ahk
    ~k3ph\bass\trunk\bass.ahk
    ~k3ph\bass\trunk\bassenc.ahk
    ~k3ph\bass\trunk\bassfx.ahk
    ~k3ph\bass\trunk\basswma.ahk
    ~k3ph\bass\_bassmod\bassmod.ahk
    ~k3ph\misc\sball.ahk
    ~k3ph\misc\xmas.ahk
    ~Kerry\func_Update.ahk
    ~kiu\AHkxplorer.ahk
    ~Krogdor\Snake.ahk
    ~labouche10\MyCalculator.ahk
    ~ladiko\AVNotifyDisabler\AVNotifyDisabler.ahk
    ~ladiko\Compile_AHK\Compile_AHK.ahk
    ~ladiko\Compile_AHK\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.06\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.06\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.08\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.08\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.09\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.11\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.12\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.13\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.14\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.18\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.18\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.19\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.19\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.20\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.21\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.22\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.22\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.24\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.27\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.27\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.28\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.34\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.36\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.36\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.37\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.38\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.39\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.40\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.41\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.43\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.44\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.45\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.45\Compile_AHK_Setup.ahk
    ~ladiko\Compile_AHK\0.9.0.46\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.47\Compile_AHK.ahk
    ~ladiko\Compile_AHK\0.9.0.48\Compile_AHK_Setup.ahk
    ~ladiko\WIHU_Sorter\WIHU_Sorter.ahk
    ~Laszlo\calc.ahk
    ~Laszlo\calc350\calc.ahk
    ~Laszlo\MoonClock\moonclock.ahk
    ~Learning one\Mouse gestures module\MouseGestures.ahk
    ~Learning one\Radial Menu\Radial menu v1.ahk
    ~Learning one\Radial Menu\Radial menu v2.ahk
    ~Learning one\Radial Menu\Simple radial menu.ahk
    ~Learning one\ScreenClip2Win\ScreenClip2Win.ahk
    ~Leef_me\ScreenCapture.ahk
    ~Leef_me\zoom_FreePCB2.ahk
    ~Lexikos\DBGP.ahk
    ~Lexikos\dbgp_console.ahk
    ~Lexikos\dbgp_test.ahk
    ~Lexikos\ScrollMomentum.ahk
    ~Lexikos\TbMenu-proto.ahk
    ~Lexikos\Update.ahk
    ~Lexikos\XInput.ahk
    ~Lexikos\AHKControl\AHKControl.ahk
    ~Lexikos\Gestures\Gestures_User.ahk
    ~Lexikos\MI\MI.ahk
    ~Lexikos\MI\temp.ahk
    ~linpinger\bin\lib\FreeImage.ahk
    ~linpinger\bin\lib\IE.ahk
    ~linpinger\bin\lib\IEL.ahk
    ~linpinger\bin\lib\SQLite.ahk
    ~linpinger\bin\mobi\QiDianTxt2Mobi.ahk
    ~linpinger\bin\pdf\AnsiTxt2PDF.ahk
    ~linpinger\bin\pdf\AnsiTxt2PDF_CMD.ahk
    ~linpinger\bin\pdf\FoxPDF_DllTest.ahk
    ~linpinger\bin\tmp\AHK_Process_Manager.ahk
    ~linpinger\bin\tmp\nod32_Make_offline.ahk
    ~linpinger\bin\tmp\PeekPassword.ahk
    ~LiteralKa\saovq.ahk
    ~luetkmeyer\TVGuideBR.ahk
    ~luffyzanderson\Chess Tournament Software\No Stress Chess Tournament Software v5.3.ahk
    ~mab\scripts\DropboxControl.ahk
    ~maestrith\sw.ahk
    ~maestrith\Script Writer\Script Writer.ahk
    ~magestickown\scripts\RapidFire.ahk
    ~majkinetor\JumpToFunction.ahk
    ~majkinetor\Align\_Test.ahk
    ~majkinetor\Align\_TestLayouts.ahk
    ~majkinetor\Align\_TestMarker.ahk
    ~majkinetor\Align\Align.html
    ~majkinetor\Align\Align.ahk
    ~majkinetor\Align\inc\Attach.ahk
    ~majkinetor\Align\inc\Panel.ahk
    ~majkinetor\Align\inc\Splitter.ahk
    ~majkinetor\Align\inc\Win.ahk
    ~majkinetor\App\$.ahk
    ~majkinetor\App\New Project.ahk
    ~majkinetor\Appbar\_DebugView.ahk
    ~majkinetor\Appbar\_Taskbar.ahk
    ~majkinetor\Appbar\_TestMultiple.ahk
    ~majkinetor\Appbar\AppBar.ahk
    ~majkinetor\Appbar\AppBar.html
    ~majkinetor\Appbar\taskbar.png
    ~majkinetor\Appbar\Taskbar\_.ahk
    ~majkinetor\Appbar\Taskbar\COM.ahk
    ~majkinetor\Appbar\Taskbar\IL.ahk
    ~majkinetor\Appbar\Taskbar\Rebar.ahk
    ~majkinetor\Appbar\Taskbar\Shell.ahk
    ~majkinetor\Appbar\Taskbar\ShellContextMenu.ahk
    ~majkinetor\Appbar\Taskbar\ShowMenu.ahk
    ~majkinetor\Appbar\Taskbar\Taskbar.ahk
    ~majkinetor\Appbar\Taskbar\Toolbar.ahk
    ~majkinetor\Appbar\Taskbar\Tray.ahk
    ~majkinetor\Appbar\Taskbar\Win.ahk
    ~majkinetor\Attach\_AnchorSample.ahk
    ~majkinetor\Attach\_Test.ahk
    ~majkinetor\Attach\_TestP.ahk
    ~majkinetor\Attach\Attach.html
    ~majkinetor\Attach\Attach.ahk
    ~majkinetor\Attach\inc\pic.bmp
    ~majkinetor\Attach\inc\Win.ahk
    ~majkinetor\CColor\_Test.ahk
    ~majkinetor\CColor\CColor.html
    ~majkinetor\CColor\CColor.ahk
    ~majkinetor\CColor\inc\Attach.ahk
    ~majkinetor\ComboX\_Test.ahk
    ~majkinetor\ComboX\_Test2.ahk
    ~majkinetor\ComboX\ComboX.html
    ~majkinetor\ComboX\ComboX.ahk
    ~majkinetor\ComboX\images\ComboX.png
    ~majkinetor\ComboX\inc\Attach.ahk
    ~majkinetor\ComboX\inc\Win.ahk
    ~majkinetor\Dlg\_Test.ahk
    ~majkinetor\Dlg\Dlg.ahk
    ~majkinetor\Dlg\Dlg.html
    ~majkinetor\Dlg\images\Dlg_Color.png
    ~majkinetor\Dlg\images\Dlg_Find.png
    ~majkinetor\Dlg\images\Dlg_Font.png
    ~majkinetor\Dlg\images\Dlg_Icon.png
    ~majkinetor\Dlg\images\Dlg_Open.png
    ~majkinetor\Dlg\images\Dlg_Replace.png
    ~majkinetor\Dlg\images\Dlg_Save.png
    ~majkinetor\Dock\_ Main Test.ahk
    ~majkinetor\Dock\_Bmcclure.ahk
    ~majkinetor\Dock\_Customizable Left Side.ahk
    ~majkinetor\Dock\_Mini Win.ahk
    ~majkinetor\Dock\_Roll.ahk
    ~majkinetor\Dock\_Ruller.ahk
    ~majkinetor\Dock\_TitleButtons and 2 nontop clients.ahk
    ~majkinetor\Dock\_Two toolbars.ahk
    ~majkinetor\Dock\Dock.html
    ~majkinetor\Dock\Dock.ahk
    ~majkinetor\Dock\rulerh.jpg
    ~majkinetor\Dock\rulerv.jpg
    ~majkinetor\DockA\_Test.ahk
    ~majkinetor\DockA\DockA.ahk
    ~majkinetor\DockA\DockA.html
    ~majkinetor\Font\_Test.ahk
    ~majkinetor\Font\Font.html
    ~majkinetor\Font\Font.ahk
    ~majkinetor\Form\Demo.ahk
    ~majkinetor\Form\mkdoc.cmd
    ~majkinetor\Form\mkzip.cmd
    ~majkinetor\Form\images\Dlg_Color.png
    ~majkinetor\Form\images\Dlg_Find.png
    ~majkinetor\Form\images\Dlg_Font.png
    ~majkinetor\Form\images\Dlg_Icon.png
    ~majkinetor\Form\images\Dlg_Open.png
    ~majkinetor\Form\images\Dlg_Replace.png
    ~majkinetor\Form\images\Dlg_Save.png
    ~majkinetor\Form\images\HiEdit.png
    ~majkinetor\Form\images\RaGrid.png
    ~majkinetor\Form\images\Rebar.png
    ~majkinetor\Form\images\Splitter.png
    ~majkinetor\Form\images\SpreadSheet.png
    ~majkinetor\Form\images\Toolbar.png
    ~majkinetor\Form\images\Toolbar_Catalogs.png
    ~majkinetor\Form\images\Toolbar_Customize.png
    ~majkinetor\Form\inc\_.ahk
    ~majkinetor\Form\inc\_Forms.ahk
    ~majkinetor\Form\inc\Align.ahk
    ~majkinetor\Form\inc\Attach.ahk
    ~majkinetor\Form\inc\CColor.ahk
    ~majkinetor\Form\inc\CMenu.ahk
    ~majkinetor\Form\inc\Cursor.ahk
    ~majkinetor\Form\inc\Dlg.ahk
    ~majkinetor\Form\inc\DockA.ahk
    ~majkinetor\Form\inc\Font.ahk
    ~majkinetor\Form\inc\Form.ahk
    ~majkinetor\Form\inc\HiEdit.ahk
    ~majkinetor\Form\inc\HiEdit.dll
    ~majkinetor\Form\inc\HLink.ahk
    ~majkinetor\Form\inc\ILButton.ahk
    ~majkinetor\Form\inc\KeyWords.hes
    ~majkinetor\Form\inc\Panel.ahk
    ~majkinetor\Form\inc\Property.ahk
    ~majkinetor\Form\inc\Qhtm.dll
    ~majkinetor\Form\inc\Qhtm.ahk
    ~majkinetor\Form\inc\RAGrid.dll
    ~majkinetor\Form\inc\RaGrid.ahk
    ~majkinetor\Form\inc\Rebar.ahk
    ~majkinetor\Form\inc\RichEdit.ahk
    ~majkinetor\Form\inc\ScrollBar.ahk
    ~majkinetor\Form\inc\Scroller.ahk
    ~majkinetor\Form\inc\ShowMenu.ahk
    ~majkinetor\Form\inc\Splitter.ahk
    ~majkinetor\Form\inc\SpreadSheet.ahk
    ~majkinetor\Form\inc\SprSht.dll
    ~majkinetor\Form\inc\Toolbar.ahk
    ~majkinetor\Form\inc\Tooltip.ahk
    ~majkinetor\Form\inc\Win.ahk
    ~majkinetor\Form\tests\Controls.ahk
    ~majkinetor\Form\tests\StressControls.ahk
    ~majkinetor\Form\tests\StressControlsCustom.ahk
    ~majkinetor\Form\tests\Align\_Test.ahk
    ~majkinetor\Form\tests\Align\Layouts.ahk
    ~majkinetor\Form\tests\Align\Marker.ahk
    ~majkinetor\Form\tests\Attach\_AnchorSample.ahk
    ~majkinetor\Form\tests\Attach\_Test.ahk
    ~majkinetor\Form\tests\Attach\_TestP.ahk
    ~majkinetor\Form\tests\CColor\_Test.ahk
    ~majkinetor\Form\tests\Dlg\_Test.ahk
    ~majkinetor\Form\tests\DockA\_FormDock.ahk
    ~majkinetor\Form\tests\DockA\_Test.ahk
    ~majkinetor\Form\tests\Font\_Test.ahk
    ~majkinetor\Form\tests\Form\_FormTest.ahk
    ~majkinetor\Form\tests\Form\_FormTest2.ahk
    ~majkinetor\Form\tests\HiEdit\_Test.ahk
    ~majkinetor\Form\tests\HLink\_Test.ahk
    ~majkinetor\Form\tests\Panel\PseudoForms.ahk
    ~majkinetor\Form\tests\Panel\PseudoTab.ahk
    ~majkinetor\Form\tests\Panel\PseudoTabCustom.ahk
    ~majkinetor\Form\tests\Panel\StressTest.ahk
    ~majkinetor\Form\tests\Property\_Test.ahk
    ~majkinetor\Form\tests\QHTM\_Test.ahk
    ~majkinetor\Form\tests\QHTM\Res\a.gif
    ~majkinetor\Form\tests\QHTM\Res\about.html
    ~majkinetor\Form\tests\QHTM\Res\alphaanimation.mng
    ~majkinetor\Form\tests\QHTM\Res\alphaball.png
    ~majkinetor\Form\tests\QHTM\Res\alphaedge.png
    ~majkinetor\Form\tests\QHTM\Res\animation.mng
    ~majkinetor\Form\tests\QHTM\Res\background.bmp
    ~majkinetor\Form\tests\QHTM\Res\circle.bmp
    ~majkinetor\Form\tests\QHTM\Res\clickme.mng
    ~majkinetor\Form\tests\QHTM\Res\fonts.html
    ~majkinetor\Form\tests\QHTM\Res\footer.html
    ~majkinetor\Form\tests\QHTM\Res\forms.html
    ~majkinetor\Form\tests\QHTM\Res\header.html
    ~majkinetor\Form\tests\QHTM\Res\headings.html
    ~majkinetor\Form\tests\QHTM\Res\hyperlink.html
    ~majkinetor\Form\tests\QHTM\Res\images.html
    ~majkinetor\Form\tests\QHTM\Res\lists.html
    ~majkinetor\Form\tests\QHTM\Res\monkey.jpg
    ~majkinetor\Form\tests\QHTM\Res\qhtm.png
    ~majkinetor\Form\tests\QHTM\Res\qhtm_demo_logo.png
    ~majkinetor\Form\tests\QHTM\Res\Styles.html
    ~majkinetor\Form\tests\QHTM\Res\tables.html
    ~majkinetor\Form\tests\QHTM\Res\welcome.html
    ~majkinetor\Form\tests\RaGrid\_Test.ahk
    ~majkinetor\Form\tests\RaGrid\inc\il.ahk
    ~majkinetor\Form\tests\Rebar\_Splitter.ahk
    ~majkinetor\Form\tests\Rebar\_Test.ahk
    ~majkinetor\Form\tests\RichEdit\_Simple.ahk
    ~majkinetor\Form\tests\RichEdit\_Test.ahk
    ~majkinetor\Form\tests\ScrollBar\_Test.ahk
    ~majkinetor\Form\tests\Scroller\_Scroller.ahk
    ~majkinetor\Form\tests\Scroller\_Scroller2.ahk
    ~majkinetor\Form\tests\ShowMenu\_Test.ahk
    ~majkinetor\Form\tests\Splitter\_Horizontal.ahk
    ~majkinetor\Form\tests\Splitter\_InPanel.ahk
    ~majkinetor\Form\tests\Splitter\_Multiple.ahk
    ~majkinetor\Form\tests\Splitter\_Vertical.ahk
    ~majkinetor\Form\tests\SpreadSheet\_Test.ahk
    ~majkinetor\Form\tests\SpreadSheet\Test1.spr
    ~majkinetor\Form\tests\SpreadSheet\Test2.spr
    ~majkinetor\Form\tests\Toolbar\_Corners.ahk
    ~majkinetor\Form\tests\Toolbar\_Customize.ahk
    ~majkinetor\Form\tests\Toolbar\_Dynamic.ahk
    ~majkinetor\Form\tests\Toolbar\_Multiple.ahk
    ~majkinetor\Form\tests\Toolbar\_Quick Launch.ahk
    ~majkinetor\Form\tests\Toolbar\_Simple.ahk
    ~majkinetor\Form\tests\Toolbar\_Test.ahk
    ~majkinetor\Form\tests\Win\_Recall.ahk
    ~majkinetor\Form\tests\Win\_RecallShellHook.ahk
    ~majkinetor\Form\tests\_res\bg.bmp
    ~majkinetor\Form\tests\_res\btn1.bmp
    ~majkinetor\Form\tests\_res\colors.rtf
    ~majkinetor\Form\tests\_res\pic.png
    ~majkinetor\Form\tests\_res\test.png
    ~majkinetor\Form\widgets\_Test.ahk
    ~majkinetor\Form\widgets\Writer.ahk
    ~majkinetor\Form\widgets\btns\01. bold.png
    ~majkinetor\Form\widgets\btns\02. italic.png
    ~majkinetor\Form\widgets\btns\03. underline.png
    ~majkinetor\Form\widgets\btns\04. strikeout.png
    ~majkinetor\Form\widgets\btns\10. left.png
    ~majkinetor\Form\widgets\btns\11. center.png
    ~majkinetor\Form\widgets\btns\12. right.png
    ~majkinetor\Form\widgets\btns\20. indent.png
    ~majkinetor\Form\widgets\btns\21. dedent.png
    ~majkinetor\Form\widgets\btns\22. bullet.png
    ~majkinetor\Form\widgets\btns\bgcolor.png
    ~majkinetor\Form\widgets\btns\textcolor.png
    ~majkinetor\HiEdit\_Test.ahk
    ~majkinetor\HiEdit\HiEdit.html
    ~majkinetor\HiEdit\HiEdit.dll
    ~majkinetor\HiEdit\HiEdit.inc
    ~majkinetor\HiEdit\HiEdit.ahk
    ~majkinetor\HiEdit\KeyWords.hes
    ~majkinetor\HiEdit\images\HiEdit.png
    ~majkinetor\HiEdit\inc\Attach.ahk
    ~majkinetor\HiEdit\inc\Dlg.ahk
    ~majkinetor\HLink\_Test.ahk
    ~majkinetor\HLink\HLink.html
    ~majkinetor\HLink\HLink.ahk
    ~majkinetor\IconEx\_Test.ahk
    ~majkinetor\IconEx\_Test2.ahk
    ~majkinetor\IconEx\IconEx.ahk
    ~majkinetor\IconEx\setings.ini
    ~majkinetor\IconEx\images\iconex.png
    ~majkinetor\Ini\Ini.ahk
    ~majkinetor\Ini\Ini01.ahk
    ~majkinetor\IPC\IPC.ahk
    ~majkinetor\IPC\IPC.html
    ~majkinetor\IPC\IPC.cs
    ~majkinetor\IPC\AHK\Script1.ahk
    ~majkinetor\IPC\AHK\Script2.ahk
    ~majkinetor\IPC\DotNet\Csharp.ahk
    ~majkinetor\IPC\DotNet\IPC_Test 32b.exe
    ~majkinetor\IPC\DotNet\IPC_Test 64b.exe
    ~majkinetor\IPC\DotNet\IPC_Test\Form1.resx
    ~majkinetor\IPC\DotNet\IPC_Test\Form1.cs
    ~majkinetor\IPC\DotNet\IPC_Test\IPC.cs
    ~majkinetor\IPC\DotNet\IPC_Test\IPC_Test.suo
    ~majkinetor\IPC\DotNet\IPC_Test\IPC_Test.csproj
    ~majkinetor\IPC\IPC (copydata)\WindowsApplication4.suo
    ~majkinetor\IPC\IPC (copydata)\C#\App.ico
    ~majkinetor\IPC\IPC (copydata)\C#\AssemblyInfo.cs
    ~majkinetor\IPC\IPC (copydata)\C#\Form1.cs
    ~majkinetor\IPC\IPC (copydata)\C#\Form1.resx
    ~majkinetor\IPC\IPC (copydata)\C#\IPC.cs
    ~majkinetor\IPC\IPC (copydata)\C#\WindowsApplication4.sln
    ~majkinetor\IPC\IPC (copydata)\C#\WindowsApplication4.csproj
    ~majkinetor\IPC\IPC (copydata)\C#\WindowsApplication4.suo
    ~majkinetor\IPC\IPC (copydata)\C#\WindowsApplication4.csproj.user
    ~majkinetor\IPC\IPC (copydata)\C#\bin\Release\WindowsApplication4.exe
    ~majkinetor\IPC\IPC (copydata)\C#\obj\Debug\WindowsApplication4.exe
    ~majkinetor\IPC\IPC (copydata)\C#\obj\Debug\WindowsApplication4.pdb
    ~majkinetor\IPC\IPC (copydata)\C#\obj\Release\WindowsApplication4.exe
    ~majkinetor\IPC\IPC (copydata)\C#\obj\Release\WindowsApplication4.Form1.resources
    ~majkinetor\IPC\IPC (copydata)\ipc\IPC.ahk
    ~majkinetor\IPC\IPC (copydata)\ipc\IPC.cs
    ~majkinetor\IPC\IPC (copydata)\Sample\_readme.txt
    ~majkinetor\IPC\IPC (copydata)\Sample\Client.ahk
    ~majkinetor\IPC\IPC (copydata)\Sample\Host.exe
    ~majkinetor\IPC\IPC (copydata)\Sample\Script1.ahk
    ~majkinetor\IPC\IPC (copydata)\Sample\Script2.ahk
    ~majkinetor\IPC\IPC (port)\Client.ahk
    ~majkinetor\IPC\IPC (port)\Host.exe
    ~majkinetor\IPC\IPC (port)\WindowsApplication4.suo
    ~majkinetor\IPC\IPC (port)\C#\App.ico
    ~majkinetor\IPC\IPC (port)\C#\AssemblyInfo.cs
    ~majkinetor\IPC\IPC (port)\C#\Form1.cs
    ~majkinetor\IPC\IPC (port)\C#\Form1.resx
    ~majkinetor\IPC\IPC (port)\C#\WindowsApplication4.csproj
    ~majkinetor\IPC\IPC (port)\C#\WindowsApplication4.sln
    ~majkinetor\IPC\IPC (port)\C#\WindowsApplication4.csproj.user
    ~majkinetor\IPC\IPC (port)\C#\bin\Debug\WindowsApplication4.pdb
    ~majkinetor\IPC\IPC (port)\C#\bin\Debug\WindowsApplication4.exe
    ~majkinetor\IPC\IPC (port)\C#\obj\Debug\WindowsApplication4.exe
    ~majkinetor\IPC\IPC (port)\C#\obj\Debug\WindowsApplication4.pdb
    ~majkinetor\IPC\IPC (port)\C#\obj\Debug\WindowsApplication4.Form1.resources
    ~majkinetor\IPC\IPC (port)\C#\obj\Release\WindowsApplication4.projdata
    ~majkinetor\IPC\IPC (port)\C#\obj\Release\WindowsApplication4.exe
    ~majkinetor\Logger\_TestLogger.ahk
    ~majkinetor\Logger\Logger.png
    ~majkinetor\Logger\Logger.html
    ~majkinetor\Logger\qhtm.DLL
    ~majkinetor\Logger\icons\error.png
    ~majkinetor\Logger\icons\error2.png
    ~majkinetor\Logger\icons\info.png
    ~majkinetor\Logger\icons\info2.png
    ~majkinetor\Logger\icons\warning.png
    ~majkinetor\Logger\icons\warning2.png
    ~majkinetor\Logger\inc\Logger.ahk
    ~majkinetor\Logger\inc\Logger_Config.ahk
    ~majkinetor\Logger\inc\Qhtm.ahk
    ~majkinetor\MRS\TCwdx.ahk
    ~majkinetor\MsgBoxx\MsgBoxx.ahk
    ~majkinetor\MsgBoxx\ShowHtmlDialog.ahk
    ~majkinetor\Parse\1.txt
    ~majkinetor\Parse\Parse.html
    ~majkinetor\Parse\Parse.ahk
    ~majkinetor\Parse\test\ParseTest.ahk
    ~majkinetor\Parse\test\UTest.ahk
    ~majkinetor\Property\_Test.ahk
    ~majkinetor\Property\Property.ahk
    ~majkinetor\Property\Property.html
    ~majkinetor\Property\SpreadSheet.ahk
    ~majkinetor\Property\SprSht.dll
    ~majkinetor\QHTM\_Demo.ahk
    ~majkinetor\QHTM\qhtm.DLL
    ~majkinetor\QHTM\Qhtm.ahk
    ~majkinetor\QHTM\DLLs\qhtm.DLL
    ~majkinetor\QHTM\DLLs\qhtm.h
    ~majkinetor\QHTM\DLLs\qhtm64.DLL
    ~majkinetor\QHTM\DLLs\qhtm64U.DLL
    ~majkinetor\QHTM\DLLs\qhtmLight.dll
    ~majkinetor\QHTM\DLLs\qhtmU.DLL
    ~majkinetor\QHTM\Res\a.gif
    ~majkinetor\QHTM\Res\about.html
    ~majkinetor\QHTM\Res\alphaanimation.mng
    ~majkinetor\QHTM\Res\alphaball.png
    ~majkinetor\QHTM\Res\alphaedge.png
    ~majkinetor\QHTM\Res\animation.mng
    ~majkinetor\QHTM\Res\background.bmp
    ~majkinetor\QHTM\Res\circle.bmp
    ~majkinetor\QHTM\Res\clickme.mng
    ~majkinetor\QHTM\Res\fonts.html
    ~majkinetor\QHTM\Res\footer.html
    ~majkinetor\QHTM\Res\forms.html
    ~majkinetor\QHTM\Res\header.html
    ~majkinetor\QHTM\Res\headings.html
    ~majkinetor\QHTM\Res\hyperlink.html
    ~majkinetor\QHTM\Res\images.html
    ~majkinetor\QHTM\Res\lists.html
    ~majkinetor\QHTM\Res\monkey.jpg
    ~majkinetor\QHTM\Res\qhtm.png
    ~majkinetor\QHTM\Res\qhtm_demo_logo.png
    ~majkinetor\QHTM\Res\Styles.html
    ~majkinetor\QHTM\Res\tables.html
    ~majkinetor\QHTM\Res\welcome.html
    ~majkinetor\RaGrid\_Test.ahk
    ~majkinetor\RaGrid\RaGrid.html
    ~majkinetor\RaGrid\RAGrid.Inc
    ~majkinetor\RaGrid\RaGrid.ahk
    ~majkinetor\RaGrid\RAGrid.dll
    ~majkinetor\RaGrid\images\RaGrid.png
    ~majkinetor\RaGrid\inc\Attach.ahk
    ~majkinetor\RaGrid\inc\IL.ahk
    ~majkinetor\RaGrid\samples\custctl.zip
    ~majkinetor\RaGrid\samples\grid\COLOR.bmp
    ~majkinetor\RaGrid\samples\grid\COMMCTRL.H--
    ~majkinetor\RaGrid\samples\grid\GridDemo.rc
    ~majkinetor\RaGrid\samples\grid\GridDemo.h--
    ~majkinetor\RaGrid\samples\grid\GridDemo.c--
    ~majkinetor\RaGrid\samples\grid\GridDemo.exe
    ~majkinetor\RaGrid\samples\grid\RAGrid.h--
    ~majkinetor\RaGrid\samples\grid\RAGrid.dll
    ~majkinetor\RaGrid\samples\grid\winuser.h--
    ~majkinetor\RaGrid\samples\GridDemo\GridDemo.Rc
    ~majkinetor\RaGrid\samples\GridDemo\GridDemo.fbp
    ~majkinetor\RaGrid\samples\GridDemo\GridDemo.Bi
    ~majkinetor\RaGrid\samples\GridDemo\GridDemo.exe
    ~majkinetor\RaGrid\samples\GridDemo\GridDemo.Bas
    ~majkinetor\RaGrid\samples\GridDemo\RAGrid.dll
    ~majkinetor\Rebar\_Splitter.ahk
    ~majkinetor\Rebar\_Test.ahk
    ~majkinetor\Rebar\bg.bmp
    ~majkinetor\Rebar\Rebar.html
    ~majkinetor\Rebar\Rebar.ahk
    ~majkinetor\Rebar\Toolbar.ahk
    ~majkinetor\Remote Tree View\RTV.ahk
    ~majkinetor\RemoteBuffer\RemoteBuf.ahk
    ~majkinetor\RemoteBuffer\RemoteBuf.html
    ~majkinetor\RichEdit\_API Demo.ahk
    ~majkinetor\RichEdit\_Test.ahk
    ~majkinetor\RichEdit\colors.rtf
    ~majkinetor\RichEdit\Document.rtf
    ~majkinetor\RichEdit\RichEdit.ahk
    ~majkinetor\RichEdit\RichEdit.html
    ~majkinetor\RichEdit\Todo.ahk
    ~majkinetor\RichEdit\inc\_.ahk
    ~majkinetor\RichEdit\inc\_Forms.ahk
    ~majkinetor\RichEdit\inc\Align.ahk
    ~majkinetor\RichEdit\inc\Attach.ahk
    ~majkinetor\RichEdit\inc\CMenu.ahk
    ~majkinetor\RichEdit\inc\Dlg.ahk
    ~majkinetor\RichEdit\inc\Font.ahk
    ~majkinetor\RichEdit\inc\Form.ahk
    ~majkinetor\RichEdit\inc\Panel.ahk
    ~majkinetor\RichEdit\inc\ShowMenu.ahk
    ~majkinetor\RichEdit\inc\Splitter.ahk
    ~majkinetor\RichEdit\inc\Toolbar.ahk
    ~majkinetor\RichEdit\inc\Win.ahk
    ~majkinetor\Run\_Test.ahk
    ~majkinetor\Run\Run.ahk
    ~majkinetor\Run\Run.html
    ~majkinetor\Scheduler\_Test.ahk
    ~majkinetor\Scheduler\output.txt
    ~majkinetor\Scheduler\Scheduler.html
    ~majkinetor\Scheduler\Scheduler.ahk
    ~majkinetor\ScriptMerge\ScriptMerge09.ahk
    ~majkinetor\ScriptMerge\ScriptMerge091.ahk
    ~majkinetor\ScriptProcessor\ScriptProcesor.ahk
    ~majkinetor\ScrollBar\_Test.ahk
    ~majkinetor\ScrollBar\ScrollBar.html
    ~majkinetor\ScrollBar\ScrollBar.ahk
    ~majkinetor\Scroller\Scroller.ahk
    ~majkinetor\Shell\_.ahk
    ~majkinetor\Shell\_Taskbar.ahk
    ~majkinetor\Shell\_Test.ahk
    ~majkinetor\Shell\AppBar.ahk
    ~majkinetor\Shell\COM.ahk
    ~majkinetor\Shell\IL.ahk
    ~majkinetor\Shell\Rebar.ahk
    ~majkinetor\Shell\Shell.ahk
    ~majkinetor\Shell\ShellContextMenu.ahk
    ~majkinetor\Shell\shellnavigate.ahk
    ~majkinetor\Shell\ShowMenu.ahk
    ~majkinetor\Shell\Taskbar.ahk
    ~majkinetor\Shell\Toolbar.ahk
    ~majkinetor\Shell\TopLevel.ahk
    ~majkinetor\Shell\Tray.ahk
    ~majkinetor\Shell\Win.ahk
    ~majkinetor\ShowMenu\_Test.ahk
    ~majkinetor\ShowMenu\ShowMenu.html
    ~majkinetor\ShowMenu\ShowMenu.ahk
    ~majkinetor\ShowTooltip\_Test.ahk
    ~majkinetor\ShowTooltip\ShowTooltip.ahk
    ~majkinetor\ShowTooltip\ShowTooltip.html
    ~majkinetor\Splitter\_Horizontal.ahk
    ~majkinetor\Splitter\_InPanel.ahk
    ~majkinetor\Splitter\_Multiple.ahk
    ~majkinetor\Splitter\_Vertical.ahk
    ~majkinetor\Splitter\Splitter.ahk
    ~majkinetor\Splitter\Splitter.html
    ~majkinetor\Splitter\images\Splitter.png
    ~majkinetor\Splitter\inc\Attach.ahk
    ~majkinetor\Splitter\inc\Panel.ahk
    ~majkinetor\Splitter\inc\ShowMenu.ahk
    ~majkinetor\Splitter\inc\Win.ahk
    ~majkinetor\SpreadSheet\_Test.ahk
    ~majkinetor\SpreadSheet\SpreadSheet.html
    ~majkinetor\SpreadSheet\SpreadSheet.ahk
    ~majkinetor\SpreadSheet\SprSht.dll
    ~majkinetor\SpreadSheet\Test1.spr
    ~majkinetor\SpreadSheet\Test2.spr
    ~majkinetor\SpreadSheet\SpreadSheet\Database.exe
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText.exe
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo.exe
    ~majkinetor\SpreadSheet\SpreadSheet\mydb.mdb
    ~majkinetor\SpreadSheet\SpreadSheet\myspr.spr
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo.exe
    ~majkinetor\SpreadSheet\SpreadSheet\SpreadSheet.inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprSht.dll
    ~majkinetor\SpreadSheet\SpreadSheet\SprSht.txt
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab.exe
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest.exe
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2.exe
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3.exe
    ~majkinetor\SpreadSheet\SpreadSheet\Test1.spr
    ~majkinetor\SpreadSheet\SpreadSheet\Test2.spr
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Database.rap
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Database.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Database.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Database.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Database.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\Database\ODBC.asm
    ~majkinetor\SpreadSheet\SpreadSheet\Database\Res\DatabaseDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\ForceText.rap
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\ForceText.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\ForceText.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\ForceText.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\ForceText.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\Res\ForceTextDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\ForceText\Res\ForceTextVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.mnu
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\GrdDemo.rap
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\Res\GrdDemoDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\Res\GrdDemoMnu.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\GrdDemo\Res\GrdDemoVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\Lib\SprSht.lib
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Misc.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprCellFmt.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprCellFmt.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.mnu
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprDemo.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmt.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmt.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmtTab1.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmtTab2.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmtTab3.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmtTab4.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\SprGlobalFmtTab5.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprCellFmtDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprDemoDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprDemoMnu.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprDemoVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtTab1Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtTab2Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtTab3Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtTab4Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprGlobalFmtTab5Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprDemo\Res\SprShtVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprCell.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprCompile.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprDraw.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprMath.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprMisc.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprNumbers.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprSht.Def
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprSht.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprSht.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprSht.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprSht.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprShtDll.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprShtLib.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\SprWin.asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\Button.bmp
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\OSplitH.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\OSplitV.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\SplitH.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\SplitV.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\SprShtRes.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprShtDLL\Res\SprShtVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\SprTab.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\SprTab.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\SprTab.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\SprTab.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\SprTab.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\Tab1.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\Res\SprTabDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTab\Res\Tab1Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\SprTest.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\SprTest.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\SprTest.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\SprTest.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\SprTest.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\icon.ico
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\RadAsm.ico
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\SplitH.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\SplitV.cur
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\SprTestDlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\SprTestRes.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest\Res\SprTestVer.rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\SprTest2.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\SprTest2.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\SprTest2.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\SprTest2.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\SprTest2.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest2\Res\SprTest2Dlg.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\SprTest3.dlg
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\SprTest3.rap
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\SprTest3.Rc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\SprTest3.Inc
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\SprTest3.Asm
    ~majkinetor\SpreadSheet\SpreadSheet\SprTest3\Res\SprTest3Dlg.Rc
    ~majkinetor\Taskbar\_Test.ahk
    ~majkinetor\Taskbar\Taskbar.ahk
    ~majkinetor\Taskbar\Taskbar.html
    ~majkinetor\Toolbar\_Corners.ahk
    ~majkinetor\Toolbar\_Customize.ahk
    ~majkinetor\Toolbar\_Menu.ahk
    ~majkinetor\Toolbar\_Multiple.ahk
    ~majkinetor\Toolbar\_Quick Launch.ahk
    ~majkinetor\Toolbar\_Simple.ahk
    ~majkinetor\Toolbar\_Test.ahk
    ~majkinetor\Toolbar\Toolbar.html
    ~majkinetor\Toolbar\Toolbar.ahk
    ~majkinetor\Toolbar\Tutorial.html
    ~majkinetor\Toolbar\images\Toolbar.png
    ~majkinetor\Toolbar\images\Toolbar_Catalogs.png
    ~majkinetor\Toolbar\images\Toolbar_Customize.png
    ~majkinetor\Tray\_Rotate.ahk
    ~majkinetor\Tray\_Test.ahk
    ~majkinetor\Tray\Tray.html
    ~majkinetor\Tray\Tray.ahk
    ~majkinetor\UTest\_Test.ahk
    ~majkinetor\UTest\UTest.html
    ~majkinetor\UTest\UTest.ahk
    ~majkinetor\UTest\images\UTest.png
    ~majkinetor\Win\_Recall.ahk
    ~majkinetor\Win\_RecallShellHook.ahk
    ~majkinetor\Win\Win.ahk
    ~majkinetor\Win\Win.html
    ~majkinetor\_\_.html
    ~majkinetor\_\_.ahk
    ~Maniac\TypingAid\TypingAid v2.09.ahk
    ~Maniac\TypingAid\TypingAid v2.13 pre-alpha for 2.14.ahk
    ~MasterFocus\VarHistory.ahk
    ~MasterFocus\AHK\Func\WaitPixelColor\Example.ahk
    ~MasterFocus\AHK\Func\WaitPixelColor\WaitPixelColor.ahk
    ~MasterFocus\AHK\Lib\TypeFunctions\TypeFunctions.ahk
    ~MasterFocus\AHK\Temp\WinTrigger.ahk
    ~maupa123\MemLib.ahk
    ~Micahs\activegoto4SciTE.ahk
    ~Micha\HIDsupport\RemoteControlMultiWnd.ahk
    ~Micha\mp3tag\AHK-MP3.ahk
    ~Micha\resize\ResizeCtrlDemo.ahk
    ~Micha\X10\X10RemoteControl.ahk
    ~Michael@oz\DMSK\DMSK.ahk
    ~Mio\Attributizer\0.60\Attributizer v0.60.ahk
    ~mojo\Anchor.ahk
    ~mojo\httpQuery.ahk
    ~Morpheus\Robert's INI library Basic.ahk
    ~mwep\OpenThunder\OpenThunder.ahk
    ~mwep\Zwubi\Zwubi.ahk
    ~nelliot1\ahk\iTunesControl.ahk
    ~netfun81\nircmdgui.ahk
    ~NiJo\ScreenShooter.ahk
    ~noob_1999\iswitchwhover.ahk
    ~nothing\MouseAndKeyRecorder\MouseKeyRecorderv1.00.ahk
    ~nothing\MouseAndKeyRecorder\XMR2.0.1.ahk
    ~nothing\MouseAndKeyRecorder\XMR2.0.2.ahk
    ~nothing\X-GuiCreator\X-GUI Creator v0.4.4b.ahk
    ~noutters\SpeedReader.ahk
    ~noutters\UPX_GUI.ahk
    ~Obi-Wahn\Securityvision.ch\Tutorials\Ref\ref.ahk
    ~Obi-Wahn\Securityvision.ch\Tutorials\Ref\ref_test.ahk
    ~Obi-Wahn\stuff\kinderwaechter.ahk
    ~OceanMachine\ConsoleApp\ConsoleApp.ahk
    ~olegbl\AHKA.ahk
    ~olegbl\AHKArray523.ahk
    ~olegbl\AHKArray538.ahk
    ~olegbl\AHKArray539.ahk
    ~olegbl\AHKArray541.ahk
    ~olegbl\AHKArray542.ahk
    ~ophthalmos\iTHotk13.ahk
    ~peterm\My_Anagram-V6s.ahk
    ~PhiLho\__Permanent.ahk
    ~PhiLho\AnimatedSplashScreens.ahk
    ~PhiLho\BinaryEncodingDecoding.ahk
    ~PhiLho\BinReadWrite.ahk
    ~PhiLho\Control_AniGif.ahk
    ~PhiLho\Control_AVI.ahk
    ~PhiLho\DllCallStruct.ahk
    ~PhiLho\DragControl.ahk
    ~PhiLho\GDIplusWrapper.ahk
    ~PhiLho\ListAHKFunctions.ahk
    ~PhiLho\Pebwa.ahk
    ~PhiLho\ReadWriteUnicodeText.ahk
    ~PhiLho\ShowScriptImage.ahk
    ~PhiLho\SyntaxFunctions.ahk
    ~PhiLho\TestBinReadWrite.ahk
    ~PhiLho\TestGDIplus.ahk
    ~PhiLho\TestPCRE_DLL.ahk
    ~PhiLho\WindowsMessages.ahk
    ~POINTS\APM.ahk
    ~POINTS\Ctrl-C.ahk
    ~POINTS\war3.ahk
    ~POINTS\warkeys_test.ahk
    ~ProfessorY\Scripts\RealFanfictionStoryToHardDriveSaver.ahk
    ~psjw12\novellmessenger\0.7\Novell Messenger 0.7.ahk
    ~psjw12\novellmessenger\0.8\Novell Messenger 0.8.ahk
    ~psjw12\novellmessenger\0.8\Toaster.ahk
    ~psjw12\psexecgui\psexec2.ahk
    ~psjw12\shutdownstopper\2.0\files\Shutdown Stopper.ahk
    ~Pulover\MacroCreator.ahk
    ~r0k\script\clip_palette\Clip_Palette.ahk
    ~r0k\script\CMsgBox\fn_CMsgBox.ahk
    ~R3gX\ControlFromClipboard\Sender.ahk
    ~R3gX\Lib\EmptyMem.ahk
    ~R3gX\Lib\GetFileEncoding.ahk
    ~Ragnar\2\docs\scripts\ContextSensitiveHelp.ahk
    ~Ragnar\2\docs\scripts\JoystickMouse.ahk
    ~rajat\scripts\sgui.ahk
    ~Rapte_Of_Suzaku\Container.ahk
    ~Rapte_Of_Suzaku\FC.ahk
    ~Rapte_Of_Suzaku\Prefs.ahk
    ~Rapte_Of_Suzaku\ShellFileOperation.ahk
    ~Rapte_Of_Suzaku\FileContainer\FC.ahk
    ~Rapte_Of_Suzaku\FileContainer\Path.ahk
    ~RaptorOne\Aero_Libary\Aero_Lib.ahk
    ~redyrthgin\KeyboardLedSoundMeter.ahk
    ~rexx\FolderMenu\files\FolderMenu.ahk
    ~rich\FV_Downloader\FV_Downloader.ahk
    ~Rigel\ObjectArray\ObjectArrayTests.ahk
    ~Rseding91\ICO Converter\ICO Converter.ahk
    ~Rseding91\REG to VBS\REG to VBS.ahk
    ~Rseding91\Self Script Updater\Self Script Updater.ahk
    ~scottmattes\scripts\test imagesearch.ahk
    ~scottmattes\scripts\TotalWindow.ahk
    ~Scratch\jumpman.ahk
    ~Sean\Lib\Acc.ahk
    ~Sean\Lib\COM.ahk
    ~Sean\Lib\COM_L.ahk
    ~Sean\Lib\File.ahk
    ~Sean\Scripts\BalloonTip.ahk
    ~Sean\Scripts\CoHelper.ahk
    ~Sean\Scripts\Dictionary.ahk
    ~Sean\Scripts\ScreenCapture.ahk
    ~Sean\Scripts\StdoutToVar.ahk
    ~Sean\Scripts\TaskButton.ahk
    ~Sean\Scripts\TrayIcon.ahk
    ~Sean\Scripts\WinTraymin.ahk
    ~shajul\bin\MyHotKeys.ahk
    ~shajul\HotManager\HotManager.ahk
    ~shajul\Projects\RunAsAdmin.ahk
    ~shinywong\MagicTune\MagicTune.ahk
    ~SifJar\saveas.ahk
    ~sinkfaze\04222012_iWeb_L.ahk
    ~sinkfaze\iWeb_L.ahk
    ~sinkfaze\iWebBrowser2 Learner Build ID2.0.ahk
    ~sinkfaze\iWebLearner2 Script Pad 0.2.ahk
    ~sinkfaze\iWebBrowser2 Learner 2.5\iWebBrowser2 Learner 2.5.exe
    ~sinkfaze\iWebBrowser2 Learner 2.5\iWebBrowser2 Learner 2.5.ahk
    ~sinkfaze\iWebBrowser2 Learner 2.5\iWebBrowser2 Learner 2.5 changelog.txt
    ~Skan\ShortCode\HDD-Indicator_TNA.ahk
    ~Skan\wrapper\Process\Affinity.ahk
    ~SL55 AMG\JumpList.ahk
    ~Solar\ListviewLib_1.01.ahk
    ~sonchaz\MovieFinder\MovieFinder.ahk
    ~sosaited\iMenu\iMENU.ahk
    ~specter333\EasyAuto\Modules\Cmd Mouse Moves.ahk
    ~specter333\HID\Other HID info V1.1.ahk
    ~specter333\HID\ShuttlePro Input Monitor.ahk
    ~specter333\HID\SP _vlc_commands.ahk
    ~specter333\lpt\Eng1.ahk
    ~specter333\lpt\LPT Control.ahk
    ~specter333\lpt\LPT Monitor.ahk
    ~specter333\lpt\LPT Monitor and Sequencer.ahk
    ~specter333\lpt\LPTInOut.ahk
    ~specter333\MPC\App Media Player Classic HC.ahk
    ~specter333\MPC\MediaPlayerClassicHC.ahk
    ~specter333\MPC\MPCHTTP.ahk
    ~specter333\No Image Gui\Inc Commands.ahk
    ~specter333\No Image Gui\Inc P1 Buttons.ahk
    ~specter333\No Image Gui\Inc P2 Buttons.ahk
    ~specter333\Sound_FX_Player\RSFXP.ahk
    ~specter333\System Volume\LCARS Volume Control.ahk
    ~specter333\TransSplashText\Trans Splash Function Test.ahk
    ~specter333\TransSplashText\TransSplashText.ahk
    ~specter333\USB-UIRT\USBUIRT.ahk
    ~specter333\VLC\VLCHTTP.ahk
    ~specter333\WinCE\Battcheck.ahk
    ~specter333\WinCE\Get screen size.ahk
    ~specter333\WinCE\LaunchButtons.ahk
    ~specter333\WinCE\RCDTimer.ahk
    ~specter333\WinCE\Sound FX Player.ahk
    ~specter333\X10\X10CM15a.ahk
    ~sumon\DLPaste.ahk
    ~sumon\GoogleTranslate.ahk
    ~sumon\SpeedSearch.ahk
    ~sumon\apps\iPhone simulation.ahk
    ~sumon\apps\pastej\Pastej.ahk
    ~sumon\apps\redkeys\redkeys.ahk
    ~sumon\apps\zizorz\Zizorz.ahk
    ~sumon\WinCtrl\WinCtrl.ahk
    ~Suny\ListBox\Control_ListBox.ahk
    ~Suny\ListBox\GetChildHWND.ahk
    ~supergrass\dsynchonize\dsynchronizev6.3.ahk
    ~supergrass\dsynchonize\sync.ahk
    ~tank\IE7_Dom.ahk
    ~tank\iWeb.ahk
    ~Tchnclfl\EasyAHK\EasyAHK.ahk
    ~temp01\Array.ahk
    ~temp01\COMo.ahk
    ~TePe\TypoHunter.ahk
    ~TePe\TypoHunterUpperCase.ahk
    ~Thalon\Diverses\BBCodeEditor.ahk
    ~TheGood\lbxhscroll.ahk
    ~TheGood\MCodeGen.ahk
    ~TheGood\MouseMote.ahk
    ~TheGood\NetFileEnum.ahk
    ~TheGood\OnPBMsg.ahk
    ~TheGood\SeeAHKScripts.ahk
    ~TheGood\TillaGoto.ahk
    ~TheGood\VolumeOSD.ahk
    ~TheGood\wpchanger.ahk
    ~TheGood\AHKHID\AHKHID.ahk
    ~TheGood\AHKHID\AHKHID Example 1.ahk
    ~TheGood\AHKHID\AHKHID Example 2.ahk
    ~TheGood\AHKHID\AHKHID Example 3.ahk
    ~TheGood\AHKHID\AHK_L\AHKHID.ahk
    ~TheGood\AHKSock\AHK_L\AHKsock.ahk
    ~TheGood\RemoteAHK\RemoteAHK - Client.ahk
    ~TheGood\RemoteAHK\RemoteAHK - Server.ahk
    ~TheGood\RemoteAHK\temptest.forum.ahk.bak
    ~TheGood\TaskDialog\TaskDialog.ahk
    ~TheGood\TaskDialog\TaskDialog Examples.ahk
    ~TheGood\TaskDialog\AHK_L\TaskDialog.ahk
    ~TheGood\TaskDialog\AHK_L\TaskDialog Examples.ahk
    ~theleo\ALtTabReplacement(Leos Edited version for Xbutton1).ahk
    ~thrawn\FE.ahk
    ~thrawn\libHaru\release\HPDF.ahk
    ~thrawn\libHaru\release\examples\example_ansitxt.ahk
    ~thrawn\libHaru\release\examples\example_text_demo.ahk
    ~thrawn\libHaru\release\examples\example_text_demo2.ahk
    ~thrawn\lua\lua_ahkfunctions.ahk
    ~tic\BRA.ahk
    ~tic\Gdip.ahk
    ~tic\Gdip.Tutorial.1-Draw.Shapes.ahk
    ~tic\Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk
    ~tic\Gdip.Tutorial.3-Create.Gui.From.Image.ahk
    ~tic\Gdip.Tutorial.4-Draw.Circles.ahk
    ~tic\Gdip.Tutorial.5-Create.Bitmap.ahk
    ~tic\Gdip.Tutorial.6-Image.Editing.ahk
    ~tic\Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk
    ~tic\Gdip.Tutorial.8-Write.text.onto.a.gui.ahk
    ~tic\Gdip.Tutorial.9-Create.a.progress.bar.on.standard.gui.ahk
    ~tic\Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk
    ~tic\Gdip.Tutorial.11-Using.BRAs.to.perform.animations.ahk
    ~tic\Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk
    ~tic\voodoo\SAIRA-1.26.ahk
    ~tidbit\Boredom_Counter.ahk
    ~tidbit\COM\Excel.AHK
    ~tidbit\Guess It\guessing game.ahk
    ~tidbit\Light\flashcards.ahk
    ~tidbit\Light\Flashcards_Creator.ahk
    ~tidbit\Mango\Mango.ahk
    ~tidbit\Mus_Musculus\Mus_Musculus.ahk
    ~tidbit\Verts\verts.ahk
    ~tinku99\ahkdll\addfile.ahk
    ~tinku99\ahkdll\testAddFile.ahk
    ~tinku99\multimice\ahkhid.ahk
    ~TNieminen\TO.ahk
    ~tnl\ftfy.ahk
    ~tnl\task_switcher.ahk
    ~tnl\tenkeyless.ahk
    ~toralf\ActiveGoTo\ActiveGoTo.ahk
    ~toralf\AG3\AG3.ahk
    ~toralf\AHK-Syntax-Tidy\Auto-Syntax-Tidy_v12.ahk
    ~toralf\BASS\bass.ahk
    ~toralf\Icon_Viewer\Icon_Viewer_Lite_v2.ahk
    ~toralf\Icon_Viewer\Icon_Viewer_v6.ahk
    ~toralf\ID3TagMediaPlayer\ID3TagMediaPlayer3.ahk
    ~toralf\IniSettingsEditor\Func_IniSettingsEditor_v6.ahk
    ~toralf\IniSettingsEditor\IniFileCreator_v8.ahk
    ~toralf\ScriptletLibrary\Scriptlet_Library_v3.ahk
    ~toralf\Window_Info\AHK_Window_Info_v0.9.ahk
    ~toralf\Window_Info\AHK_Window_Info_v1.7.ahk
    ~Tuncay\AutoKorrekt\DeutscheAutoKorrektur.ahk
    ~twhyman\chmod_calc.ahk
    ~twhyman\HTTPRequest_Sec.ahk
    ~Uberi\Clock.ahk
    ~Uberi\Music Player.ahk
    ~Uberi\Reminders.ahk
    ~Uberi\Throw Windows.ahk
    ~Uberi\Scripts\Code Spell Checker.ahk
    ~Uberi\Scripts\Website Generator.ahk
    ~Veovis\scripts\AHKPad\AHKPad16.ahk
    ~Vifon\Clipboard\Clipboard.ahk
    ~Vifon\Magic Folder\Magic Folder.ahk
    ~Vifon\Source\Decompiler.ahk
    ~Vifon\Translator\Translator.ahk
    ~Voltron43\uTorrent\uTorrentMon.ahk
    ~Wicked\WinSet_Click_Through.ahk
    ~Wicked\WinSet_NoActivate.ahk
    ~Xander\Display.ahk
    ~Xander\PokerPad\AutoReload.ahk
    ~Xander\PokerPad\FullTiltTableRotator.ahk
    ~Xander\PokerPad\Timers.ahk
    ~xx3nvyxx\Log Viewer.ahk
    ~XxAmAxX\Lib\memlib.ahk
    ~XxAmAxX\Lib\memlib V1.1.ahk
    ~yamerkak\Caps.ahk
    ~yamerkak\screenshot.ahk
    ~Yason\ExplorerGrouping.ahk
    ~yook\Lib\LVCustomColors.ahk
    ~Zed_Gecko\SGDIPrint\SGDIPrint.ahk
    ~Zippo\opengl\WINDERS.ahk
    Anchor.ahk
    AnimateWindow.ahk
    BBCode Syntax.ahk
    Cell typing.ahk
    cFTP.ahk
    clip.ahk
    ClipSend.ahk
    cmdret4d.zip
    COM_L.zip
    CommandNames.txt
    Confine.ahk
    ControlClickGet.ahk
    Converter.ahk
    ConvertImage.ahk
    CountOverTime.ahk
    DDE.ahk
    DimScreen.ahk
    EasyWinAPI.exe
    EasyWindowDrag_(KDE).ahk
    Empty Mem.ahk
    FileHelperAndHash.ahk
    FTPv2.zip
    HangMan.ahk
    HookKey.ahk
    Icon Extractor.ahk
    indent.ahk
    IsMenuChecked.ahk
    JoystickMouse.ahk
    JoystickTest.ahk
    KeyboardOnScreen.ahk
    Magnify.ahk
    MD5LIB.DLL
    Menu.ahk
    minidic.ahk
    MinimizeToTrayMenu.ahk
    mp3 gosber.ahk
    msgdebug.ahk
    muosou.ahk
    myhotkey Various scripts and libraries.txt
    nebang.ahk
    No mouse today.ahk
    Numpad000.ahk
    NumpadMouse.ahk
    On-Screen Keyboard.ahk
    OneIcon.ahk
    OSK.ahk
    PDF2TXT.ahk
    Scriptlet_Library_v4.ahk
    Seek_(SearchTheStartMenu).ahk
    SmartOpenFile.ahk
    StrLeft2Sub.ahk
    TabsToSpaces.ahk
    tidy.ahk
    TreeView with Checkboxes.ahk
    VolumeOSD.ahk
    Window Roller.ahk
    WinDump.ahk
    WinLIRC.ahk
    Wordlist.txt
    xplorer.ahk
gamax92_archive
  • 00Notes/majkinetor.txt
    00Notes/Various scripts and libraries.txt
    docs/scripts/KeyboardOnScreen.ahk
    docs/scripts/Numpad000.ahk
    NoCatergory/DDE.ahk
    NoCatergory/FileHelperAndHash.ahk
    NoCatergory/ShellContextMenu.ahk
    ~aaronbewza/Aaron's YouTube Television/Aaron's YouTube Television.ahk
    ~aaronbewza/AaronsSoundclickMusicPlayer/Aaron's Soundclick Music Player.ahk
    ~aaronbewza/AlexJonesRadioShow/The Alex Jones Radio Show.ahk
    ~aaronbewza/SortAnyFolder/Sort Any Folder.ahk
    ~aaronbewza/WesternWallCams/Western Wall Cams - Channels.ahk
    ~aaronbewza/WesternWallCams/Western Wall Cams - Multiple.ahk
    ~AGermanUser/BBCodeWriter/functions.ahk
    ~AGermanUser/CopyPassage/functions.ahk
    ~AGermanUser/CopyPassage/main.ahk
    ~AHKnow/AHK_ScriptWriter_v023.ahk
    ~alesc/ctags.ahk
    ~alextorex/Screen_Off.ahk
    ~AmourSpirit/LogitechDualAction/Logitech Dual Action Template.ahk
    ~AmourSpirit/NPP/NPP_Run_helper.ahk
    ~andkiko/BOT COMPLETO v12.ahk
    ~andkiko/Bot DL Completo.ahk
    ~animeaime/LVDD_Test.ahk
    ~anonymous/API/API_Draw.ahk
    ~anonymous/COM/Wrappers/IEControl.ahk
    ~apocalypse_r/joymouse.ahk
    ~art/AHK/CloudStorage_SugarSync/CloudStorage_SugarSync.ahk
    ~ashwin/ShowOrHideGadgets.ahk
    ~awannaknow/Resources/AHK Almost No BlanK Lines.ahk
    ~awannaknow/Resources/AHK No BlanK Lines.ahk
    ~awannaknow/Resources/AHK No Comments.ahk
    ~ayosh/AhkDllObject.ahk
    ~ayosh/MultiThreading_test.ahk
    ~bekihito/weather/weathertool.ahk
    ~Bentschi/wrapper/glu.ahk
    ~berban/BerbanBBcodeFormatter.ahk
    ~Big_Digger/AVerMedia/averlircA.ahk
    ~Big_Digger/AVerMedia/buttons.ahk
    ~Blackholyman/VariemClick.ahk
    ~bLisTeRinG/countdn.ahk
    ~bLisTeRinG/hider.ahk
    ~bLisTeRinG/hostutil.ahk
    ~bLisTeRinG/keypad.ahk
    ~bLisTeRinG/shutter.ahk
    ~Buckaroo/DVSubMaker.ahk
    ~Canta/WallpaperOptions/WallpaperOptions.ahk
    ~capitalH/TDL New Task Creator upload 2011-12-09.ahk
    ~chaidy/Ahk Source/CStruct/Test.ahk
    ~chrism/My Favorites/MyFavorites.ahk
    ~crazyfirex/AutoHotkey Basic Bug 2.ahk
    ~crazyfirex/AutoHotkey Basic Bug 3.ahk
    ~crazyfirex/AutoHotkey Basic Bug.ahk
    ~cstr/gkey_colorpicker.ahk
    ~dadepp/LBDDLib.ahk
    ~dadepp/LVA.ahk
    ~daonlyfreez/scripting/GetScriptFromAHKForum.ahk
    ~daonlyfreez/scripting/rsmashup.ahk
    ~daonlyfreez/tutorials/3p/Veil/fnkey/FnMapper.ahk
    ~daonlyfreez/tutorials/3p/Veil/fnkey/MultimediaKeys.ahk
    ~daonlyfreez/tutorials/3p/Veil/fnkey/SpecialCharacters.ahk
    ~darossa/darossa.ahk
    ~DataLife/SavePictureAs.ahk
    ~DataLife/XPSnap.ahk
    ~DataLife/MyIpChanger/MyIpChanger.ahk
    ~DeathByNukes/JoystickMouseX360_DBN.ahk
    ~DeathByNukes/libcurl/libcurl.ahk
    ~DeathByNukes/libcurl/libcurl_imageshacktest.ahk
    ~DeathByNukes/libcurl/libcurl_test.ahk
    ~debouncer/KeybounceFilter.ahk
    ~deleyd/xprxmp/autohotkey_expression_examples.ahk
    ~deleyd/xprxmp/WebsiteNav.ahk
    ~Deo/hdr_conv.ahk
    ~Deo/QMsgBox/QMsgBox.ahk
    ~Deo/QMsgBox/QMsgBox_foos.ahk
    ~DerRaphael/DLG_FileOpenSave.ahk
    ~DerRaphael/fileOpenSaveDemo.ahk
    ~DerRaphael/SplashAFlash.AHK
    ~DerRaphael/_b64.ahk
    ~DerRaphael/pictures/tst_icon.ahk
    ~DerRaphael/tmp/demoScript.ahk
    ~desmin88/Source.ahk
    ~drosen/Accelerated Scrolling.ahk
    ~dumpster.monkey/HyperPin/HyperFPLaunch/HyperSettings.ahk
    ~DupaUnit/HitFixer.ahk
    ~dwuttke/Compile/Compile_AHK.ahk
    ~dwuttke/Compile/Compile_AHK_Setup.ahk
    ~dwuttke/SQLite/SQLite.ahk
    ~dylan904/FTPv2.ahk
    ~dylan904/Functions.ahk
    ~dylan904/INI_Editor.ahk
    ~dylan904/LoneIRC(MainBody).ahk
    ~dylan904/LoneIRC.ahk
    ~dylan904/RichEdit.ahk
    ~eagle00789/Functions/printerfunctions.ahk
    ~earlsd/xmore.ahk
    ~easycom/COMmemLeak.ahk
    ~easycom/testcom.ahk
    ~easycom/ws4ahk.ahk
    ~easycom/ws4ahk0-01.ahk
    ~easycom/ws4ahk0-03.ahk
    ~easycom/ws4ahk0-04.ahk
    ~easycom/ws4ahk0-20.ahk
    ~easycom/WS_DEControl.ahk
    ~easycom/WS_DEControl2.ahk
    ~easycom/WS_DEdemo.ahk
    ~easycom/WS_DEDemo2.ahk
    ~easycom/WS_RemoveErrChk.ahk
    ~Eedis/Games/Paper Wars BUGS/Paper Wars.ahk
    ~Eedis/MiscFun/Binary Clock/Binary Clock.ahk
    ~Elesar/Scripts/GUI-LED.ahk
    ~Elesar/Scripts/SwatTools.ahk
    ~Elesar/Scripts/VGLauncher.ahk
    ~emdktl/StopWatch/Stopwatch1.ahk
    ~emdktl/StopWatch/Stopwatch3.ahk
    ~eryksun/bell/bell.ahk
    ~evanlim86/loggy.ahk
    ~evl/AltTab/AltTab.ahk
    ~evl/AutoHotkey Script Restarter/AutoHotkey Script Restarter.ahk
    ~evl/Start_Button_Clock/Start Button Clock.ahk
    ~exiled/steins_gate.ahk
    ~exiled/sticky_calc.ahk
    ~fasto/gdi/gdiplus_outlinedtext.ahk
    ~fbird17/RemoteKCWin7/RemoteKCWin7.ahk
    ~FenrirMushaka/ScrollTrek - v1.0.ahk
    ~FenrirMushaka/ScrollTrek - v1.3.ahk
    ~firefly-mini/FireflyMini.ahk
    ~FirstToyLab/NKInfiltrator.ahk
    ~flashkid/Compile_AHK.ahk
    ~Fluffy654/Tag/Tag 0.1.ahk
    ~foom/ShellNew/AHK Template Script Creator.ahk
    ~Fragman/gdip.ahk
    ~frankie/IE_Input/IE Input Helper.ahk
    ~fredchf/Scripts/Spiegelung/Spiegelung.ahk
    ~fuzz54/Unit-converter20.ahk
    ~gahks/AutoComplete-Example.ahk
    ~gahks/BetterRun!.ahk
    ~gahks/CopyDirStructure.ahk
    ~gahks/dynamic.ahk
    ~gahks/httpQuery.ahk
    ~gahks/hwtimer.ahk
    ~gahks/Listview_G.ahk
    ~gahks/Listview_G_sandbox.ahk
    ~gahks/randomdotorg.ahk
    ~gahks/SnapWindows.ahk
    ~gahks/SrtSynch.ahk
    ~gahks/Sub2Srt_Srt2Sub.ahk
    ~gahks/subframerate.ahk
    ~gahks/uriencode.ahk
    ~gahks/uriEncoder-Decoder.ahk
    ~gahks/WinHideGUI.ahk
    ~garry/20080801_TV_RADIO_YOUTUBE_M3U.ahk
    ~garry/20080803_TV_RADIO_YOUTUBE_M3U.ahk
    ~garry/INDEXDAT_IE_FIREFOX_CACHE02.ahk
    ~garry/LVX_EX_103b.ahk
    ~garry/YOUTUBE05_FORUM.ahk
    ~Getfree/Ahk2Exe/Compiler.ahk
    ~Getfree/Ahk2Exe/IconChanger.ahk
    ~Getfree/Ahk2Exe/ScriptParser.ahk
    ~GlabbichRulz/IpChecker/IPchecker.ahk
    ~gobertech/AutoHotkey.ahk
    ~goyyah/AHK/ControlSPY.ahk
    ~goyyah/CrazyScripts/ScreenCaptureToPNG/SCTP-Ext1.ahk
    ~goyyah/CrazyScripts/SlideShow/SlideShow.ahk
    ~goyyah/samples/1/MyHotkeys.ahk
    ~goyyah/Tips-N-Tricks/AOB/DT_Clock.ahk
    ~goyyah/Tips-N-Tricks/Gradients/BitmapGradient.ahk
    ~goyyah/Tips-N-Tricks/Gradients/gb1.ahk
    ~goyyah/Tips-N-Tricks/Gradients/OSD_VOL_Gradient.ahk
    ~goyyah/Tips-N-Tricks/IEAR/IE_Auto_Refresher.ahk
    ~goyyah/Tips-N-Tricks/Shadowed_Text/ST_Demo.ahk
    ~goyyah/Tips-N-Tricks/TaskBar/ButtonClock_CDT_WINXP.ahk
    ~goyyah/Tips-N-Tricks/TaskBar/Button_Clock_WINXP.ahk
    ~grayatrox/VersionUpdater/ftp.ahk
    ~guest3456/myUTest.ahk
    ~gwarble/Compile/Compile.ahk
    ~gwarble/EitherMouse/v041/EitherMouse.ahk
    ~gwarble/EmailTest/EmailTest.ahk
    ~gwarble/Instance/Instance.ahk
    ~gwarble/Notify/Notify.ahk
    ~gwarble/Notify/NotifyTest4981.ahk
    ~haichen/Kronomium/Kronomium.ahk
    ~haichen/zbox/zbox_pc1.ahk
    ~halweg/fensterpflege.ahk
    ~halweg/IC_Settings.ahk
    ~health901/evetools/T1_rig.ahk
    ~health901/justforfun/QQ.ahk
    ~heresy/Functions/CB.ahk
    ~heresy/Functions/msg.ahk
    ~heresy/Functions/On.ahk
    ~heresy/Functions/SB.ahk
    ~heresy/Functions/Service.ahk
    ~heresy/Scripts/AHKMessenger.ahk
    ~heresy/Scripts/QuickConverter-TrayTipVer.ahk
    ~Herters1893/SmartGUI.ahk
    ~HotKeyIt/HotKeyIt.AHK
    ~HotKeyIt/Struct.ahk
    ~HotKeyIt/TT.ahk
    ~HotKeyIt/_RemoteBuf.ahk
    ~HotKeyIt/_Scintilla.ahk
    ~HotKeyIt/AutoHotFile/AutoHotFile.ahk
    ~HotKeyIt/LibV1/AhkDllThread.ahk
    ~HotKeyIt/LibV1/Yaml.ahk
    ~HotKeyIt/LibV2/AhkDllThread.ahk
    ~HotKeyIt/LibV2/WinApi.ahk
    ~HotKeyIt/LibV2/_MemoryLibrary.ahk
    ~HuBa/AHKDevHelper.ahk
    ~HuBa/ProcessInfo.ahk
    ~iBob35555VR/Library/LV_ShellIcons.ahk
    ~ich_L/CTLCOLORS/CTLCOLORS_sample.ahk
    ~ich_L/InCell/LVEDIT.ahk
    ~ich_L/LV_InCellEdit/v1.1/Class_LV_InCellEdit.ahk
    ~ich_L/SQLiteDB_EN/SQLiteDB_sample.ahk
    ~ih57452/Registry.ahk
    ~infogulch/GameKeymapping.ahk
    ~infogulch/TaskButton.ahk
    ~infogulch/TrayIcon.ahk
    ~infogulch/iTunes/iTunes.ahk
    ~infogulch/Projects/random/AHK_L/random.ahk
    ~infogulch/Projects/SimpleArray/SimpleArray-Current.ahk
    ~irv/forums/specialchar.ahk
    ~jaco0646/Clipboard History.ahk
    ~jaco0646/Correlation Coefficient.ahk
    ~jaco0646/Directory Compare.ahk
    ~jaco0646/Dual Display Toggle.ahk
    ~jaco0646/Dynamic Hotkeys.ahk
    ~jaco0646/ECSD.ahk
    ~jaco0646/IE Cache Delete.ahk
    ~jaco0646/Infection.ahk
    ~jaco0646/Mancala.ahk
    ~jaco0646/MasterMind.ahk
    ~jaco0646/MRU.ahk
    ~jaco0646/Real-Time Search.ahk
    ~jaco0646/Sender.ahk
    ~jaco0646/StopWatch.ahk
    ~jaco0646/Win32Constants.ahk
    ~Jamie/bmpread.ahk
    ~Jamie/is2.ahk
    ~jballi/HotkeyGUI/v0.4/HotkeyGUI.ahk
    ~jballi/MCI/v0.2/MCI.ahk
    ~jballi/PopupXY/v2.0/PopupXY - Examples.ahk
    ~JDN/CONFIG/EDIT_TOOLS.AHK
    ~JDN/CONFIG/MAIN.AHK
    ~Jero3n/Fusion/Fusion_0.2_beta_source.ahk
    ~jethrow/Acc.ahk
    ~jethrow/iWeb_L.ahk
    ~jethrow/CLSID Registry/CLSID Registry Scanner Source.ahk
    ~jethrow/iWebBrowser2 Learner/iWB2 Learner.zip
    ~jethrow/Mouse Recorder/Mouse Recorder.ahk
    ~Johny/AutoScriptPlayer/AutoScriptPlayer.ahk
    ~Johny/AutoScriptPlayer/AutoScriptPlayer0_1.ahk
    ~JonS/cycleWindow/cycleWindow.ahk
    ~JonS/cycleWindow/older versions/CycleWindow1.0/cycleWindow(noThumb).ahk
    ~JonS/cycleWindow/older versions/CycleWindow1.0/cycleWindow.ahk
    ~joten/bunny.ahk
    ~joten/download/quaky_a-nd_001.ahk
    ~jpjazzy/CodeTester.ahk
    ~jpjazzy/FAKE BUG.ahk
    ~jpjazzy/GuiHider.ahk
    ~jpjazzy/SmartBright.ahk
    ~jpjazzy/AutoHotkey Topic Watcher/AutoHotkey Topic Watcher.ahk
    ~jpjazzy/MasterBoard/MasterBoard.ahk
    ~jpjazzy/UniversalController/JoystickScript.AHK
    ~JSLover/Scripts/Includes/Auto-Reload.ahi/Auto-Reload.ahi-Example.ahk
    ~JSLover/Scripts/Includes/Switch-Case/Switch-Case-Example.ahk
    ~JudH/fitatrak.ahk
    ~jyloup/Lastminute/COM.ahk
    ~jyloup/Lastminute/CSV.ahk
    ~jyloup/Lastminute/Lastminute_fast_ENGv.1.0.ahk
    ~k3ph/bass/+examples/videoplayer.ahk
    ~k3ph/bass/trunk/bass.ahk
    ~k3ph/bass/trunk/bassenc.ahk
    ~k3ph/bass/trunk/bassfx.ahk
    ~k3ph/bass/trunk/basswma.ahk
    ~k3ph/bass/_bassmod/bassmod.ahk
    ~k3ph/misc/sball.ahk
    ~k3ph/misc/xmas.ahk
    ~Kerry/func_Update.ahk
    ~kiu/AHkxplorer.ahk
    ~Krogdor/Snake.ahk
    ~labouche10/MyCalculator.ahk
    ~ladiko/AVNotifyDisabler/AVNotifyDisabler.ahk
    ~ladiko/Compile_AHK/Compile_AHK.ahk
    ~ladiko/Compile_AHK/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.06/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.06/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.08/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.08/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.09/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.11/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.12/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.13/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.14/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.18/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.18/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.19/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.19/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.20/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.21/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.22/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.22/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.24/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.27/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.27/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.28/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.34/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.36/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.36/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.37/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.38/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.39/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.40/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.41/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.43/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.44/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.45/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.45/Compile_AHK_Setup.ahk
    ~ladiko/Compile_AHK/0.9.0.46/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.47/Compile_AHK.ahk
    ~ladiko/Compile_AHK/0.9.0.48/Compile_AHK_Setup.ahk
    ~ladiko/WIHU_Sorter/WIHU_Sorter.ahk
    ~Laszlo/calc.ahk
    ~Laszlo/calc350/calc.ahk
    ~Laszlo/MoonClock/moonclock.ahk
    ~Learning one/Mouse gestures module/MouseGestures.ahk
    ~Learning one/Radial Menu/Radial menu v1.ahk
    ~Learning one/Radial Menu/Radial menu v2.ahk
    ~Learning one/Radial Menu/Simple radial menu.ahk
    ~Learning one/ScreenClip2Win/ScreenClip2Win.ahk
    ~Leef_me/ScreenCapture.ahk
    ~Leef_me/zoom_FreePCB2.ahk
    ~Lexikos/DBGP.ahk
    ~Lexikos/dbgp_console.ahk
    ~Lexikos/dbgp_test.ahk
    ~Lexikos/ScrollMomentum.ahk
    ~Lexikos/TbMenu-proto.ahk
    ~Lexikos/Update.ahk
    ~Lexikos/XInput.ahk
    ~Lexikos/Gestures/Gestures_User.ahk
    ~Lexikos/MI/MI.ahk
    ~linpinger/bin/lib/FreeImage.ahk
    ~linpinger/bin/lib/IE.ahk
    ~linpinger/bin/lib/IEL.ahk
    ~linpinger/bin/mobi/QiDianTxt2Mobi.ahk
    ~linpinger/bin/pdf/AnsiTxt2PDF.ahk
    ~linpinger/bin/pdf/AnsiTxt2PDF_CMD.ahk
    ~linpinger/bin/pdf/FoxPDF_DllTest.ahk
    ~linpinger/bin/tmp/AHK_Process_Manager.ahk
    ~linpinger/bin/tmp/nod32_Make_offline.ahk
    ~linpinger/bin/tmp/PeekPassword.ahk
    ~LiteralKa/saovq.ahk
    ~luetkmeyer/TVGuideBR.ahk
    ~luffyzanderson/Chess Tournament Software/No Stress Chess Tournament Software v5.3.ahk
    ~mab/scripts/DropboxControl.ahk
    ~maestrith/sw.ahk
    ~maestrith/Script Writer/Script Writer.ahk
    ~magestickown/scripts/RapidFire.ahk
    ~majkinetor/JumpToFunction.ahk
    ~majkinetor/Align/Align.ahk
    ~majkinetor/Align/Align.html
    ~majkinetor/Align/_Test.ahk
    ~majkinetor/Align/_TestLayouts.ahk
    ~majkinetor/Align/_TestMarker.ahk
    ~majkinetor/Align/inc/Attach.ahk
    ~majkinetor/Align/inc/Panel.ahk
    ~majkinetor/Align/inc/Splitter.ahk
    ~majkinetor/Align/inc/Win.ahk
    ~majkinetor/App/$.ahk
    ~majkinetor/App/New Project.ahk
    ~majkinetor/Appbar/AppBar.ahk
    ~majkinetor/Appbar/AppBar.html
    ~majkinetor/Appbar/taskbar.png
    ~majkinetor/Appbar/_DebugView.ahk
    ~majkinetor/Appbar/_Taskbar.ahk
    ~majkinetor/Appbar/_TestMultiple.ahk
    ~majkinetor/Appbar/Taskbar/COM.ahk
    ~majkinetor/Appbar/Taskbar/IL.ahk
    ~majkinetor/Appbar/Taskbar/Rebar.ahk
    ~majkinetor/Appbar/Taskbar/Shell.ahk
    ~majkinetor/Appbar/Taskbar/ShellContextMenu.ahk
    ~majkinetor/Appbar/Taskbar/ShowMenu.ahk
    ~majkinetor/Appbar/Taskbar/Taskbar.ahk
    ~majkinetor/Appbar/Taskbar/Toolbar.ahk
    ~majkinetor/Appbar/Taskbar/Tray.ahk
    ~majkinetor/Appbar/Taskbar/Win.ahk
    ~majkinetor/Appbar/Taskbar/_.ahk
    ~majkinetor/Attach/Attach.ahk
    ~majkinetor/Attach/Attach.html
    ~majkinetor/Attach/_AnchorSample.ahk
    ~majkinetor/Attach/_Test.ahk
    ~majkinetor/Attach/_TestP.ahk
    ~majkinetor/Attach/inc/pic.bmp
    ~majkinetor/Attach/inc/Win.ahk
    ~majkinetor/CColor/CColor.ahk
    ~majkinetor/CColor/CColor.html
    ~majkinetor/CColor/_Test.ahk
    ~majkinetor/CColor/inc/Attach.ahk
    ~majkinetor/ComboX/ComboX.ahk
    ~majkinetor/ComboX/ComboX.html
    ~majkinetor/ComboX/_Test.ahk
    ~majkinetor/ComboX/_Test2.ahk
    ~majkinetor/ComboX/images/ComboX.png
    ~majkinetor/ComboX/inc/Attach.ahk
    ~majkinetor/ComboX/inc/Win.ahk
    ~majkinetor/Dlg/Dlg.ahk
    ~majkinetor/Dlg/Dlg.html
    ~majkinetor/Dlg/_Test.ahk
    ~majkinetor/Dlg/images/Dlg_Color.png
    ~majkinetor/Dlg/images/Dlg_Find.png
    ~majkinetor/Dlg/images/Dlg_Font.png
    ~majkinetor/Dlg/images/Dlg_Icon.png
    ~majkinetor/Dlg/images/Dlg_Open.png
    ~majkinetor/Dlg/images/Dlg_Replace.png
    ~majkinetor/Dlg/images/Dlg_Save.png
    ~majkinetor/Dock/Dock.ahk
    ~majkinetor/Dock/Dock.html
    ~majkinetor/Dock/rulerh.jpg
    ~majkinetor/Dock/rulerv.jpg
    ~majkinetor/Dock/_ Main Test.ahk
    ~majkinetor/Dock/_Bmcclure.ahk
    ~majkinetor/Dock/_Customizable Left Side.ahk
    ~majkinetor/Dock/_Mini Win.ahk
    ~majkinetor/Dock/_Roll.ahk
    ~majkinetor/Dock/_Ruller.ahk
    ~majkinetor/Dock/_TitleButtons and 2 nontop clients.ahk
    ~majkinetor/Dock/_Two toolbars.ahk
    ~majkinetor/DockA/DockA.ahk
    ~majkinetor/DockA/DockA.html
    ~majkinetor/DockA/_Test.ahk
    ~majkinetor/Font/Font.ahk
    ~majkinetor/Font/Font.html
    ~majkinetor/Font/_Test.ahk
    ~majkinetor/Form/Demo.ahk
    ~majkinetor/Form/mkdoc.cmd
    ~majkinetor/Form/mkzip.cmd
    ~majkinetor/Form/images/Dlg_Color.png
    ~majkinetor/Form/images/Dlg_Find.png
    ~majkinetor/Form/images/Dlg_Font.png
    ~majkinetor/Form/images/Dlg_Icon.png
    ~majkinetor/Form/images/Dlg_Open.png
    ~majkinetor/Form/images/Dlg_Replace.png
    ~majkinetor/Form/images/Dlg_Save.png
    ~majkinetor/Form/images/HiEdit.png
    ~majkinetor/Form/images/RaGrid.png
    ~majkinetor/Form/images/Rebar.png
    ~majkinetor/Form/images/Splitter.png
    ~majkinetor/Form/images/SpreadSheet.png
    ~majkinetor/Form/images/Toolbar.png
    ~majkinetor/Form/images/Toolbar_Catalogs.png
    ~majkinetor/Form/images/Toolbar_Customize.png
    ~majkinetor/Form/inc/Align.ahk
    ~majkinetor/Form/inc/Attach.ahk
    ~majkinetor/Form/inc/CColor.ahk
    ~majkinetor/Form/inc/CMenu.ahk
    ~majkinetor/Form/inc/Cursor.ahk
    ~majkinetor/Form/inc/Dlg.ahk
    ~majkinetor/Form/inc/DockA.ahk
    ~majkinetor/Form/inc/Font.ahk
    ~majkinetor/Form/inc/Form.ahk
    ~majkinetor/Form/inc/HiEdit.ahk
    ~majkinetor/Form/inc/HiEdit.dll
    ~majkinetor/Form/inc/HLink.ahk
    ~majkinetor/Form/inc/ILButton.ahk
    ~majkinetor/Form/inc/KeyWords.hes
    ~majkinetor/Form/inc/Panel.ahk
    ~majkinetor/Form/inc/Property.ahk
    ~majkinetor/Form/inc/Qhtm.ahk
    ~majkinetor/Form/inc/Qhtm.dll
    ~majkinetor/Form/inc/RaGrid.ahk
    ~majkinetor/Form/inc/RAGrid.dll
    ~majkinetor/Form/inc/Rebar.ahk
    ~majkinetor/Form/inc/RichEdit.ahk
    ~majkinetor/Form/inc/ScrollBar.ahk
    ~majkinetor/Form/inc/Scroller.ahk
    ~majkinetor/Form/inc/ShowMenu.ahk
    ~majkinetor/Form/inc/Splitter.ahk
    ~majkinetor/Form/inc/SpreadSheet.ahk
    ~majkinetor/Form/inc/SprSht.dll
    ~majkinetor/Form/inc/Toolbar.ahk
    ~majkinetor/Form/inc/Tooltip.ahk
    ~majkinetor/Form/inc/Win.ahk
    ~majkinetor/Form/inc/_.ahk
    ~majkinetor/Form/inc/_Forms.ahk
    ~majkinetor/Form/tests/Controls.ahk
    ~majkinetor/Form/tests/StressControls.ahk
    ~majkinetor/Form/tests/StressControlsCustom.ahk
    ~majkinetor/Form/widgets/Writer.ahk
    ~majkinetor/Form/widgets/_Test.ahk
    ~majkinetor/HiEdit/HiEdit.ahk
    ~majkinetor/HiEdit/HiEdit.dll
    ~majkinetor/HiEdit/HiEdit.html
    ~majkinetor/HiEdit/HiEdit.inc
    ~majkinetor/HiEdit/KeyWords.hes
    ~majkinetor/HiEdit/_Test.ahk
    ~majkinetor/HiEdit/images/HiEdit.png
    ~majkinetor/HiEdit/inc/Attach.ahk
    ~majkinetor/HiEdit/inc/Dlg.ahk
    ~majkinetor/HLink/HLink.ahk
    ~majkinetor/HLink/HLink.html
    ~majkinetor/HLink/_Test.ahk
    ~majkinetor/IconEx/IconEx.ahk
    ~majkinetor/IconEx/setings.ini
    ~majkinetor/IconEx/_Test.ahk
    ~majkinetor/IconEx/_Test2.ahk
    ~majkinetor/IconEx/images/iconex.png
    ~majkinetor/Ini/Ini.ahk
    ~majkinetor/Ini/Ini01.ahk
    ~majkinetor/IPC/IPC.ahk
    ~majkinetor/IPC/IPC.cs
    ~majkinetor/IPC/IPC.html
    ~majkinetor/IPC/AHK/Script1.ahk
    ~majkinetor/IPC/AHK/Script2.ahk
    ~majkinetor/IPC/DotNet/Csharp.ahk
    ~majkinetor/IPC/DotNet/IPC_Test 32b.exe
    ~majkinetor/IPC/DotNet/IPC_Test 64b.exe
    ~majkinetor/IPC/IPC (copydata)/WindowsApplication4.suo
    ~majkinetor/IPC/IPC (port)/Client.ahk
    ~majkinetor/IPC/IPC (port)/Host.exe
    ~majkinetor/IPC/IPC (port)/WindowsApplication4.suo
    ~majkinetor/Logger/Logger.html
    ~majkinetor/Logger/Logger.png
    ~majkinetor/Logger/qhtm.DLL
    ~majkinetor/Logger/_TestLogger.ahk
    ~majkinetor/Logger/icons/error.png
    ~majkinetor/Logger/icons/error2.png
    ~majkinetor/Logger/icons/info.png
    ~majkinetor/Logger/icons/info2.png
    ~majkinetor/Logger/icons/warning.png
    ~majkinetor/Logger/icons/warning2.png
    ~majkinetor/Logger/inc/Logger.ahk
    ~majkinetor/Logger/inc/Logger_Config.ahk
    ~majkinetor/Logger/inc/Qhtm.ahk
    ~majkinetor/MRS/TCwdx.ahk
    ~majkinetor/MsgBoxx/MsgBoxx.ahk
    ~majkinetor/MsgBoxx/ShowHtmlDialog.ahk
    ~majkinetor/Parse/1.txt
    ~majkinetor/Parse/Parse.ahk
    ~majkinetor/Parse/Parse.html
    ~majkinetor/Parse/test/ParseTest.ahk
    ~majkinetor/Parse/test/UTest.ahk
    ~majkinetor/Property/Property.ahk
    ~majkinetor/Property/Property.html
    ~majkinetor/Property/SpreadSheet.ahk
    ~majkinetor/Property/SprSht.dll
    ~majkinetor/Property/_Test.ahk
    ~majkinetor/QHTM/Qhtm.ahk
    ~majkinetor/QHTM/qhtm.DLL
    ~majkinetor/QHTM/_Demo.ahk
    ~majkinetor/QHTM/DLLs/qhtm.DLL
    ~majkinetor/QHTM/DLLs/qhtm.h
    ~majkinetor/QHTM/DLLs/qhtm64.DLL
    ~majkinetor/QHTM/DLLs/qhtm64U.DLL
    ~majkinetor/QHTM/DLLs/qhtmLight.dll
    ~majkinetor/QHTM/DLLs/qhtmU.DLL
    ~majkinetor/QHTM/Res/a.gif
    ~majkinetor/QHTM/Res/alphaanimation.mng
    ~majkinetor/QHTM/Res/alphaball.png
    ~majkinetor/QHTM/Res/alphaedge.png
    ~majkinetor/QHTM/Res/animation.mng
    ~majkinetor/QHTM/Res/background.bmp
    ~majkinetor/QHTM/Res/circle.bmp
    ~majkinetor/QHTM/Res/clickme.mng
    ~majkinetor/QHTM/Res/monkey.jpg
    ~majkinetor/QHTM/Res/qhtm.png
    ~majkinetor/QHTM/Res/qhtm_demo_logo.png
    ~majkinetor/RaGrid/RaGrid.ahk
    ~majkinetor/RaGrid/RAGrid.dll
    ~majkinetor/RaGrid/RaGrid.html
    ~majkinetor/RaGrid/RAGrid.Inc
    ~majkinetor/RaGrid/_Test.ahk
    ~majkinetor/RaGrid/images/RaGrid.png
    ~majkinetor/RaGrid/inc/Attach.ahk
    ~majkinetor/RaGrid/inc/IL.ahk
    ~majkinetor/RaGrid/samples/custctl.zip
    ~majkinetor/Rebar/bg.bmp
    ~majkinetor/Rebar/Rebar.ahk
    ~majkinetor/Rebar/Toolbar.ahk
    ~majkinetor/Rebar/_Splitter.ahk
    ~majkinetor/Rebar/_Test.ahk
    ~majkinetor/Remote Tree View/RTV.ahk
    ~majkinetor/RemoteBuffer/RemoteBuf.ahk
    ~majkinetor/RichEdit/colors.rtf
    ~majkinetor/RichEdit/Document.rtf
    ~majkinetor/RichEdit/RichEdit.ahk
    ~majkinetor/RichEdit/Todo.ahk
    ~majkinetor/RichEdit/_API Demo.ahk
    ~majkinetor/RichEdit/_Test.ahk
    ~majkinetor/Run/Run.ahk
    ~majkinetor/Run/_Test.ahk
    ~majkinetor/Scheduler/output.txt
    ~majkinetor/Scheduler/Scheduler.ahk
    ~majkinetor/Scheduler/_Test.ahk
    ~majkinetor/ScriptMerge/ScriptMerge09.ahk
    ~majkinetor/ScriptMerge/ScriptMerge091.ahk
    ~majkinetor/ScriptProcessor/ScriptProcesor.ahk
    ~majkinetor/ScrollBar/ScrollBar.ahk
    ~majkinetor/ScrollBar/_Test.ahk
    ~majkinetor/Scroller/Scroller.ahk
    ~majkinetor/Shell/AppBar.ahk
    ~majkinetor/Shell/COM.ahk
    ~majkinetor/Shell/IL.ahk
    ~majkinetor/Shell/Rebar.ahk
    ~majkinetor/Shell/Shell.ahk
    ~majkinetor/Shell/ShellContextMenu.ahk
    ~majkinetor/Shell/shellnavigate.ahk
    ~majkinetor/Shell/ShowMenu.ahk
    ~majkinetor/Shell/Taskbar.ahk
    ~majkinetor/Shell/Toolbar.ahk
    ~majkinetor/Shell/TopLevel.ahk
    ~majkinetor/Shell/Tray.ahk
    ~majkinetor/Shell/Win.ahk
    ~majkinetor/Shell/_.ahk
    ~majkinetor/Shell/_Taskbar.ahk
    ~majkinetor/Shell/_Test.ahk
    ~majkinetor/ShowMenu/ShowMenu.ahk
    ~majkinetor/ShowMenu/_Test.ahk
    ~majkinetor/ShowTooltip/ShowTooltip.ahk
    ~majkinetor/ShowTooltip/_Test.ahk
    ~majkinetor/Splitter/Splitter.ahk
    ~majkinetor/Splitter/_Horizontal.ahk
    ~majkinetor/Splitter/_InPanel.ahk
    ~majkinetor/Splitter/_Multiple.ahk
    ~majkinetor/Splitter/_Vertical.ahk
    ~majkinetor/SpreadSheet/SpreadSheet.ahk
    ~majkinetor/SpreadSheet/SprSht.dll
    ~majkinetor/SpreadSheet/Test1.spr
    ~majkinetor/SpreadSheet/Test2.spr
    ~majkinetor/SpreadSheet/_Test.ahk
    ~majkinetor/Taskbar/Taskbar.ahk
    ~majkinetor/Taskbar/_Test.ahk
    ~majkinetor/Toolbar/Toolbar.ahk
    ~majkinetor/Toolbar/_Corners.ahk
    ~majkinetor/Toolbar/_Customize.ahk
    ~majkinetor/Toolbar/_Menu.ahk
    ~majkinetor/Toolbar/_Multiple.ahk
    ~majkinetor/Toolbar/_Quick Launch.ahk
    ~majkinetor/Toolbar/_Simple.ahk
    ~majkinetor/Toolbar/_Test.ahk
    ~majkinetor/Tray/Tray.ahk
    ~majkinetor/Tray/_Rotate.ahk
    ~majkinetor/Tray/_Test.ahk
    ~majkinetor/UTest/UTest.ahk
    ~majkinetor/UTest/_Test.ahk
    ~majkinetor/Win/Win.ahk
    ~majkinetor/Win/_Recall.ahk
    ~majkinetor/Win/_RecallShellHook.ahk
    ~majkinetor/_/_.ahk
    ~Maniac/TypingAid/TypingAid v2.09.ahk
    ~Maniac/TypingAid/TypingAid v2.13 pre-alpha for 2.14.ahk
    ~MasterFocus/VarHistory.ahk
    ~MasterFocus/AHK/Func/WaitPixelColor/Example.ahk
    ~MasterFocus/AHK/Func/WaitPixelColor/WaitPixelColor.ahk
    ~MasterFocus/AHK/Lib/TypeFunctions/TypeFunctions.ahk
    ~MasterFocus/AHK/Temp/WinTrigger.ahk
    ~maupa123/MemLib.ahk
    ~Micahs/activegoto4SciTE.ahk
    ~Micha/HIDsupport/RemoteControlMultiWnd.ahk
    ~Micha/mp3tag/AHK-MP3.ahk
    ~Micha/resize/ResizeCtrlDemo.ahk
    ~Micha/X10/X10RemoteControl.ahk
    ~Michael@oz/DMSK/DMSK.ahk
    ~Mio/Attributizer/0.60/Attributizer v0.60.ahk
    ~mojo/Anchor.ahk
    ~mojo/httpQuery.ahk
    ~Morpheus/Robert's INI library Basic.ahk
    ~mwep/OpenThunder/OpenThunder.ahk
    ~mwep/Zwubi/Zwubi.ahk
    ~nelliot1/ahk/iTunesControl.ahk
    ~netfun81/nircmdgui.ahk
    ~NiJo/ScreenShooter.ahk
    ~noob_1999/iswitchwhover.ahk
    ~nothing/MouseAndKeyRecorder/MouseKeyRecorderv1.00.ahk
    ~nothing/MouseAndKeyRecorder/XMR2.0.1.ahk
    ~nothing/MouseAndKeyRecorder/XMR2.0.2.ahk
    ~nothing/X-GuiCreator/X-GUI Creator v0.4.4b.ahk
    ~noutters/SpeedReader.ahk
    ~noutters/UPX_GUI.ahk
    ~Obi-Wahn/Securityvision.ch/Tutorials/Ref/ref.ahk
    ~Obi-Wahn/Securityvision.ch/Tutorials/Ref/ref_test.ahk
    ~Obi-Wahn/stuff/kinderwaechter.ahk
    ~OceanMachine/ConsoleApp/ConsoleApp.ahk
    ~olegbl/AHKA.ahk
    ~olegbl/AHKArray523.ahk
    ~olegbl/AHKArray538.ahk
    ~olegbl/AHKArray539.ahk
    ~olegbl/AHKArray541.ahk
    ~olegbl/AHKArray542.ahk
    ~ophthalmos/iTHotk13.ahk
    ~peterm/My_Anagram-V6s.ahk
    ~PhiLho/AnimatedSplashScreens.ahk
    ~PhiLho/BinaryEncodingDecoding.ahk
    ~PhiLho/BinReadWrite.ahk
    ~PhiLho/Control_AniGif.ahk
    ~PhiLho/Control_AVI.ahk
    ~PhiLho/DllCallStruct.ahk
    ~PhiLho/DragControl.ahk
    ~PhiLho/GDIplusWrapper.ahk
    ~PhiLho/ListAHKFunctions.ahk
    ~PhiLho/Pebwa.ahk
    ~PhiLho/ReadWriteUnicodeText.ahk
    ~PhiLho/ShowScriptImage.ahk
    ~PhiLho/SyntaxFunctions.ahk
    ~PhiLho/TestBinReadWrite.ahk
    ~PhiLho/TestGDIplus.ahk
    ~PhiLho/TestPCRE_DLL.ahk
    ~PhiLho/WindowsMessages.ahk
    ~PhiLho/__Permanent.ahk
    ~POINTS/APM.ahk
    ~POINTS/Ctrl-C.ahk
    ~POINTS/war3.ahk
    ~POINTS/warkeys_test.ahk
    ~ProfessorY/Scripts/RealFanfictionStoryToHardDriveSaver.ahk
    ~psjw12/novellmessenger/0.7/Novell Messenger 0.7.ahk
    ~psjw12/novellmessenger/0.8/Novell Messenger 0.8.ahk
    ~psjw12/novellmessenger/0.8/Toaster.ahk
    ~psjw12/psexecgui/psexec2.ahk
    ~psjw12/shutdownstopper/2.0/files/Shutdown Stopper.ahk
    ~Pulover/MacroCreator.ahk
    ~r0k/script/clip_palette/Clip_Palette.ahk
    ~r0k/script/CMsgBox/fn_CMsgBox.ahk
    ~R3gX/ControlFromClipboard/Sender.ahk
    ~R3gX/Lib/EmptyMem.ahk
    ~R3gX/Lib/GetFileEncoding.ahk
    ~Ragnar/2/docs/scripts/ContextSensitiveHelp.ahk
    ~Ragnar/2/docs/scripts/JoystickMouse.ahk
    ~rajat/scripts/sgui.ahk
    ~Rapte_Of_Suzaku/Container.ahk
    ~Rapte_Of_Suzaku/FC.ahk
    ~Rapte_Of_Suzaku/Prefs.ahk
    ~Rapte_Of_Suzaku/ShellFileOperation.ahk
    ~Rapte_Of_Suzaku/FileContainer/FC.ahk
    ~Rapte_Of_Suzaku/FileContainer/Path.ahk
    ~RaptorOne/Aero_Libary/Aero_Lib.ahk
    ~redyrthgin/KeyboardLedSoundMeter.ahk
    ~rexx/FolderMenu/files/FolderMenu.ahk
    ~rich/FV_Downloader/FV_Downloader.ahk
    ~Rigel/ObjectArray/ObjectArrayTests.ahk
    ~Rseding91/REG to VBS/REG to VBS.ahk
    ~scottmattes/scripts/test imagesearch.ahk
    ~scottmattes/scripts/TotalWindow.ahk
    ~Scratch/jumpman.ahk
    ~Sean/Lib/Acc.ahk
    ~Sean/Lib/COM.ahk
    ~Sean/Lib/COM_L.ahk
    ~Sean/Lib/File.ahk
    ~Sean/Scripts/BalloonTip.ahk
    ~Sean/Scripts/CoHelper.ahk
    ~Sean/Scripts/Dictionary.ahk
    ~Sean/Scripts/ScreenCapture.ahk
    ~Sean/Scripts/StdoutToVar.ahk
    ~Sean/Scripts/TaskButton.ahk
    ~Sean/Scripts/TrayIcon.ahk
    ~Sean/Scripts/WinTraymin.ahk
    ~shajul/bin/MyHotKeys.ahk
    ~shajul/HotManager/HotManager.ahk
    ~shajul/Projects/RunAsAdmin.ahk
    ~shinywong/MagicTune/MagicTune.ahk
    ~SifJar/saveas.ahk
    ~sinkfaze/04222012_iWeb_L.ahk
    ~sinkfaze/iWebBrowser2 Learner Build ID2.0.ahk
    ~sinkfaze/iWebLearner2 Script Pad 0.2.ahk
    ~sinkfaze/iWeb_L.ahk
    ~Skan/ShortCode/HDD-Indicator_TNA.ahk
    ~Skan/wrapper/Process/Affinity.ahk
    ~SL55 AMG/JumpList.ahk
    ~Solar/ListviewLib_1.01.ahk
    ~sonchaz/MovieFinder/MovieFinder.ahk
    ~sosaited/iMenu/iMENU.ahk
    ~specter333/EasyAuto/Modules/Cmd Mouse Moves.ahk
    ~specter333/HID/Other HID info V1.1.ahk
    ~specter333/HID/ShuttlePro Input Monitor.ahk
    ~specter333/HID/SP _vlc_commands.ahk
    ~specter333/lpt/Eng1.ahk
    ~specter333/lpt/LPT Control.ahk
    ~specter333/lpt/LPT Monitor and Sequencer.ahk
    ~specter333/lpt/LPT Monitor.ahk
    ~specter333/lpt/LPTInOut.ahk
    ~specter333/MPC/App Media Player Classic HC.ahk
    ~specter333/MPC/MediaPlayerClassicHC.ahk
    ~specter333/MPC/MPCHTTP.ahk
    ~specter333/No Image Gui/Inc Commands.ahk
    ~specter333/No Image Gui/Inc P1 Buttons.ahk
    ~specter333/No Image Gui/Inc P2 Buttons.ahk
    ~specter333/Sound_FX_Player/RSFXP.ahk
    ~specter333/System Volume/LCARS Volume Control.ahk
    ~specter333/TransSplashText/Trans Splash Function Test.ahk
    ~specter333/TransSplashText/TransSplashText.ahk
    ~specter333/USB-UIRT/USBUIRT.ahk
    ~specter333/VLC/VLCHTTP.ahk
    ~specter333/WinCE/Battcheck.ahk
    ~specter333/WinCE/Get screen size.ahk
    ~specter333/WinCE/LaunchButtons.ahk
    ~specter333/WinCE/RCDTimer.ahk
    ~specter333/WinCE/Sound FX Player.ahk
    ~specter333/X10/X10CM15a.ahk
    ~sumon/GoogleTranslate.ahk
    ~sumon/apps/iPhone simulation.ahk
    ~sumon/apps/pastej/Pastej.ahk
    ~sumon/apps/zizorz/Zizorz.ahk
    ~Suny/ListBox/Control_ListBox.ahk
    ~Suny/ListBox/GetChildHWND.ahk
    ~supergrass/dsynchonize/dsynchronizev6.3.ahk
    ~supergrass/dsynchonize/sync.ahk
    ~tank/IE7_Dom.ahk
    ~tank/iWeb.ahk
    ~Tchnclfl/EasyAHK/EasyAHK.ahk
    ~temp01/Array.ahk
    ~temp01/COMo.ahk
    ~TePe/TypoHunter.ahk
    ~TePe/TypoHunterUpperCase.ahk
    ~Thalon/Diverses/BBCodeEditor.ahk
    ~TheGood/lbxhscroll.ahk
    ~TheGood/MCodeGen.ahk
    ~TheGood/MouseMote.ahk
    ~TheGood/NetFileEnum.ahk
    ~TheGood/OnPBMsg.ahk
    ~TheGood/SeeAHKScripts.ahk
    ~TheGood/TillaGoto.ahk
    ~TheGood/VolumeOSD.ahk
    ~TheGood/wpchanger.ahk
    ~TheGood/AHKHID/AHKHID Example 1.ahk
    ~TheGood/AHKHID/AHKHID Example 2.ahk
    ~TheGood/AHKHID/AHKHID Example 3.ahk
    ~TheGood/AHKHID/AHKHID.ahk
    ~TheGood/AHKHID/AHK_L/AHKHID.ahk
    ~TheGood/AHKSock/AHK_L/AHKsock.ahk
    ~TheGood/RemoteAHK/RemoteAHK - Client.ahk
    ~TheGood/RemoteAHK/RemoteAHK - Server.ahk
    ~TheGood/TaskDialog/TaskDialog Examples.ahk
    ~TheGood/TaskDialog/TaskDialog.ahk
    ~TheGood/TaskDialog/AHK_L/TaskDialog Examples.ahk
    ~TheGood/TaskDialog/AHK_L/TaskDialog.ahk
    ~theleo/ALtTabReplacement(Leos Edited version for Xbutton1).ahk
    ~thrawn/FE.ahk
    ~thrawn/libHaru/release/HPDF.ahk
    ~thrawn/libHaru/release/examples/example_ansitxt.ahk
    ~thrawn/libHaru/release/examples/example_text_demo.ahk
    ~thrawn/libHaru/release/examples/example_text_demo2.ahk
    ~thrawn/lua/lua_ahkfunctions.ahk
    ~tic/Gdip.ahk
    ~tic/Gdip.Tutorial.1-Draw.Shapes.ahk
    ~tic/Gdip.Tutorial.10-Rotate.Flip.or.Mirror.an.image.ahk
    ~tic/Gdip.Tutorial.11-Using.BRAs.to.perform.animations.ahk
    ~tic/Gdip.Tutorial.12-Pixelate.a.bitmap.using.machine.code.ahk
    ~tic/Gdip.Tutorial.2-Draw.Outlined.Shapes.ahk
    ~tic/Gdip.Tutorial.3-Create.Gui.From.Image.ahk
    ~tic/Gdip.Tutorial.4-Draw.Circles.ahk
    ~tic/Gdip.Tutorial.7-Draw.draggable.rounded.rectangle.ahk
    ~tic/Gdip.Tutorial.8-Write.text.onto.a.gui.ahk
    ~tic/voodoo/SAIRA-1.26.ahk
    ~tidbit/Boredom_Counter.ahk
    ~tidbit/COM/Excel.AHK
    ~tidbit/Guess It/guessing game.ahk
    ~tidbit/Mango/Mango.ahk
    ~tidbit/Mus_Musculus/Mus_Musculus.ahk
    ~tidbit/Verts/verts.ahk
    ~tinku99/ahkdll/addfile.ahk
    ~tinku99/ahkdll/testAddFile.ahk
    ~tinku99/multimice/ahkhid.ahk
    ~TNieminen/TO.ahk
    ~tnl/ftfy.ahk
    ~tnl/task_switcher.ahk
    ~tnl/tenkeyless.ahk
    ~toralf/ActiveGoTo/ActiveGoTo.ahk
    ~toralf/AG3/AG3.ahk
    ~toralf/AHK-Syntax-Tidy/Auto-Syntax-Tidy_v12.ahk
    ~toralf/BASS/bass.ahk
    ~toralf/Icon_Viewer/Icon_Viewer_Lite_v2.ahk
    ~toralf/Icon_Viewer/Icon_Viewer_v6.ahk
    ~toralf/ID3TagMediaPlayer/ID3TagMediaPlayer3.ahk
    ~toralf/IniSettingsEditor/Func_IniSettingsEditor_v6.ahk
    ~toralf/IniSettingsEditor/IniFileCreator_v8.ahk
    ~toralf/ScriptletLibrary/Scriptlet_Library_v3.ahk
    ~toralf/Window_Info/AHK_Window_Info_v0.9.ahk
    ~toralf/Window_Info/AHK_Window_Info_v1.7.ahk
    ~Tuncay/AutoKorrekt/DeutscheAutoKorrektur.ahk
    ~twhyman/chmod_calc.ahk
    ~twhyman/HTTPRequest_Sec.ahk
    ~Uberi/Music Player.ahk
    ~Uberi/Scripts/Code Spell Checker.ahk
    ~Uberi/Scripts/Website Generator.ahk
    ~Veovis/scripts/AHKPad/AHKPad16.ahk
    ~Vifon/Clipboard/Clipboard.ahk
    ~Vifon/Magic Folder/Magic Folder.ahk
    ~Vifon/Source/Decompiler.ahk
    ~Vifon/Translator/Translator.ahk
    ~Voltron43/uTorrent/uTorrentMon.ahk
    ~Wicked/WinSet_Click_Through.ahk
    ~Wicked/WinSet_NoActivate.ahk
    ~Xander/Display.ahk
    ~Xander/PokerPad/AutoReload.ahk
    ~Xander/PokerPad/FullTiltTableRotator.ahk
    ~Xander/PokerPad/Timers.ahk
    ~xx3nvyxx/Log Viewer.ahk
    ~XxAmAxX/Lib/memlib V1.1.ahk
    ~XxAmAxX/Lib/memlib.ahk
    ~yamerkak/Caps.ahk
    ~yamerkak/screenshot.ahk
    ~Yason/ExplorerGrouping.ahk
    ~yook/Lib/LVCustomColors.ahk
    ~Zed_Gecko/SGDIPrint/SGDIPrint.ahk
    ~Zippo/opengl/WINDERS.ahk
swagfag
Posts: 6222
Joined: 11 Jan 2017, 17:59

Re: [Archive] Collection of lost AHK Scripts & Libraries

23 Oct 2018, 11:26

Redeemed548 wrote:
19 Feb 2018, 17:01
Hello All,

Does anyone have NoobSawce's Extended Image Search Library files? I'm looking to get full-screen captures in windows 7.

Main Release Topic:
https://autohotkey.com/board/topic/6378 ... rary-beta/

Reference Work-in-progress Topic:
https://autohotkey.com/board/topic/6366 ... -gamewin7/

Regards,
also looking for this. what a shame

Return to “Scripts and Functions (v1)”

Who is online

Users browsing this forum: No registered users and 86 guests