| Author |
Message |
Topic: weird hotkey help |
orbik
Replies: 11
Views: 220
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 5:20 am Subject: Re: weird hotkey help |
But i want the left mouse button NOT TO trigger if the hotkey was pressed and TO trigger if it was pressed.
Is it just me, or does this sentence look like an oxymoron? |
Topic: Runing a simple code disables my main 3 key |
orbik
Replies: 1
Views: 119
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 5:11 am Subject: Runing a simple code disables my main 3 key |
# & F4::Shutdown, 9
Did you mean:
LWin & F4::Shutdown, 9
Or perhaps:
~LWin & F4::Shutdown, 9 |
Topic: Diablo 2 Movement with WASD instead of mouse |
orbik
Replies: 10
Views: 578
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 3:46 am Subject: Diablo 2 Movement with WASD instead of mouse |
@VxE
While your code works, it's terribly inefficient by being based on a loop running at short intervals, and by repeating redundant arithmetic operations. The only advantage to my version is mainta ... |
Topic: totally Invisible Gui |
orbik
Replies: 5
Views: 175
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 2:32 am Subject: totally Invisible Gui |
| What Guest is trying to say here (though lacking in comprehension) is that AutoHotkey doesn't have that function built in but you need to directly call Win32 API functions GetWindowLong and SetWindowL ... |
Topic: Reducing system volume / muting when screensaver comes on |
orbik
Replies: 5
Views: 158
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 1:29 am Subject: Reducing system volume / muting when screensaver comes on |
This sounds like a job for the shell hook method explained here http://www.autohotkey.com/forum/viewtopic.php?p=123323#123323
You'll get notified immediately when the screensaver starts instead of wa ... |
Topic: Diablo 2 Movement with WASD instead of mouse |
orbik
Replies: 10
Views: 578
|
Forum: Ask for Help Posted: Tue Apr 22, 2008 12:43 am Subject: Diablo 2 Movement with WASD instead of mouse |
Ouch, is that an infinite loop i see there? How about using something like this instead:
SendMode, Input
ScreenWidth := 795
ScreenHeight := 595
halfWidth := 400
halfHeight ... |
Topic: Help with Bhop script :/ |
orbik
Replies: 9
Views: 280
|
Forum: Ask for Help Posted: Mon Apr 21, 2008 5:20 pm Subject: Help with Bhop script :/ |
| I did dome testing in Q3A and at least the following works perfectly. I never got the hang of SetKeyDelay so I just send up and down events explicitly. Also, the game seems to mess with logical key st ... |
Topic: Help with Bhop script :/ |
orbik
Replies: 9
Views: 280
|
Forum: Ask for Help Posted: Mon Apr 21, 2008 4:05 pm Subject: Help with Bhop script :/ |
Do you have the latest version installed?
Anyway, I made a mistake: You must use either *~LAlt:: or If (!GetKeyState("LAlt", "p"))
Apparently the logical ... |
Topic: Help with Bhop script :/ |
orbik
Replies: 9
Views: 280
|
Forum: Ask for Help Posted: Mon Apr 21, 2008 2:37 pm Subject: Help with Bhop script :/ |
As much as I think you need to be told to rtfm, why don't you just do it like this:
*LAlt::
Loop
{
If (!GetKeyState("LAlt"))
break
If (!Get ... |
Topic: MIDI input library |
orbik
Replies: 13
Views: 914
|
Forum: Scripts & Functions Posted: Tue Apr 15, 2008 10:57 am Subject: MIDI input library |
@ ProfessorY91
Although not sure what you're after, you probably don't need this library, but MIDI Output http://www.autohotkey.com/forum/viewtopic.php?p=119466#119466.
To use your default midi out ... |
Topic: WYSIWYG Editor |
orbik
Replies: 9
Views: 427
|
Forum: Wish List Posted: Sun Apr 13, 2008 12:08 am Subject: WYSIWYG Editor |
| If you have an idea of how to visualize the multitude of functions possible in AutoHotkey, please share it. IOW, tell us how would you like to work instead of writing the code. |
Topic: MIDI input library |
orbik
Replies: 13
Views: 914
|
Forum: Scripts & Functions Posted: Sat Apr 12, 2008 8:35 pm Subject: MIDI input library |
...
I connect my USB midi keyboard to a PC, I can play music and listen to it through the PC sound system. That is, I don’t need another set of speakers or sound synthesizers. I only need to ru ... |
Topic: Killswitch - how to stop my macros from eating my computer. |
orbik
Replies: 12
Views: 379
|
Forum: Ask for Help Posted: Sat Apr 12, 2008 7:46 pm Subject: Killswitch - how to stop my macros from eating my computer. |
I tested it. This works:
While that may work, it doesn't directly answer OP's problem:
The issue is that when the data is being inputed, the keystrokes being generated by the macro are overriding my ... |
Topic: MIDI input library |
orbik
Replies: 13
Views: 914
|
Forum: Scripts & Functions Posted: Sat Apr 12, 2008 4:18 pm Subject: MIDI input library |
(Moved from the relevant topic in Wishlist midi_in_Open(defaultDevID = -1)
{
global
if ((midi_in_hModule := DllCall("LoadLibrary", Str,A_ScriptDir . "\ ... |
Topic: A midi controller for a developer. |
orbik
Replies: 7
Views: 791
|
Forum: General Chat Posted: Sat Apr 12, 2008 7:46 am Subject: A midi controller for a developer. |
Don't know if I'm too late on this but I made a working midi in implementation to ahk, although it's still an early draft, and not guaranteed to be bug free:
http://www.autohotkey.com/forum/viewtopic ... |
| |