| Author |
Message |
Topic: Need help with OnMessage |
Leon
Replies: 5
Views: 178
|
Forum: Ask for Help Posted: Thu May 22, 2008 3:41 pm Subject: Need help with OnMessage |
You need to take out the return in the 3rd script before the second OnMessage or it never gets executed.
That doesn't work either. It only detects mouse moves but not clicks.
This new code below, ... |
Topic: Need help with OnMessage |
Leon
Replies: 5
Views: 178
|
Forum: Ask for Help Posted: Thu May 22, 2008 1:47 am Subject: Need help with OnMessage |
hi,
The first 2 pieces of code work fine individually (in separate scripts) but combining them to one script doesn't work.
How can I get both OnMessage commands to work in the 3rd script?
I tried f ... |
Topic: What are functions? |
Leon
Replies: 4
Views: 164
|
Forum: Ask for Help Posted: Sun Apr 27, 2008 12:22 am Subject: What are functions? |
Most of what u are looking for in that last post sounds beyond me but I would suggest looking into [url=http://www.autohotkey.com/docs/commands/ControlSend.htm]ControlSend
and [url=http://www.autohot ... |
Topic: need an urgent help on number formats |
Leon
Replies: 4
Views: 124
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 10:35 pm Subject: need an urgent help on number formats |
Try this
Numb:= 0
Loop, 9999
{
Numb:= Numb+1
StringLen, NumbLen, Numb
If NumbLen = 1
Numb = 00%Numb%
If NumbLen = 2
Numb = 0%Numb%
Msgbox, %Numb%
} |
Topic: What are functions? |
Leon
Replies: 4
Views: 164
|
Forum: Ask for Help Posted: Sat Apr 26, 2008 9:43 pm Subject: What are functions? |
Best thins is to check out the help files on Functions found here,
http://www.autohotkey.com/docs/Functions.htm
Basically functions are similar to sub-routines.
If you don't know what a sub-routine ... |
Topic: Never in focus window (or click throughable) |
Leon
Replies: 23
Views: 815
|
Forum: Ask for Help Posted: Fri Apr 25, 2008 8:46 pm Subject: Never in focus window (or click throughable) |
I replaced the Gui Show line form Gui, Show, w%A_ScreenWidth% h%A_ScreenHeight%
in an attempt to cover the whole screen but the lower half of the taskbar is always left uncovered.
I also tried Sys ... |
Topic: A_TimeIdlePhysical reset by script despite installing hook |
Leon
Replies: 1
Views: 75
|
Forum: Ask for Help Posted: Thu Apr 24, 2008 7:26 pm Subject: A_TimeIdlePhysical reset by script despite installing hook |
Hi,
I can't figure out why this isn't working.
Neither can jaco0646 - for whom it works.
I get the message "TimeIdlePhysical WAS reset by script" every time.
How can that be?
#Install ... |
Topic: Need help with OnMessage |
Leon
Replies: 6
Views: 236
|
Forum: Ask for Help Posted: Thu Apr 24, 2008 4:56 pm Subject: Need help with OnMessage |
| Others may feel differently but I feel that this is an acceptable bump based on the low difficulty level and the line count. |
Topic: A midi controller for a developer. |
Leon
Replies: 7
Views: 998
|
Forum: General Chat Posted: Thu Apr 24, 2008 3:30 pm Subject: A midi controller for a developer. |
@Lazslo: where are the sounds coming from?
is this using Microsoft Wavetable Synth or something?
If so I didn't know it could sound so good!
If no, what instrument is it palying? |
Topic: Need help with OnMessage |
Leon
Replies: 6
Views: 236
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:35 pm Subject: Need help with OnMessage |
No, infact, the script will be dragging from time to time
In between dragging Lbutton should release but sometimes it doesn't and then when user moves the mouse it causes things to get dragged which ... |
Topic: Need help with OnMessage |
Leon
Replies: 6
Views: 236
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 9:27 pm Subject: Need help with OnMessage |
thanks for the reply.
No that's not what I want.
I would like to know whenever the mouse makes any physical move in any window.
This is so that the script can release the Lbutton so as not to drag ... |
Topic: Need help with OnMessage |
Leon
Replies: 6
Views: 236
|
Forum: Ask for Help Posted: Wed Apr 23, 2008 6:55 pm Subject: Need help with OnMessage |
I tried adapting the following example from the documentation.
I'm new to OnMessage, but I've read all the help files and can't see the problem.
Could someone please point out what I'm missing?
T ... |
Topic: WheelUp::Click down (then WheelUp, then Click up) |
Leon
Replies: 9
Views: 270
|
Forum: Ask for Help Posted: Sun Apr 20, 2008 11:06 pm Subject: WheelUp::Click down (then WheelUp, then Click up) |
Trying a diffrent approach taken from clix = 0
^r::reload
Esc::
clix = 0
click up
return
WheelDown::
If clix = 0
{
Click down
clix = 1
}
Else
{
m ... |
Topic: WheelUp::Click down (then WheelUp, then Click up) |
Leon
Replies: 9
Views: 270
|
Forum: Ask for Help Posted: Sun Apr 20, 2008 10:44 pm Subject: WheelUp::Click down (then WheelUp, then Click up) |
Just got a lend of a mousewheel to check the difference.
With your code, once scrolling starts the scrolling will not stop.
I have to kill AHK in Task Manager to get it to stop.
Behaves same with m ... |
Topic: WheelUp::Click down (then WheelUp, then Click up) |
Leon
Replies: 9
Views: 270
|
Forum: Ask for Help Posted: Sun Apr 20, 2008 9:47 pm Subject: WheelUp::Click down (then WheelUp, then Click up) |
Sorry my bad.
I tried using TimeIdle but no luck. |
| |