| Author |
Message |
Topic: Block games |
interiot
Replies: 4
Views: 936
|
Forum: Scripts & Functions Posted: Thu Apr 29, 2010 7:41 pm Subject: Block games |
Heh, I worried that would happen. The script was intended to increase productivity, not decrease it.
Yeah, I've heard DwarfFortress is pretty good, but I'm scared to touch it. It looks so dee ... |
Topic: Block games |
interiot
Replies: 4
Views: 936
|
Forum: Scripts & Functions Posted: Thu Apr 29, 2010 5:42 pm Subject: Block games |
This script will prevent specific games/applications from running, to try to encourage you to get your work done.
; AppBlocker
; Prevents specific applications from running.
; To add more applica ... |
Topic: Stop taskbar blinking |
interiot
Replies: 1
Views: 1550
|
Forum: Scripts & Functions Posted: Fri Oct 23, 2009 5:32 pm Subject: Stop taskbar blinking |
| This program does everything possible to keep background windows from flashing the taskbar. (IM clients drive me nuts when I'm trying to get work done -- inverting the taskbar color is enough, blinki ... |
Topic: Remotely control Firefox |
interiot
Replies: 21
Views: 9584
|
Forum: Scripts & Functions Posted: Wed Jul 29, 2009 3:32 pm Subject: Remotely control Firefox |
The "write only" commands involve only sending data from AutoHotkey to Firefox. The "read" commands also involve sending data from Firefox back to AutoHotkey.
Examples of " ... |
Topic: Remotely control Firefox |
interiot
Replies: 21
Views: 9584
|
Forum: Scripts & Functions Posted: Wed Jul 29, 2009 3:13 pm Subject: Remotely control Firefox |
| Most of what FF.au3 does can be done by sending it the right Javascript string, FF.au3 just provides nice wrappers that generate the correct Javascript. If you want to know what the correct javascrip ... |
Topic: Remotely control Firefox |
interiot
Replies: 21
Views: 9584
|
Forum: Scripts & Functions Posted: Wed Jul 29, 2009 12:01 am Subject: Remotely control Firefox |
Here's an example of remotely controlling Firefox. This method lets you control just about anything. This requires the javascript =
( Comments
// change the proxy
var prefs = Components.cla ... |
Topic: ControlGetText, limit # of lines? |
interiot
Replies: 10
Views: 504
|
Forum: Ask for Help Posted: Wed Dec 03, 2008 8:10 pm Subject: ControlGetText, limit # of lines? |
If you don't like #MaxMem because it only gets the beginning of the text, not the end, I don't know if there's a workaround. ControlGetText uses end.
Is there another WinAPI that can be used inste ... |
Topic: Enlarge mouse pointer? |
interiot
Replies: 1
Views: 446
|
Forum: Ask for Help Posted: Sun Nov 16, 2008 6:16 pm Subject: Enlarge mouse pointer? |
| Is it possible to enlarge the mouse pointer? I would think this would be possible for accessibility reasons, but [url=http://msdn.microsoft.com/en-us/library/aa929225.aspx]GetSystemMetrics() says &qu ... |
Topic: How can I make computer run faster and stop it crashing? |
interiot
Replies: 14
Views: 973
|
Forum: Ask for Help Posted: Wed Jun 04, 2008 11:22 pm 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: 11
Views: 1023
|
Forum: Ask for Help Posted: Wed May 28, 2008 11:54 pm 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: 611
|
Forum: Ask for Help Posted: Wed May 28, 2008 11:28 pm 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: 11
Views: 1023
|
Forum: Ask for Help Posted: Wed May 28, 2008 11:23 pm 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: 766
|
Forum: Wish List Posted: Tue May 27, 2008 10: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: 2231
|
Forum: Ask for Help Posted: Tue May 20, 2008 3: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: 2231
|
Forum: Ask for Help Posted: Tue May 20, 2008 12: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 ... |
| |