Search found 26 matches

by LazyMan
10 Feb 2014, 16:30
Forum: Tutorials (v1)
Topic: The Unofficial Known Issues and Gotchas List
Replies: 10
Views: 10771

Re: The Unofficial Known Issues List

But I think it is better to place that thread in "Bug Reports" section of the forum. I understand your perspective; I think most items in the list will link to there. And I understand tank 's suggestion to have it in Tutorials since it's a reference list. As long as it grows and fulfills its potent...
by LazyMan
10 Feb 2014, 15:26
Forum: Ask for Help (v1)
Topic: Mapping Shift & Alt to Ctrl
Replies: 5
Views: 4530

Re: Mapping Shift & Alt to Ctrl

Using a combination of sendEvent (to prevent the removal of the keyboard hook) and blind mode seems to work. Thank you for trying to help. :) But ... The scripts' code below uses the default send mode--SendEvent. Adding the special key {Blind} to each Send does not change the key history at all; it...
by LazyMan
10 Feb 2014, 13:14
Forum: Tutorials (v1)
Topic: The Unofficial Known Issues and Gotchas List
Replies: 10
Views: 10771

The Unofficial Known Issues and Gotchas List

This is a list of known issues and gotchas with AutoHotkey. The known issues are limited to issues that have been previously discussed and adjudicated by Lexikos on an AutoHotkey forum; each list item is a link to the thread or post regarding the issue. The gotchas list will be a catch-all of others...
by LazyMan
10 Feb 2014, 11:41
Forum: Ask for Help (v1)
Topic: Known Issues or Bugs
Replies: 1
Views: 1832

Known Issues or Bugs

Is there an "official" known issues or bugs list for AutoHotkey? If so, please tell me where to find it. Thank you.
by LazyMan
09 Feb 2014, 22:54
Forum: Ask for Help (v1)
Topic: Mapping Shift & Alt to Ctrl
Replies: 5
Views: 4530

Re: Mapping Shift & Alt to Ctrl

LShift & LAlt:: Send {Ctrl Down} LShift & LAlt Up:: Send {Ctrl Up} When using these hotkeys, KeyHistory reports that the Shift key is held down instead of released even though Send is used without {Blind} . Here is the corresponding KeyHistory output when using those hotkeys with Left: A0 02A d 0.6...
by LazyMan
08 Feb 2014, 00:01
Forum: Ask for Help (v1)
Topic: Mapping Shift & Alt to Ctrl
Replies: 5
Views: 4530

Mapping Shift & Alt to Ctrl

How can combination Shift & Alt be mapped to Ctrl? It was originally asked at autohotkey.com: Two keys to one key (It seemed trivial at first, but for my attempt at least, Shift stays down, as though I had used Send with {Blind} .) If a working mapping does/can not exist, the explanation for why wou...
by LazyMan
07 Feb 2014, 17:21
Forum: Ask for Help (v1)
Topic: Experimenting with finding average color of a given region
Replies: 1
Views: 1569

Re: Experimenting with finding average color of a given regi

The code you need is in the first post of link you provided in the section labeled {Code}.
by LazyMan
03 Feb 2014, 22:17
Forum: Ask for Help (v1)
Topic: Active hotkeys only for certain mouse device Topic is solved
Replies: 2
Views: 2190

Re: Active hotkeys only for certain mouse device Topic is solved

I would work-around my inability to get 2 mice to behave differently by assigning the 2nd mouse's functionality to other hotkeys. What drives you to pursue this custom 2 mice capability?

Nice to see you did some homework. I hope someone is able to help you, or that you solve it anyway. :)
by LazyMan
31 Jan 2014, 21:13
Forum: Ask for Help (v1)
Topic: AHK Auto Formatter?
Replies: 12
Views: 8501

Re: AHK Auto Formatter?

TLM found it and credited tidbit: Auto-Syntax-Tidy.ahk

Thanks again :D
by LazyMan
30 Jan 2014, 01:42
Forum: Ask for Help (v1)
Topic: RegisterClassEx
Replies: 4
Views: 2058

Re: RegisterClassEx

