AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

What's in your pocket?

 
Reply to topic    AutoHotkey Community Forum Index -> General Chat
View previous topic :: View next topic  
Author Message
heresy



Joined: 11 Mar 2008
Posts: 291

PostPosted: Fri Jun 13, 2008 3:05 pm    Post subject: What's in your pocket? Reply with quote

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
View user's profile Send private message
Lexikos



Joined: 17 Oct 2006
Posts: 7291
Location: Australia

PostPosted: Fri Jun 13, 2008 9:39 pm    Post subject: Reply with quote

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"

Quote:
ACC.ahk - Accessibility Standard Library by Sean
Anchor.ahk - Control Anchoring v4 for resizing windows by Titan
CLR.ahk - .NET Framework Interop by Lexikos
CmnDlg.ahk - CmnDlg 4.03 - Common Dialogs by majkinetor
code.ahk - Dynamic Code Generator by Lexikos
COM.ahk - COM Standard Library by Sean
COM_InvokeDeep.ahk - climb a COM tree more easily by wOxxOm, daonlyfreez, Lexikos and paulwarr
Console.ahk - unfinished lib for console apps
ConsoleSend.ahk - different method of sending to a console window by Lexikos
ControlClassActive.ahk - is this ClassNN or Class the active control?
CreateNamedPipe.ahk - simple wrapper for the win32 function
DDE.ahk - DDE Server (for single-instance file association) by Lexikos
dict.ahk - unreleased dictionary/associative array lib
DispatchObj.ahk - invoke AutoHotkey from JavaScript, etc. by Lexikos
DisplayPosition.ahk - functions for repositioning a display (for use with multiple monitors)
Edit.ahk - Edit Control Fuctions by Lexikos
EnableDisplayDevice.ahk - enables, disables or toggles a display device (near the bottom)
EnumDisplayDevices.ahk - enumerate display devices
EnumResources.ahk - enumerate resources in an executable
ExecScript.ahk - execute script without temporary files by using pipes
FileExtract.ahk - counterpart of FileInstall by Lexikos
FileToClipboard.ahk - see copy file (path) to clipboard by Lexikos
GetKeyHistory.ahk - old function to get text of KeyHistory
GetModuleList.ahk - get list of modules loaded in the current process
Glob.ahk - see Wildcard Folders
grep.ahk - global regular expression match by Titan
GuiAddHtml.ahk - adds HTML to a GUI
Hotkey_Params.ahk - associates a hotkey with a parameter string
Hotstrings.ahk - RegEx Powered Dynamic Hotstrings by Titan
IE.ahk - IE control by Sean
IE_InjectJS.ahk - execute javascript in IE by ahklerner
IL_AddIconFromResource.ahk - load icon resource into image list
ImageToClipboard.ahk - copy image to clipboard (posted here)
IndexOfIconResource.ahk - (posted here)
IPC.ahk - inter-process communication by majkinetor
js.ahk - execute javascript using the MS Script Control
ListGlobalVars.ahk - (posted here)
ListIncludes.ahk - list all #includes/auto-includes of a given script (used in AHKControl)
LowLevel.ahk
Max.ahk - (b>a) ? b : a
MI.ahk - Menu Icons by Lexikos
Min.ahk - (b<a) ? b : a
RawInput.ahk - unfinished Raw Input/HID lib
RegisterIndirectedCallback.ahk - register a callback that exposes its parameters via a single pointer
RemoteBuf.ahk - remote buffer by majkinetor
SafeArray.ahk - wrapper for COM SafeArray
ShellFileOperation.ahk - by Skan
ShellNavigate.ahk - explorer window manipulations by Sean
ShowHTMLDialog.ahk - create a modal dialog box that displays HTML by Lexikos
SSW.ahk - shortcut to show a given script's main window (I used it with ACConsole)
StdIn.ahk - read from std in stream
StdOut.ahk - write to std out stream
Struct.ahk - DllCall-style function for creating a struct
Subclass.ahk - helper function to subclass control by majkinetor
T.ahk - use QueryPerformanceCounter to measure the time since the last call
Test.ahk - a bunch of testing functions
VA.ahk - Vista Audio Control Functions 2.0 by Lexikos
VkToChar.ahk - convert vk code to character
WinDesc.ahk - get title/class of window, given hwnd (I use it whlie debugging)
xpath.ahk - read and write XML documents with XPath syntax by Titan
__listFuncs.ahk - lists all functions in the current script
__listLabels.ahk - lists all labels in the current script
__str.ahk - get string at given address

(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
View user's profile Send private message Visit poster's website
engunneer



Joined: 30 Aug 2005
Posts: 8255
Location: Maywood, IL

PostPosted: Fri Jun 13, 2008 9:55 pm    Post subject: Reply with quote

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
View user's profile Send private message Visit poster's website
[VxE]



Joined: 07 Oct 2006
Posts: 3254
Location: Simi Valley, CA

PostPosted: Sat Jun 14, 2008 6:20 am    Post subject: Reply with quote

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 Razz)
_________________
Ternary (a ? b : c) guide     TSV Table Manipulation Library
Post code inside [code][/code] tags!
Back to top
View user's profile Send private message
tinku99



Joined: 03 Aug 2007
Posts: 513
Location: Houston, TX

PostPosted: Mon Jun 07, 2010 5:05 am    Post subject: stdin Reply with quote

[Moderator's note: Removed pageful of irrelevant quote.]

@Lexikos,
could you please share stdin.ahk ?
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Lexikos



Joined: 17 Oct 2006
Posts: 7291
Location: Australia

PostPosted: Mon Jun 07, 2010 8:17 am    Post subject: Reply with quote

Here.
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> General Chat All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group