| Author |
Message |
Topic: QuickReminder v0.3 (Preview) |
Red Hat Boy
Replies: 23
Views: 1711
|
Forum: Scripts & Functions Posted: Wed Aug 27, 2008 9:52 pm Subject: QuickReminder v0.3 (Preview) |
Very nice! I had considered making something like this, but haven't found the time.
Things you (or I) might consider adding:
Option to have an alarm go off every hour, or every x minutes, x being ... |
Topic: Simple tray icon problem in vista |
Red Hat Boy
Replies: 2
Views: 111
|
Forum: Ask for Help Posted: Mon Aug 25, 2008 1:41 am Subject: Simple tray icon problem in vista |
Got it. It was a 16x16 icon. Worked fine on xp, but I had to use a 32x32 icon on vista to make it work.
I got Vista Home Basic 32-bit btw. I'm not as disappointed with it as I thought I would be. |
Topic: Simple tray icon problem in vista |
Red Hat Boy
Replies: 2
Views: 111
|
Forum: Ask for Help Posted: Sun Aug 24, 2008 7:31 pm Subject: Simple tray icon problem in vista |
Got a new laptop a few days ago with Vista. It seems that using Menu, Tray, Icon to change the tray icon in AHK will change the icon on a gui, but not in the tray.
Menu, Tray, Icon, C:\mydirecto ... |
Topic: Mouse click passing. |
Red Hat Boy
Replies: 5
Views: 245
|
Forum: Ask for Help Posted: Wed Aug 20, 2008 12:13 am Subject: Mouse click passing. |
Hmmm...
I'm not sure what you're trying to do is even possible...at least, not without two different mouse cursors on the screen. I have no idea how to accomplish such a thing, since only one window ... |
Topic: Do you have a Battle On Guardian Account? |
Red Hat Boy
Replies: 13
Views: 251
|
Forum: Ask for Help Posted: Wed Aug 20, 2008 12:01 am Subject: Do you have a Battle On Guardian Account? |
I Gimp'd your spider.
Low quality, but what the hell.
http://i482.photobucket.com/albums/rr189/redhatboy007/spider-b.gif |
Topic: Mouse click passing. |
Red Hat Boy
Replies: 5
Views: 245
|
Forum: Ask for Help Posted: Tue Aug 19, 2008 9:48 pm Subject: Mouse click passing. |
Unlike the Send command, mouse clicks cannot be sent by ControlSend. Use ControlClick for that.
;Grab unique window ID's
WinGet, WinId, List, Untitled - Notepad
ClonesPush(strKeys)
& ... |
Topic: Anti-Virus? Yes or No? |
Red Hat Boy
Replies: 17
Views: 792
|
Forum: General Chat Posted: Sun Aug 17, 2008 11:28 pm Subject: Anti-Virus? Yes or No? |
I have since uninstalled Avira. It was slowing down my dated laptop too much, and kept telling me that WPE Pro is a virus.
Unless a certain nephew is visiting, I don't need AV protection any ... |
Topic: Time, Internet Time Settings |
Red Hat Boy
Replies: 1
Views: 67
|
Forum: Ask for Help Posted: Sun Aug 17, 2008 2:22 am Subject: Time, Internet Time Settings |
I imagine, if you knew the registry key, you could edit it to change the setting.
Untested.
RegWrite, REG_SZ, HKEY_LOCAL_MACHINE, SYSTEM\CurrentControlSet\Services\W32Time\Parameters, Type, NoSync |
Topic: Strange problem with splashimage while using Process command |
Red Hat Boy
Replies: 1
Views: 80
|
Forum: Ask for Help Posted: Sat Aug 16, 2008 9:55 pm Subject: Strange problem with splashimage while using Process command |
I tried to create a simple countdown timer using gif images. It works fine, unless I add the line,
Process, priority, , High
This is very strange. If I add that line, the pictures seem to overlap. ... |
Topic: Have you been Naughty? |
Red Hat Boy
Replies: 15
Views: 1184
|
Forum: Scripts & Functions Posted: Sat Aug 16, 2008 9:26 pm Subject: Have you been Naughty? |
Have you been Naughty?Yes.
Btw, thanks.  |
Topic: AltTab and commands |
Red Hat Boy
Replies: 4
Views: 371
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 5:26 pm Subject: AltTab and commands |
You could have replacedLoop
{
GetKeyState, state, XButton1, P
If state = U
break
}withKeyWait, XButton1but it seems that if whatever XButton1 & WheelUp is assigned to has stopped it ... |
Topic: Control Audacity when in Background? |
Red Hat Boy
Replies: 4
Views: 113
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 5:19 pm Subject: Control Audacity when in Background? |
| None that I can think of, aside from getting a new app to record with. In my tests, Audacity was definitely being sent the 'r' key ('up' wouldn't function as it normally would, and notepad wouldn't re ... |
Topic: simple noob question with hotkeys |
Red Hat Boy
Replies: 1
Views: 108
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 5:22 am Subject: simple noob question with hotkeys |
There's an easy way to suspend ALL hotkeys, but I don't think that's what you're asking for...
Try this:
HotKeyList := "~Numpad0|~NumpadDot|~Numpad1|~Numpad2|~Numpad3|~Numpad4|~Numpad5|~Num ... |
Topic: Overlapping a Window? |
Red Hat Boy
Replies: 3
Views: 127
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 7:02 pm Subject: Overlapping a Window? |
Here's something I made a while ago. It was a work in progress, but I haven't worked on it in forever.
Gui, Show, W662 H20 X300 Y300, cmd helper
Gui, Color, 000000, 000000
Gui +ToolWindow -The ... |
Topic: making SplashImage |
Red Hat Boy
Replies: 7
Views: 191
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 6:05 pm Subject: making SplashImage |
splashvar=1
SplashImage, scripton.gif, B X8 Y25
SetTimer, KillImage, -2500
!a::Msgbox hahahahaha!
!x::ExitApp
!z::
Suspend Toggle ; must appear as first line of hotkey, ... |
| |