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 

Search found 711 matches
AutoHotkey Community Forum Index
Author Message
  Topic: SCO Release 5 question...
Sivvy

Replies: 1
Views: 40

PostForum: Ask for Help   Posted: Thu Nov 13, 2008 7:45 pm   Subject: SCO Release 5 question...
I don't think AHK will work on another operating system. The only way I could see it working is by using Remote Desktop and sending clicks through... Do a forum search to find out more. Many people ha ...
  Topic: Sending command to the program contained in a tray icon...
Sivvy

Replies: 6
Views: 111

PostForum: Ask for Help   Posted: Thu Nov 13, 2008 7:39 pm   Subject: Sending command to the program contained in a tray icon...
PostMessage. With it allowing you to use "!t", I assume you have a menu bar, which is normally very easy to get WM_Command messages from. Try Winspector Spy and see if you can find a Message ...
  Topic: How can i use sleep in conditions?
Sivvy

Replies: 7
Views: 172

PostForum: Ask for Help   Posted: Thu Nov 13, 2008 3:16 pm   Subject: How can i use sleep in conditions?
Flag = False

Loop
{
PixelGetColor, Fir, 405, 154
If Fir = 0xCCFFCC
{
If Flag = False
Flag = True
Else
{
Flag = Fa ...
  Topic: DllCall. Help, anyone?
Sivvy

Replies: 26
Views: 2244

PostForum: Ask for Help   Posted: Wed Nov 12, 2008 3:31 pm   Subject: DllCall. Help, anyone?
OK i give How
Not sure what your asking... Do you mean "How is 'Const MB_YESNO As Long = &H4&' translated as 'MB_YESNO := 0x4'?"
  Topic: hotkey in script vs windows
Sivvy

Replies: 10
Views: 246

PostForum: Ask for Help   Posted: Wed Nov 12, 2008 3:14 pm   Subject: hotkey in script vs windows
Did you try the FAQ?

[url=http://www.autohotkey.com/docs/FAQ.htm]FAQ

Second last link in the FAQ gives exactly what your asking. Try searching. As for duplicate hotkey... Is that really not self ...
  Topic: need a function --minall(ahk_class), restoreall(ahk_class)
Sivvy

Replies: 4
Views: 285

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 5:37 pm   Subject: need a function --minall(ahk_class), restoreall(ahk_class)
Look up "GroupAdd". It should do everything you need.
  Topic: Add date stamp to Hotstring
Sivvy

Replies: 4
Views: 190

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 4:56 pm   Subject: Add date stamp to Hotstring
Count = 0
#IfWinActive, ahk_class 32770 ; This may not work adequately for you... Too many windows use this same class. Add the name of the window in as well. E.g.) Post a reply ahk_class IEFram ...
  Topic: Macro for tibia?
Sivvy

Replies: 19
Views: 467

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 4:22 pm   Subject: Macro for tibia?
"SetTimer" May also help. Set that to work every ten minutes.
  Topic: Help applying hotkeys to just Warcraft III
Sivvy

Replies: 3
Views: 121

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 4:15 pm   Subject: Help applying hotkeys to just Warcraft III
SendMode, Play
Gui, Add, ListBox, x6 y50 w180 h420, WMW SuperSpeed 5.5d Special Edition
Gui, Show, x131 y91 h475 w239, Warcraft III Hotkey List.
Return

;WMW SuperSpeed 5.5d Special Edition.
...
  Topic: Detecting & closing a window while a Win2k server is loc
Sivvy

Replies: 5
Views: 147

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 4:03 pm   Subject: Detecting & closing a window while a Win2k server is loc
Perhaps the error message has its own separate Process? Not sure if it would though.
  Topic: Kill script after 1 day
Sivvy

Replies: 3
Views: 97

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 3:52 pm   Subject: Kill script after 1 day
Maybe look around MSDN and see if there is any message about an update to the system clock. Then just add "OnMessage" to your script to react if the message is recieved.
  Topic: Kill script after 1 day
Sivvy

Replies: 3
Views: 97

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 3:28 pm   Subject: Kill script after 1 day
Since this is AHK, it can only be run on windows, which means Everyone using this script will have Internet Explorer. Look through Tank's tutorials, and you should find one that actually opens an invi ...
  Topic: How do you break out of nested IF loops without using GOTO?
Sivvy

Replies: 7
Views: 252

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 3:13 pm   Subject: How do you break out of nested IF loops without using GOTO?
Personally, I think you have the right idea, but the wrong method... Ever heard of OOP (Object-Oriented Programming)?

#SingleInstance force ;force a single instance
#InstallKeybdHook ;Forces the u ...
  Topic: Break doesn't seem to be working
Sivvy

Replies: 3
Views: 118

PostForum: Ask for Help   Posted: Mon Nov 03, 2008 2:34 pm   Subject: Break doesn't seem to be working
If (color1 = 0x046402) or (color1 = 0x047B81)
Is that the problem?
  Topic: cant seem to send alt key
Sivvy

Replies: 11
Views: 189

PostForum: Ask for Help   Posted: Tue Oct 28, 2008 1:23 pm   Subject: cant seem to send alt key
WinGet, wowid, List, World of Warcraft
!x::
IfWinActive, World of Warcraft
Send, {Alt Down}
ControlSend, , x, ahk_id %idClone%
Send, {Alt Up}
Return
 
Page 1 of 48 Goto page 1, 2, 3 ... 46, 47, 48  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group