Search found 6467 matches

by BoBo
25 Sep 2022, 11:28
Forum: Gaming Help (v1)
Topic: Referencing Associative Array of Associative Arrays Topic is solved
Replies: 4
Views: 633

Re: Referencing Associative Array of Associative Arrays Topic is solved

;AHK v1.3x xTable := {"Classic":"","Challenge":""} ;schlüssel "Classic" und "Challenge" erstellen xTable["Classic"] := {"Normal": 80, "Hard": 200, "Nightmare": 315} ;schlüsselwert für "Classic" mit assoc. array befüllen xTable["Challenge"] := {"Normal": 110, "Hard": 280} ;schlüsselwert für "Challen...
by BoBo
25 Sep 2022, 09:03
Forum: Ask for Help (v1)
Topic: Select Folder with exact name Topic is solved
Replies: 15
Views: 842

Re: Select Folder with exact name Topic is solved

...but it doesn't add the folder to the selection.
Do you mean that the selected file should be moved finally to the folder of the same name?
by BoBo
25 Sep 2022, 08:41
Forum: Ask for Help (v1)
Topic: Select Folder with exact name Topic is solved
Replies: 15
Views: 842

Re: Select Folder with exact name Topic is solved

It's working fine for me. :think:
by BoBo
25 Sep 2022, 06:50
Forum: Forum Issues
Topic: Recent Forum Issues - August 2021
Replies: 239
Views: 295286

Re: Recent Forum Issues - August 2021

trying to "unread" this thread: Server Upgrades 7-13-2021 updates 8-16-2021 https://www.autohotkey.com/boards/viewtopic.php?f=3&t=92576&view=unread# unread redirects to some other random thread: https://www.autohotkey.com/boards/viewtopic.php?f=76&t=93791 there were also issues with duplicated post...
by BoBo
25 Sep 2022, 03:48
Forum: Off-topic Discussion
Topic: Hello
Replies: 1
Views: 1239

Re: Hello

…someone.
by BoBo
24 Sep 2022, 15:36
Forum: Ask for Help (v1)
Topic: Make my mouse move whenever my variable is above 0
Replies: 1
Views: 280

Re: Make my mouse move whenever my variable is above 0

Code: Select all

MyVar:=0

Numpad2:: 
loop {
	if (MyVar > 0) {
		MouseMove, 0, -150, 75, R
	}
}

space::Click, Down
<!a:: MyVar := 1
Numpad0:: MyVar := 0
Numpad1:: Msgbox % "The value in the variable is " . MyVar
Not tested.
Don't use that JS'ish line ending;
by BoBo
24 Sep 2022, 14:00
Forum: General Discussion
Topic: Hey, sister!
Replies: 1
Views: 605

Hey, sister!

by BoBo
24 Sep 2022, 01:42
Forum: Ich brauche Hilfe
Topic: Chrome Bookmarks zwischen speichern
Replies: 12
Views: 1311

Re: Chrome Bookmarks zwischen speichern

Recherche zeigt das Chrome die bookmarks/Lesezeichen in einer "History" (SQLite) Datei abspeichert.
Wenn ich es recht erinnere, gibt es SQLite UDF's im Forum - womit eine automatisierte Auswertung möglich sein sollte?
by BoBo
23 Sep 2022, 13:54
Forum: Ask for Help (v1)
Topic: Trouble downloading
Replies: 2
Views: 451

Re: Trouble downloading

The notepad logo indicates that your AHK-files are currently assigned to notepad.exe instead of autohotkey.exe
So your scripts will be opened within notepad for editing instead of executed by autohotkey.exe.
by BoBo
23 Sep 2022, 13:36
Forum: Ask for Help (v1)
Topic: Alternate between backup folders…
Replies: 2
Views: 243

Re: Help!

No idea why you're not using an INI file instead? IniPath := A_ScriptDir . "\BACKUP\LastSavedFolder.txt" If !FileExist(IniPath) FileAppend,% "[Folder]`n`tfNo = 1 IniRead, fNo,% IniPath, Folder, fNo msgbox % "Last Saved Version:`t" . fNo NewfNo := (fNo = 1) ? 2 : 1 IniWrite,% NewfNo,% IniPath, Folder...
by BoBo
23 Sep 2022, 11:27
Forum: Ask for Help (v1)
Topic: GUI that shows multiple columns of multiple clickable items Topic is solved
Replies: 14
Views: 1947

Re: GUI that shows multiple columns of multiple clickable items Topic is solved

Gui > ListView > A_GuiEvent > …
FileRead/Loop, Read, …/Loop, Parse, …/StrSplit()/ …

You should attach/provide your "item" source file with your initial posting, so your supporters can work with it!
by BoBo
23 Sep 2022, 11:07
Forum: Ask for Help (v1)
Topic: autohotkey and Microsoft Foundation Class (MFC)
Replies: 2
Views: 416

Re: autohotkey and Microsoft Foundation Class (MFC)

Not sure if this is of any use for your potential supporters, so JFTR :shh: For me it looks like COM could do the trick?? :think: https://www.tenouk.com/visualcplusmfc/ https://learn.microsoft.com/en-us/cpp/mfc/reference/mfc-classes PS. I've "codeboxed" the controls name above (on your behalf) as ot...
by BoBo
22 Sep 2022, 03:33
Forum: Ask for Help (v1)
Topic: Right To left Text direction in [ToolTip] Is this possible Topic is solved
Replies: 4
Views: 432

Re: Right To left Text direction in [ToolTip] Is this possible Topic is solved

Rohwedder - Nice try :mrgreen: AFAICS, it mirrors the sentence vertically (quite interesting the appearance of the brackets) #SingleInstance, Force str := "عدد: مثال (*5) تغير مقدار كمية المادة لتصبح 5" toolTip(str, 5) toolTip(msg, delay) { Gui, Color, white Gui, -caption +border Gui, Add, Text,w42...
by BoBo
22 Sep 2022, 00:29
Forum: Ask for Help (v1)
Topic: How to change part of a textfile
Replies: 1
Views: 209

Re: How to change part of a textfile

You can manipulate the file using FileOpen().
by BoBo
21 Sep 2022, 14:24
Forum: Ask for Help (v1)
Topic: Windows ControlClick Checkbox dont work
Replies: 4
Views: 348

Re: Windows ControlClick Checkbox dont work

ControlSend, WindowsForms10.BUTTON.app.0.129c866_r7_ad16, {Space} :?:

Go to advanced search