| View previous topic :: View next topic |
| Author |
Message |
heresy
Joined: 11 Mar 2008 Posts: 291
|
Posted: Fri Jun 13, 2008 3:05 pm Post subject: What's in your pocket? |
|
|
Post libraries & functions in your standard library folder (AutoHotkey\Lib)
For your convenience, here's snippet to collect them all
| Code: | Clipboard:=""
SplitPath, A_AhkPath,,Path
Loop, %Path%\Lib\*.ahk, 1
ClipBoard.=A_LoopFileName "`n" |
here's mine
| Code: | Anchor.ahk
API.ahk
CmnDlg.ahk
COM.ahk
Functions.ahk
Gdip.ahk
grep.ahk
hextorgb.ahk
HLink.ahk
IE.ahk
ListGlobalVars.ahk
Mem.ahk
MI.ahk
msg.ahk
sendh.ahk
TaskButton.ahk
This.ahk
ToolTip.ahk
|
_________________ Easy WinAPI - Dive into Windows API World
Benchmark your AutoHotkey skills at PlayAHK.com |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7291 Location: Australia
|
Posted: Fri Jun 13, 2008 9:39 pm Post subject: |
|
|
I use %A_MyDocuments%\AutoHotkey\Lib.
| Code: | Clipboard:=""
SplitPath, A_AhkPath,,Path
Loop, %Path%\Lib\*.ahk
ClipBoard.=A_LoopFileName "`n"
Loop, %A_MyDocuments%\AutoHotkey\Lib\*.ahk
ClipBoard.=A_LoopFileName "`n"
|
(edit: added descriptions and links)
Last edited by Lexikos on Fri Jun 13, 2008 10:45 pm; edited 1 time in total |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 8255 Location: Maywood, IL
|
Posted: Fri Jun 13, 2008 9:55 pm Post subject: |
|
|
| Code: |
XPath.ahk ; by Titan, v1.03; http://www.autohotkey.net/~Titan/dl/xpath.html
Anchor.ahk ;Version 4.1 by Titan <http://www.autohotkey.net/~Titan/#anchor> I think I modified it to be a StdLib function.
INI.ahk
LV.ahk ;Listview color change function and "Get Parameter" function.
CmnDlg.ahk ;majkinetor's useful Common Dialog script
WINDERS.ahk ;just a pile of constants
GL.ahk ;my unfinished attempt to wrap OpenGL based on the code others posted.
|
_________________
(Common Answers) |
|
| Back to top |
|
 |
[VxE]
Joined: 07 Oct 2006 Posts: 3254 Location: Simi Valley, CA
|
Posted: Sat Jun 14, 2008 6:20 am Post subject: |
|
|
In my pocket (irl) I have this:
It's kind of a coincidence that it was in my pocket when I saw this post (it typically lives in the card slot in my laptop) but I used it to carry progs and drivers over to a comp with a fresh XP install.
I also keep all my laptop's frequently-used scripts on it, though I don't actually use AHK's library option.
(aside: I keep a firefox install on my flash drives because I feel that using IE to download firefox violates some zen code of astral alignment or something ) _________________ Ternary (a ? b : c) guide TSV Table Manipulation Library
Post code inside [code][/code] tags! |
|
| Back to top |
|
 |
tinku99
Joined: 03 Aug 2007 Posts: 513 Location: Houston, TX
|
Posted: Mon Jun 07, 2010 5:05 am Post subject: stdin |
|
|
[Moderator's note: Removed pageful of irrelevant quote.]
@Lexikos,
could you please share stdin.ahk ? |
|
| Back to top |
|
 |
Lexikos
Joined: 17 Oct 2006 Posts: 7291 Location: Australia
|
Posted: Mon Jun 07, 2010 8:17 am Post subject: |
|
|
| Here. |
|
| Back to top |
|
 |
|