Search found 6467 matches

by BoBo
29 Sep 2022, 00:42
Forum: Ask for Help (v1)
Topic: Chrome Get Zoom %
Replies: 8
Views: 1056

Re: Chrome Get Zoom %

…but would need to know what you are trying to do
Probably creating a set of images that could be used to use ImageSearch under different zoom factors? :think:
by BoBo
28 Sep 2022, 10:41
Forum: Ich brauche Hilfe
Topic: automatisches Zählen - infor ERP
Replies: 13
Views: 981

Re: automatisches Zählen - infor ERP

Wundert mich das du das Video (das zweite verwirrt nur) nicht hier bereits gepostet hast :wtf: https://www.autohotkey.com/boards/viewtopic.php?f=76&t=108919 IMHO solltest du als Bedingung für den Fall des Nichtvorhandenseins der Postion 99 vorab die Gesamtzahl an Postionen ermitteln (evtl lässt sich...
by BoBo
28 Sep 2022, 10:00
Forum: Ask for Help (v1)
Topic: GUI > Position of edit field Topic is solved
Replies: 14
Views: 1122

Re: GUI > Position of edit field Topic is solved

As said, it's a quite easy task to create a GUI bc you only have to deal with x/y to position, and w/h to scale a control. Just like your screen (A_ScreenWidth/-Height) - you can see your GUI as a frame where its boundaries are set up using "width" and "height". Gui, Show, w400 h200, Rectangle Withi...
by BoBo
28 Sep 2022, 05:48
Forum: Ask for Help (v1)
Topic: GUI > Position of edit field Topic is solved
Replies: 14
Views: 1122

Re: GUI > Position of edit field Topic is solved

…around this without have to put in coordinates.
I'd guess that AHK's "autopositioning" in 99 out of 100 cases isn’t the preferable way to go.
So yes, at least IMHO you have to set a few GUIControl coordinates.
And no, it’s not that difficult: https://www.autohotkey.com/docs/commands/Gui.htm#PosSize
by BoBo
27 Sep 2022, 23:23
Forum: Ask for Help (v1)
Topic: Edited Topic is solved
Replies: 3
Views: 344

Re: Extract item name consists of - symbol Topic is solved

RegEx should do the trick. Otherwise you can StrSplit() a sentence at the EOL char, then Space chars and check if in any of its items hyphens are InStr().
If true StrReplace() it.
by BoBo
27 Sep 2022, 08:32
Forum: Ask for Help (v1)
Topic: Copy highlighted text and paste into another application and hit enter
Replies: 7
Views: 569

Re: Copy highlighted text and paste into another application and hit enter

Guessing, ...the remaining letter c at your second attempt is because Send ^c has ignored/wasn't able to process the CTRL-key. So, you could try using a workaround by replacing ;Send ^c Send {Ctrl Down}c{Ctrl Up} and even slow down the process by using whatever Sleep between keystrokes. ...not worki...
by BoBo
27 Sep 2022, 07:17
Forum: Ask for Help (v1)
Topic: 2-dimensional array not working as expected Topic is solved
Replies: 9
Views: 741

Re: 2-dimensional array not working as expected Topic is solved

teadrinker wrote:
27 Sep 2022, 06:40
Haha! Nope, not me! :lol:
Well, you're at least the best teadrinker I know :mrgreen:
by BoBo
27 Sep 2022, 07:13
Forum: Ask for Help (v1)
Topic: Copy highlighted text and paste into another application and hit enter
Replies: 7
Views: 569

Re: Copy highlighted text and paste into another application and hit enter

Code: Select all

SetTitleMatchMode, 2

#esc::
clipboard := ""
Send ^c
ClipWait
myClip := clipboard
IniWrite, % myClip, Save.ini, Data, myClip

Run "C:\Program Files (x86)\Zoiper\Zoiper.exe"
WinWaitActive, Zoiper Biz

