| Author |
Message |
Topic: How can I make computer run faster and stop it crashing? |
interiot
Replies: 14
Views: 355
|
Forum: Ask for Help Posted: Thu Jun 05, 2008 12:22 am Subject: How can I make computer run faster and stop it crashing? |
You can make a script that stimulates the placebo effect, is that sufficient?
MsgBox, Hold a crystal near your body's liver meridian. Notice how your computer is running slower.
Loop 25 {
... |
Topic: Disable opening the Start menu |
interiot
Replies: 8
Views: 364
|
Forum: Ask for Help Posted: Thu May 29, 2008 12:54 am Subject: Disable opening the Start menu |
| [url=http://www.autohotkey.com/forum/viewtopic.php?p=162219#162219]HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer\NoWinKeys then? That does stop things like Win+R, Win+ ... |
Topic: Multiple AutoHotKey.ahk or easy switch |
interiot
Replies: 4
Views: 196
|
Forum: Ask for Help Posted: Thu May 29, 2008 12:28 am Subject: Multiple AutoHotKey.ahk or easy switch |
There needs to be a way to enable/disable large groups of hotkeys, but as far as I know, there's no way to do it. Easiest way is just to include this in every single one of your hotkeys:
^F:: ... |
Topic: Disable opening the Start menu |
interiot
Replies: 8
Views: 364
|
Forum: Ask for Help Posted: Thu May 29, 2008 12:23 am Subject: Disable opening the Start menu |
You can still open the start menu with Ctrl-Esc. Or by clicking in the system tray, presing shift-tab several times, then enter.
Probably better to find [url=http://www.geoffchappell.com/studies/w ... |
Topic: A_Username documentation |
interiot
Replies: 2
Views: 180
|
Forum: Wish List Posted: Tue May 27, 2008 11:00 pm Subject: A_Username documentation |
| The some terse way to do this... |
Topic: [solved] Run as a service, and stay alive after logging off |
interiot
Replies: 4
Views: 245
|
Forum: Ask for Help Posted: Tue May 20, 2008 4:07 am Subject: [solved] Run as a service, and stay alive after logging off |
using 'Local Service' or 'System' would not be affected by logout
Strange, my service was configured like that, but still got closed. Perhaps it's safe as long as it's not admin who is logging out?
... |
Topic: [solved] Run as a service, and stay alive after logging off |
interiot
Replies: 4
Views: 245
|
Forum: Ask for Help Posted: Tue May 20, 2008 1:41 am Subject: [solved] Run as a service, and stay alive after logging off |
OnMessage(WM_ENDSESSION := 0x0016, "ignore_logoff")
ignore_logoff(wParam, lParam)) {
ENDSESSION_LOGOFF = 0x80000000
if (lParam & ENDSESSION ... |
Topic: Moving the Windows task bar from the bottom to the right |
interiot
Replies: 9
Views: 201
|
Forum: Ask for Help Posted: Sun May 18, 2008 9:03 pm Subject: Moving the Windows task bar from the bottom to the right |
Bah, n-l-i-d is ABE_LEFT := 0
ABE_TOP := 1
ABE_RIGHT := 2
ABE_BOTTOM := 3
APPBARDATA := ABM_QUERYPOS(ABE_RIGHT)
DllCall("Shell32.dll\SHAppBarMessage&q ... |
Topic: Can AHK detect if MS .NET is installed? |
interiot
Replies: 4
Views: 115
|
Forum: Ask for Help Posted: Sun May 18, 2008 7:29 pm Subject: Can AHK detect if MS .NET is installed? |
| You can check for specific versions by checking for the existence of a folder underneath %windir%\Microsoft.NET\Framework\. |
Topic: [Solved] Moving and setting dimensions for windows |
interiot
Replies: 2
Views: 93
|
Forum: Ask for Help Posted: Sun May 18, 2008 7:28 pm Subject: [Solved] Moving and setting dimensions for windows |
This tells you what's happening. (or, more accurately, it doesn't tell you anything, which is most informative)
Run, mspaint.exe
Winwait, paint
; tell us which window it found
WinGetClass, clas ... |
Topic: Moving the Windows task bar from the bottom to the right |
interiot
Replies: 9
Views: 201
|
Forum: Ask for Help Posted: Sun May 18, 2008 6:25 pm Subject: Moving the Windows task bar from the bottom to the right |
Remember this Google search term, it's very very useful:
[url=http://www.google.com/search?hl=en&ie=UTF-8&oe=UTF-8&q=site:autohotkey.com+SHAppBarMessage]site:autohotkey.net
(in thi ... |
Topic: Problem With Shift |
interiot
Replies: 3
Views: 119
|
Forum: Ask for Help Posted: Sun May 18, 2008 6:17 pm Subject: Problem With Shift |
| Can you create the smallest version of the program that still replicates the problem, and post that? That 1) makes it much easier for people to volunteer to help, and 2) whenever I whittle a problem ... |
Topic: Another Reason For People to Hate Windows™ |
interiot
Replies: 5
Views: 257
|
Forum: General Chat Posted: Sun May 18, 2008 5:07 pm Subject: Another Reason For People to Hate Windows™ |
| From The term disk image has come to mean any file, whether originated from an actual physical storage device or not, capable of producing the relative structure and data file contents of the intended ... |
Topic: Integrate AutoHotKey In Driver Base |
interiot
Replies: 5
Views: 208
|
Forum: Ask for Help Posted: Sun May 18, 2008 1:24 am Subject: Integrate AutoHotKey In Driver Base |
| The software that comes with keyboards doesn't always restrict itself to implementing its functionality only in drivers, so I don't think that's a useful distinction. Why does it need to be implement ... |
Topic: Queue active windows |
interiot
Replies: 2
Views: 102
|
Forum: Ask for Help Posted: Fri May 16, 2008 2:17 am Subject: Queue active windows |
... I need a script that recognizes whenever a window is being activated. ...
Are you looking for when a window's taskbar icon starts flashing? [url=http://www.autohotkey.com/forum/viewtopic.php?p=1 ... |
| |