| Author |
Message |
Topic: Problem is still here....loading ahk |
Lexikos
Replies: 7
Views: 122
|
Forum: Ask for Help Posted: Wed Jul 23, 2008 7:59 am Subject: Problem is still here....loading ahk |
If you launch AutoHotkey from the start menu, AutoHotkey uses a file called AutoHotkey.ini that get's launched per default.That isn't completely accurate, as of February 2007:
Changed: When AutoHotke ... |
Topic: Close windows by middle clicking on task bar |
Lexikos
Replies: 8
Views: 1905
|
Forum: Scripts & Functions Posted: Wed Jul 23, 2008 7:55 am Subject: Close windows by middle clicking on task bar |
| this is more secure, using ControlFromPoint by Lexikos and similar menu closing method by TK. Enjoy!Why not [url=http://www.autohotkey.com/forum/viewtopic.php?p=168788#168788]avoid Alt+F4 and menus en ... |
Topic: GDI+ standard library 1.18 by tic |
Lexikos
Replies: 40
Views: 2349
|
Forum: Scripts & Functions Posted: Wed Jul 23, 2008 7:38 am Subject: GDI+ standard library 1.18 by tic |
| @ Lexicos: I can't get Gdip_GraphicsFromHDC to create a transparent bitmap.Of course: Gdip_GraphicsFromHDC has nothing to do with creating a bitmap. If you had already created a GDI+ bitmap and wanted ... |
Topic: GDI+ standard library 1.18 by tic |
Lexikos
Replies: 40
Views: 2349
|
Forum: Scripts & Functions Posted: Mon Jul 21, 2008 9:17 am Subject: Re: Slow |
I've found no way of just copying and updating the changed area, so my final solution was painting everything twice, once on the screen and once on the bitmap. Have you tried painting everything o ... |
Topic: Breaking the Gigapixel Barrier ... |
Lexikos
Replies: 3
Views: 161
|
Forum: General Chat Posted: Fri Jul 18, 2008 1:39 pm Subject: Breaking the Gigapixel Barrier ... |
http://www.harlem-13-gigapixels.com/
An interactive (presumably) 13-gigapixel image. Ghosts can be seen on the streets.  |
Topic: Vista Audio Control Functions v2.0 |
Lexikos
Replies: 51
Views: 4897
|
Forum: Scripts & Functions Posted: Mon Jul 14, 2008 10:59 pm Subject: Vista Audio Control Functions v2.0 |
This is a function call:
function(parameter1, parameter2)
The ; In the auto-execute section (the top of the script):
COM_Init()
;...
VA_SetMute(true, "MID ... |
Topic: Vista Audio Control Functions v2.0 |
Lexikos
Replies: 51
Views: 4897
|
Forum: Scripts & Functions Posted: Mon Jul 14, 2008 9:03 am Subject: Vista Audio Control Functions v2.0 |
| Get [url=http://www.autohotkey.com/forum/topic22923.html]COM.ahk if you haven't already. VA.ahk and COM.ahk should be placed in your [url=http://www.autohotkey.com/docs/Functions.htm#lib]function libr ... |
Topic: LowLevel & dynamic code |
Lexikos
Replies: 67
Views: 5541
|
Forum: Scripts & Functions Posted: Sun Jul 13, 2008 10:19 pm Subject: LowLevel & dynamic code |
Look for the following:
( Join`s
A_AhkPath A_AhkVersion A_AppData A_AppDataCommon A_AutoTrim A_BatchLines
A_CaretX A_CaretY A_ComputerName A_ControlDelay A_Cursor A_DD A_DDD A_DDDD
...`s i ... |
Topic: Pause and Continue Code |
Lexikos
Replies: 9
Views: 202
|
Forum: Ask for Help Posted: Sun Jul 13, 2008 8:45 am Subject: Pause and Continue Code |
| If you pause from a hotkey, the hotkey thread itself is paused. Normally each hotkey can run only one thread at a time, but AutoHotkey makes an exception for hotkeys beginning with the Pause command.
... |
Topic: Vista Audio Control Functions v2.0 |
Lexikos
Replies: 51
Views: 4897
|
Forum: Scripts & Functions Posted: Sun Jul 13, 2008 12:12 am Subject: Vista Audio Control Functions v2.0 |
I'm so stupid.. I Quoted the Integer i.e. "5" as the parameter, and should have just passed the integer
There must have been something else, because either way the value is stored as a stri ... |
Topic: Menu Icons v2 (stdlib) |
Lexikos
Replies: 36
Views: 6311
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 6:52 am Subject: Menu Icons v2 (stdlib) |
...
myMenu1 =
(
D
@EXPLORER.EXE /n, /e, d:\
Notepad
@Notepad
)
Return ; "Stop here; don't go any further."
MI_SetMenuItemIcon("myMenu", 1, "shell3 ... |
Topic: Vista Audio Control Functions v2.0 |
Lexikos
Replies: 51
Views: 4897
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 6:41 am Subject: Re: Still can not control the line-in volume or Mute functio |
#!o::
COM_Init()
VA_SetMute(!VA_GetMute("5"),"5")
returnIt probably isn't really a problem in this case, but generally you should either call COM ... |
Topic: WindowPad - multi-monitor window-moving tool |
Lexikos
Replies: 106
Views: 21635
|
Forum: Scripts & Functions Posted: Sat Jul 12, 2008 6:26 am Subject: WindowPad - multi-monitor window-moving tool |
Double clicking the tray icon and viewing "Hotkeys and their methods" shows this:
Type Off? Running Name
-------------------------------------------------------------------
k-hook Cap ... |
Topic: WindowPad - multi-monitor window-moving tool |
Lexikos
Replies: 106
Views: 21635
|
Forum: Scripts & Functions Posted: Thu Jul 10, 2008 10:21 pm Subject: WindowPad - multi-monitor window-moving tool |
| Double-click the tray icon and go to View -> Hotkeys and their methods, then tell me what you see. The script also sets WINDOWPAD_INI_PATH to the path it is using, so also go to View -> Variable ... |
Topic: Menu Icons v2 (stdlib) |
Lexikos
Replies: 36
Views: 6311
|
Forum: Scripts & Functions Posted: Thu Jul 10, 2008 10:12 pm Subject: Menu Icons v2 (stdlib) |
Follow the examples previously posted. It is no different from any other menu...
; MI_SetMenuItemIcon("myMenu1", 1, "shell32.dll", 4, 16)
; MI_SetMenuStyle("myMe ... |
| |