I am methodically challenged. :mrgreen: --------------------------- ZisMyTest.ahk --------------------------- Error: Call to nonexistent function. Specifically: Gdip_Startup() Line# 006: SetBatchLines,-1 017: { 021: { 022: if !GDIGUI.Init 023: { ---> 024: Gdip_Startup() 025: hInstance := DllCall("Ge...
by LazyMan
30 Jan 2014, 00:36
Forum: Ask for Help (v1)
Topic: AHK Auto Formatter?
Replies: 12
Views: 8501

AHK Auto Formatter?

Auto-Syntax-Tidy v12 does not seem to be available now. :| Is there another auto formatter for AHK? Or perhaps you still use AHKTidy and could post it here? Thanks.
by LazyMan
29 Jan 2014, 20:24
Forum: Ask for Help (v1)
Topic: the strange behavior of the new version ahk
Replies: 5
Views: 2826

Re: the strange behavior of the new version ahk

For me (AHK v1.1.13.01), it's a matter of timing with respect to the auto-repeat of the f-key. If I release the f-key quickly after I release Shift, I get "Ff". If I wait just long enough to engage the auto-repeat for the f-key, I get "Fif". If I wait any longer than just enough, I get multiple "i"s...
by LazyMan
29 Jan 2014, 19:33
Forum: Ask for Help (v1)
Topic: Active hotkeys only for certain mouse device Topic is solved
Replies: 2
Views: 2190

Re: Active hotkeys only for certain mouse device Topic is solved

This is the first time I have heard of double-fisted mousing. :shock:
by LazyMan
29 Jan 2014, 18:56
Forum: Ask for Help (v1)
Topic: Script needed to measure length of image
Replies: 4
Views: 2241

Re: Script needed to measure length of image

Can anyone point me to an already-written script I can add/edit/modify that would return the length in pixels? BGR = 0xB3B300 This will find the pixel length of your yellow , horizontal line (I think your BGR is a shade of cyan.) UpperLeftX := 0 UpperLeftY := 0 LowerRightX := A_ScreenWidth LowerRig...
by LazyMan
27 Jan 2014, 19:10
Forum: Ask for Help (v1)
Topic: Script needed to measure length of image
Replies: 4
Views: 2241

Re: Script needed to meaure length of image

Is your yellow line vertical, horizontal, or neither?
If neither:
  • Can you specify its general orientation, or will it be random?
  • How many pixels thick will the line be?
What is the BGR (or RGB) ID of your yellow?
by LazyMan
27 Jan 2014, 14:09
Forum: Ask for Help (v1)
Topic: Help with INI READ
Replies: 7
Views: 3265

Re: Help with INI READ

Seems like, in that section of code with the assertion,
The following has no problems:
you need something like:

Code: Select all

prefixes := set1
between your IniRead and Loop.

(If there are other problems, post again; I quit looking after that.)
by LazyMan
27 Jan 2014, 13:25
Forum: Ask for Help (v1)
Topic: #If and variable Hotkey key Topic is solved
Replies: 4
Views: 2614

Re: #If and variable Hotkey key Topic is solved

Expression must match exactly the text of an existing #If Expression MyHotkey := "F1" Hotkey, If, MouseIsOver("ahk_class Shell_TrayWnd") Hotkey, %MyHotkey%, MyHotkeySub, on Hotkey, If Return #If MouseIsOver("ahk_class Shell_TrayWnd") MyHotkeySub: MsgBox, , , % A_ThisHotkey, 1 Return #If MouseIsOver...
by LazyMan
27 Jan 2014, 12:32
Forum: Ask for Help (v1)
Topic: #If and variable Hotkey key Topic is solved
Replies: 4
Views: 2614

Re: #If and variable Hotkey key Topic is solved

potkon wrote:P.S. Why BBCode doesn't work? I put my code in tags... :(
I think BBCode does not work with guest accounts.
by LazyMan
27 Jan 2014, 12:12
Forum: Ask for Help (v1)
Topic: Newbie questions
Replies: 3
Views: 1663

Re: Newbie questions


Go to advanced search