Search found 628 matches

by Ragnar
10 Jun 2017, 13:31
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Dokumentation an v1.1.26.00 angepasst. Achtung : Aus Testgründen enthält die CHM-Datei jetzt auch die erwähnte "Änderung in eigener Sache". Dadurch werden einige Skripte, die mit der CHM-Datei interagieren, nicht mehr korrekt funktionieren (zum Beispiel die F1-Hilfe von Scite4AutoHotkey). Wer auf s...
by Ragnar
03 Jun 2017, 09:50
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Änderung in eigener Sache: Ich muss die deutsche Hilfe mal wieder als Testfeld "missbrauchen". ;) Wenn ihr Probleme findet, könnt ihr mich wie immer kontaktieren. Die Hilfe ist nun soweit ausgebaut, dass sie quasi die komplette CHM-Datei ersetzen könnte. Eine Integration in die englische Hilfe erfo...
by Ragnar
19 May 2017, 07:19
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

For Gui.OnEvent and/or GuiCtrl.OnEvent, what about chaining events which have the same Callback parameter (like jQuery's .On()). For Example:

Code: Select all

Gui.OnEvent("Close", "Gui_Close")
Gui.OnEvent("Escape", "Gui_Close")
would be then:

Code: Select all

Gui.OnEvent("Close Escape", "Gui_Close")
by Ragnar
18 May 2017, 16:32
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

Are there any reasons why GuiCtrlObj := Gui.Control[Name] is not a method? Compared to the other properties, its behaviour is awkward and not necessarily predictable. For example: Gui := GuiCreate() Gui.Add("Edit", "vName") Gui.Show() ; When assuming an array of controls would be returned without pr...
by Ragnar
18 May 2017, 10:09
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Hierbei hilft dir in der Regel die folgende Google-Suchmethode (sofern der Titel des Themas vorliegt): site:https://autohotkey.com/board/ Thematitel

Zum Beispiel: How to Disable Screen Saver Temporarily ?
by Ragnar
18 May 2017, 07:39
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

v2-Dokumentation an v2.0-a078-106+gf5d8211 angepasst.

Mehr Details auf GitHub
by Ragnar
13 May 2017, 17:08
Forum: Allgemeines
Topic: Übersetzter AHK v2-Changelog
Replies: 5
Views: 16124

Re: Übersetzter AHK v2-Changelog

Die aktuellste Version ist hier zu finden: https://ahkde.github.io/docs/v2/v2-changes.htm
by Ragnar
13 May 2017, 16:57
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Dokumentation an v1.1.25.02 angepasst.

Mehr Details auf GitHub
by Ragnar
01 May 2017, 05:03
Forum: AutoHotkey Development
Topic: Replacing percent signs
Replies: 26
Views: 15459

Re: Replacing percent signs

I like the idea of using "%var" and "%(var)". However, regardless of nostalgia the prefix char doesn't necessarily have to be a %, at least for QWERTZ keyboard layouts. It doesn't matter whether I press Shift-5 for % or Shift-4 for $.
by Ragnar
29 Apr 2017, 04:26
Forum: AutoHotkey Development
Topic: Removal of command syntax
Replies: 28
Views: 13853

Re: Removal of command syntax

I absolutely agree with your decision and will help to revise the documentation.
by Ragnar
28 Apr 2017, 08:50
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

What do you think about Ctrl.Add(ArrayOrList [, Overwrite := false])?

Old:

Code: Select all

MyListBox.Delete()
MyListBox.Add(List)
New:

Code: Select all

MyListBox.Add(List, true)
by Ragnar
26 Apr 2017, 05:53
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

Thanks, @just me - I have read the OP, but it seems I missed the wood for the trees ... You can also take a look at the v2 docs, which already contain the new GUI API: https://github.com/Lexikos/AutoHotkey_L-Docs/tree/v2 Just download the whole repository (upper right corner, green button), unzip i...
by Ragnar
25 Apr 2017, 02:22
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

Besides of the other good changes you made: Swapped Options with Text/Title for GuiCreate() and Gui.Add(), putting Options first and Text/Title second, as in v1. Why did you do that? In my opinion, the options are of secondary importance when creating Gui/controls. Additionally it's somewhat easier ...
by Ragnar
11 Apr 2017, 06:23
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Danke, habs gefixt.
by Ragnar
07 Apr 2017, 09:26
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

seems to be working as you want. Yes, thanks it works, but it does not change the fact that's something strange here (or my mind tricks me once again). Based on the example: Gui2 := GuiCreate(,, "foo") Gui2.Add("Button", "OK") Gui := GuiCreate(,, "bar") Gui.Add("Button", "OK") ; Gui.OnClose := "But...
by Ragnar
07 Apr 2017, 07:05
Forum: AutoHotkey Development
Topic: Proposed New GUI API for AutoHotkey v2
Replies: 249
Views: 115579

Re: Proposed New GUI API for AutoHotkey v2

It seems like there's a new bug, referring to "Changed event handler prefixes to be more v1-like." In the following example, since Gui.OnClose wants a function with Gui prefix, it's unable to call the automatic label of the OK button (which only works without the Gui prefix): ; Example: A simple inp...
by Ragnar
21 Mar 2017, 09:38
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Nein, offiziell wahrscheinlich nicht, aber man könnte ein eigenes Userscript schreiben, das die englischen Links mit den deutschen Links ersetzt. Ich habe mal auf die Schnelle so ein Script verfasst, das diese Funktionalität bereitstellen würde. Es ist aber weder vollständig noch wurde es ausgiebig ...
by Ragnar
04 Mar 2017, 04:59
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Dokumentation an v1.1.25.00 angepasst.

Mehr Details auf GitHub
by Ragnar
24 Feb 2017, 12:49
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Danke, habs geändert.
by Ragnar
17 Dec 2016, 11:13
Forum: Ich brauche Hilfe
Topic: Deutsche Hilfe für AHK v2 und v1
Replies: 331
Views: 181011

Re: Deutsche Hilfe für AHK 1.1 und 2.0-a

Dokumentation an v1.1.24.04 angepasst.

Mehr Details auf GitHub

Go to advanced search