;IniRead, myClip, Save.ini, Data, myClip
Send % myClip
Sleep 100
Send {Enter}
Return
by BoBo
27 Sep 2022, 04:58
Forum: Ask for Help (v1)
Topic: Copy highlighted text and paste into another application and hit enter
Replies: 7
Views: 569

Re: Copy highlighted text and paste into another application and hit enter

probable window detection or a timing issue
SetTitleMatchMode/WinWaitActive
by BoBo
27 Sep 2022, 04:37
Forum: Ich brauche Hilfe
Topic: automatisches Zählen - infor ERP
Replies: 13
Views: 981

Re: automatisches Zählen - infor ERP

Mir ist immer noch nicht klar was der "Zählvorgang" an sich bewirken soll? Annahme: Ich habe eine Tabelle mit vier Einträgen/Reihen die zwar fortlaufend , jedoch NICHT durchgehend nummeriert sind (wie in deiner ersten Abbildung) Der Cursor befindet sich in der ersten Zelle der Spalte 'Sort', für wel...
by BoBo
26 Sep 2022, 09:25
Forum: Ich brauche Hilfe
Topic: automatisches Zählen - infor ERP
Replies: 13
Views: 981

Re: atomatisches Zählen - infor ERP

Moin, Ich sehe zwar die Spalte 'Sort', doch die Zählerei gegen eine Zelle (wo auch immer diese positioniert ist?) kann sich ja auch auf den verdeckten Bereich beziehen. Vielleicht kannst du einen Screenshot mit veränderten, weniger sensiblen, jedoch sichtbaren/referenzierbaren Daten erstellen? Stell...
by BoBo
26 Sep 2022, 08:27
Forum: Off-topic Discussion
Topic: « What's on your mind? » Topic is solved
Replies: 4893
Views: 1392392

Re: « What's on your mind? » Topic is solved

Click it with eyes closed and try to identify what the whole thing is about :mrgreen:

https://www.youtube.com/watch?v=YKAblynZYhI
by BoBo
26 Sep 2022, 08:22
Forum: Ask for Help (v1)
Topic: Loop, Files refuses an opening brace on its command line
Replies: 5
Views: 323

Re: Loop, Files refuses an opening brace on its command line

Welcome to the wonderful world of OTB: https://www.autohotkey.com/docs/commands/Block.htm I've requested the same about one (or maybe two) decade/s ago. Instead of being annoyed that Loop, <whatever command> isn’t able to handle OTB, I'm doing it the other way around and using the standard loop (tha...
by BoBo
26 Sep 2022, 01:52
Forum: Gaming Help (v1)
Topic: Referencing Associative Array of Associative Arrays Topic is solved
Replies: 4
Views: 614

Re: Referencing Associative Array of Associative Arrays Topic is solved

Happily I am using version 1.1.34.04, despite the link to a newer help file.
JFTR. It is NOT a newer help file. It's the help file of an AHK release that has a different syntax!
by BoBo
26 Sep 2022, 01:45
Forum: Ask for Help (v1)
Topic: Incremented text files with specified amount of lines
Replies: 3
Views: 281

Re: Incremented text files with specified amount of lines

You can push all lines into an array. From there you pick each line randomly (to write it into a file) and remove its item from the array to prevent duplicate picks. HTH
by BoBo
25 Sep 2022, 11:57
Forum: Ich brauche Hilfe
Topic: Chrome Bookmarks zwischen speichern
Replies: 12
Views: 1230

Re: Chrome Bookmarks zwischen speichern

Interessanterweise speichert Chrome im selben Pfad in der Datei History <ohne Dateiendung> alle besuchten Seiten ab, ohne das diese vorab zu Favoriten erklärt werden müssen. Eine Kopie dieser Datei (mit der Dateiendung *.sqlite versehen) lässt sich vereinfacht auch so anzeigen: https://sqliteviewer....

Go to advanced search