Search found 17 matches

by Gevali
29 Oct 2023, 15:54
Forum: Ask for Help (v2)
Topic: WinTrigger v2
Replies: 0
Views: 283

WinTrigger v2

Has anyone made a v2 of WinTrigger?
by Gevali
23 Jun 2018, 09:04
Forum: Ask for Help (v1)
Topic: one part disables working of another part which is not wanted
Replies: 8
Views: 1534

Re: one part disables working of another part which is not wanted

But it refers to ahk_class AutoHotkey. And as I said, it works. Else how to control an AHK script from outside? It didnt work from inside during it executes a function. EDIT: The last sentence is not fully correct. It does not work during it executes a function to use a Hotkey combination of more th...
by Gevali
23 Jun 2018, 03:18
Forum: Ask for Help (v1)
Topic: one part disables working of another part which is not wanted
Replies: 8
Views: 1534

Re: one part disables working of another part which is not wanted

No, its the path to the script. And it works like that. Found that in the net for controlling other AHK Skripts. [PATH] is cleaned for the the board here.
by Gevali
20 Jun 2018, 09:49
Forum: Ask for Help (v1)
Topic: one part disables working of another part which is not wanted
Replies: 8
Views: 1534

one part disables working of another part which is not wanted

Hallo, I wanna Pause another script, it is sometimes going mad. For this I use the following. #IfWinActive ahk_exe firefox.exe PRINTSCREEN:: { ; Send a Pause command to another script. DetectHiddenWindows, On WM_COMMAND := 0x111 ID_FILE_PAUSE := 65403 PostMessage, WM_COMMAND, ID_FILE_PAUSE,,, [PATH]...
by Gevali
06 May 2017, 17:12
Forum: Ask for Help (v1)
Topic: Making hotkeys with the <-key
Replies: 4
Views: 1032

Re: Making hotkeys with the <-key

Thank you very much for explaining :thumbup:
by Gevali
06 May 2017, 16:31
Forum: Ask for Help (v1)
Topic: Making hotkeys with the <-key
Replies: 4
Views: 1032

Re: Making hotkeys with the <-key

Oh, thank you.

And why isn't this working:
LShift & LControl & <::
by Gevali
06 May 2017, 15:49
Forum: Ask for Help (v1)
Topic: Making hotkeys with the <-key
Replies: 4
Views: 1032

Making hotkeys with the <-key

Hello, I want to use the <-key (less than) for hotkeys and trying to make
LShift & LControl & <
which does not work as < is a special prefix, too.

I also tried to escape by:
LShift & LControl & <`
and
^+<`

Which das not work also. How can make it work?
by Gevali
06 May 2017, 04:00
Forum: Ask for Help (v1)
Topic: Overwrite remote controls Browser_Home button
Replies: 1
Views: 896

Overwrite remote controls Browser_Home button

Hello, I have bought a remote control which haves a home button, which I want to replace with Play/Pause. For this I made: Browser_Home::Media_Play_Pause When I now press the key, the media player pauses but nevertheless the browser opens with a new tab. The button sends this: AC 132 a d 2.22 Browse...
by Gevali
07 Sep 2016, 14:32
Forum: Pulovers Macro Creator
Topic: Pulover's Macro Creator v5.4.1 - The Complete Automation Tool
Replies: 1254
Views: 985510

Re: Pulover's Macro Creator v5.0.5 - The Complete Automation Tool

Hi, I wanted to ask, if it is possible to auto merge same keys into one with repeats.

Like:
Send, {Tab}{Tab}{Tab}{Tab}{Tab}{Tab}
into
Send, {Tab 6}
by Gevali
09 Apr 2016, 18:25
Forum: Ask for Help (v1)
Topic: LTRIM seems not to work with letters
Replies: 7
Views: 2033

Re: LTRIM seems not to work with letters

Yes the = is the first in the url. Your solution works very well for me. :dance:

Thank you very much :thumbup:
by Gevali
09 Apr 2016, 13:50
Forum: Ask for Help (v1)
Topic: LTRIM seems not to work with letters
Replies: 7
Views: 2033

Re: LTRIM seems not to work with letters

I want to trim, an url to get only its parameters.

like this:
url#?path=80/82/&isParent=true

to get this:
80/82/&isParent=true
by Gevali
09 Apr 2016, 13:19
Forum: Ask for Help (v1)
Topic: LTRIM seems not to work with letters
Replies: 7
Views: 2033

LTRIM seems not to work with letters

Hi, I have a problem with LTRIM, why is this working

Code: Select all

MsgBox % LTrim("000e00123","0")
> e00123

but not this

Code: Select all

MsgBox % LTrim("000e00123","e")
> 000e00123
by Gevali
08 Apr 2016, 05:31
Forum: Ask for Help (v1)
Topic: detect changes of class names with illegal characters
Replies: 4
Views: 1268

Re: detect changes of class names with illegal characters

Ah, my old mistake :/
Thank you ;)
by Gevali
08 Apr 2016, 05:10
Forum: Ask for Help (v1)
Topic: detect changes of class names with illegal characters
Replies: 4
Views: 1268

Re: detect changes of class names with illegal characters

Thank you.

It works like that:

Code: Select all

If ( "%class1%" <> "%class2%" )
by Gevali
08 Apr 2016, 04:43
Forum: Ask for Help (v1)
Topic: detect changes of class names with illegal characters
Replies: 4
Views: 1268

detect changes of class names with illegal characters

Hallo, I'm trying to detect changes in program class names by WinGetClass, class1, ahk_class HwndWrapper\[ Send, {TAB}{ENTER} WinGetClass, class2, ahk_class HwndWrapper\[ If %class1% <> %class2% The problem is that I get: Error: The following variable name contains an illegal character: "HwndWrapper...
by Gevali
02 Jan 2016, 03:51
Forum: Ask for Help (v1)
Topic: How to get access to windows with umlauts in title name?
Replies: 2
Views: 1295

Re: How to get access to windows with umlauts in title name?

BOM solved the problem. Thank you very much ;)
by Gevali
01 Jan 2016, 20:32
Forum: Ask for Help (v1)
Topic: How to get access to windows with umlauts in title name?
Replies: 2
Views: 1295

How to get access to windows with umlauts in title name?

Hello, I'm trying to check for windows with umlauts in title like "Bildschirmauflösung". But AHK cant find it because of the Umlaut. My script is in UTF and I also tried those: ftp.oratory.com/ahk-spchars.pdf But it does not work. Only when I set SetTitleMatchMode RegEx and use a dot instead of the ...

Go to advanced search