Search found 11 matches

by Hacker
03 May 2022, 18:24
Forum: Suggestions on Documentation Improvements
Topic: Typo in the documentation Topic is solved
Replies: 1
Views: 672

Typo in the documentation Topic is solved

Hi, https://lexikos.github.io/v2/docs/Tutorial.htm#s22 (and the offline help) reads: b. Window specific hotkeys/hotstrings Sometime you might want a hotkey or hotstring to only work (or be disabled) in a certain window. To do this, you will need to use one of the fancy commands with a # in-front of ...
by Hacker
27 Sep 2017, 04:16
Forum: Ask for Help (v1)
Topic: Start macro at 08.00 AM ... every day
Replies: 6
Views: 1857

Re: Start macro at 08.00 AM ... every day

Code: Select all

#Persistent
#NoEnv

SetTimer, RunTasks, 60000

RunTasks:
	CurrentTime = %A_Hour%%A_Min%
	If IsLabel(CurrentTime)
		Gosub, %CurrentTime%
Return

0800:
	Macro-A
Return

0900:
	Macro-B
Return

1000:
	Macro-C
Return

1100:
	Macro-D
Return

1200:
	Macro-E
Return
HTH
by Hacker
11 Feb 2016, 13:45
Forum: Scripts and Functions (v1)
Topic: GUI Creator (formerly Basic GUI Creator)
Replies: 64
Views: 158958

Re: GUI Creator (formerly Basic GUI Creator)

maestrith wrote:For now use this version. http://files.maestrith.com/GUI-Creator/GUI-Creator.ahk
Thank you!
by Hacker
11 Feb 2016, 13:16
Forum: Scripts and Functions (v1)
Topic: GUI Creator (formerly Basic GUI Creator)
Replies: 64
Views: 158958

Re: GUI Creator (formerly Basic GUI Creator)

Anyone, please?
I am also open to suggestions for other GUI Creators.
by Hacker
29 Jan 2016, 13:18
Forum: Scripts and Functions (v1)
Topic: GUI Creator (formerly Basic GUI Creator)
Replies: 64
Views: 158958

Re: GUI Creator (formerly Basic GUI Creator)

Hi,
Windows 7 x64, AHK v1.1.23.00.
When I run the GUI Creator and right-click on the empty GUI I get this message:

Image

What am I doing wrong? Any ideas welcome.
Thank you.
by Hacker
05 May 2015, 07:59
Forum: Ask for Help (v1)
Topic: If / Loop / Break behavior Topic is solved
Replies: 11
Views: 3615

Re: If / Loop / Break behavior Topic is solved

Confirmed fixed, thank you.
by Hacker
05 May 2015, 07:56
Forum: Bug Reports
Topic: [Fixed] If / Loop / Break behavior
Replies: 3
Views: 1856

Re: If / Loop / Break behavior

Confirmed fixed, thank you.
by Hacker
14 Apr 2015, 06:41
Forum: Ask for Help (v1)
Topic: If / Loop / Break behavior Topic is solved
Replies: 11
Views: 3615

Re: If / Loop / Break behavior Topic is solved

boiler,
Thank you. Done.
by Hacker
14 Apr 2015, 06:40
Forum: Bug Reports
Topic: [Fixed] If / Loop / Break behavior
Replies: 3
Views: 1856

[Fixed] If / Loop / Break behavior

Hi all, AHK Unicode x64 v1.1.21.03 If (True) Loop, 1 Loop, 1 Break, 2 MsgBox, Why is this message not displayed? As far as I understand Break , it should jump out of the two Loop s and continue the If , which does not have any more lines, so the MsgBox should be shown. Thank you for any comment.
by Hacker
14 Apr 2015, 05:30
Forum: Ask for Help (v1)
Topic: If / Loop / Break behavior Topic is solved
Replies: 11
Views: 3615

Re: If / Loop / Break behavior Topic is solved

Hello jNizM,
Thank you, I know that code works, I was wondering why my code above does not. I see no meaningful syntactical difference except for your Break statement, which should cause the outer loop to continue (which is not what I want).
by Hacker
14 Apr 2015, 04:18
Forum: Ask for Help (v1)
Topic: If / Loop / Break behavior Topic is solved
Replies: 11
Views: 3615

If / Loop / Break behavior Topic is solved

Hi all, AHK Unicode x64 v1.1.21.03 If (True) Loop, 1 Loop, 1 Break, 2 MsgBox, Why is this message not displayed? I have trouble understanding why this does not work. As far as I understand Break, it should jump out of the two Loops and continue the If, which does not have any more lines, so the MsgB...

Go to advanced search