Thanks @mikeyww
I tried it already inside the loop, but then I found the parameter.
Thanks @boiler
another high sophisticated feature of AHK (at least for me)
Search found 282 matches
- 11 Feb 2021, 12:25
- Forum: Ask For Help
- Topic: WinGet and multiple "ExcludeTitle" Topic is solved
- Replies: 4
- Views: 89
- 11 Feb 2021, 10:48
- Forum: Ask For Help
- Topic: WinGet and multiple "ExcludeTitle" Topic is solved
- Replies: 4
- Views: 89
WinGet and multiple "ExcludeTitle" Topic is solved
The defined syntax I want to use is: WinGet, OutputVar, List [, WinTitle, WinText, ExcludeTitle, ExcludeText] so I made this and other versions (of course not working) code WinGet, id, List,,,Program Manager, AdApplicationButton, CAD und MAP, Fenster positionieren to exclude the four different windo...
- 11 Feb 2021, 10:38
- Forum: Scripts and Functions
- Topic: Filexpro() : File Extended Properties Object
- Replies: 24
- Views: 6007
Re: Filexpro() : File Extended Properties Object
Thanks for your help!
- 11 Feb 2021, 05:51
- Forum: Scripts and Functions
- Topic: 4k window manager
- Replies: 5
- Views: 2489
Re: 4k window manager
HI @Roel
two questions
a) should this also work with non-4k monitors?
b) I have a laptop with deactivated monitor and 2 external, active monitors. It seem that is includes also the inactive monitor in its calculation - right?
two questions
a) should this also work with non-4k monitors?
b) I have a laptop with deactivated monitor and 2 external, active monitors. It seem that is includes also the inactive monitor in its calculation - right?
- 11 Feb 2021, 05:41
- Forum: Scripts and Functions
- Topic: Window Position Manager
- Replies: 4
- Views: 619
- 11 Feb 2021, 05:30
- Forum: Scripts and Functions
- Topic: Filexpro() : File Extended Properties Object
- Replies: 24
- Views: 6007
Re: Filexpro() : File Extended Properties Object
Yep, it is from photos.
I will take a look at the canonical form, but nevertheless the "encoding(?)" question would be interesting to be answered.
I will take a look at the canonical form, but nevertheless the "encoding(?)" question would be interesting to be answered.
- 27 Jan 2021, 11:57
- Forum: Ask For Help
- Topic: Call "exiftool" with Runwait to write to file Topic is solved
- Replies: 5
- Views: 76
Re: Call "exiftool" with Runwait to write to file Topic is solved
Thanks, now I see. I had a lot of quotes inside the var "auftrag", but I have to quote the var itself when I call it:
BTW, it's strange - I have other similar scripts where others EXE can be called without the extra quotes.
Code: Select all
RunWait, %ComSpec% /c "%auftrag%"
- 27 Jan 2021, 09:31
- Forum: Ask For Help
- Topic: Call "exiftool" with Runwait to write to file Topic is solved
- Replies: 5
- Views: 76
Re: Call "exiftool" with Runwait to write to file Topic is solved
Thanks @mikeyww
but also with "comspec" I have the same results. Does it work for you?
but also with "comspec" I have the same results. Does it work for you?
- 27 Jan 2021, 09:10
- Forum: Scripts and Functions
- Topic: Filexpro() : File Extended Properties Object
- Replies: 24
- Views: 6007
Re: Filexpro() : File Extended Properties Object
I'm trying this tool - is great, but I have a problem, maybe caused be decoding. I extract dates and get e.g. this value "14.04.2015 14:25". Looks fine, but when I copy the value (using "DebugVars.ahk") and paste is into my text files, I always get a message "You want to insert UTF-8 code into an AS...
- 27 Jan 2021, 09:02
- Forum: Allgemeines
- Topic: Deutsches Forum von 2012?
- Replies: 8
- Views: 223
Re: Deutsches Forum von 2012?
OK. Danke
- 27 Jan 2021, 04:58
- Forum: Allgemeines
- Topic: Deutsches Forum von 2012?
- Replies: 8
- Views: 223
Deutsches Forum von 2012?
In einem alten Script von 2012 habe ich diesen nicht mehr erreichbaren Link gefunden:
de.autohotkey.com/forum/topic8454.html
Ist das alles in einem schwarzen Loch verschwunden?
Peter2
de.autohotkey.com/forum/topic8454.html
Ist das alles in einem schwarzen Loch verschwunden?
Peter2
- 27 Jan 2021, 04:42
- Forum: Ask For Help
- Topic: Call "exiftool" with Runwait to write to file Topic is solved
- Replies: 5
- Views: 76
Call "exiftool" with Runwait to write to file Topic is solved
I think that it is abolutely simple, but I can find the problem ... I want to use Exiftool to write fileinformation to an output file. The basic code is: exiftool -s image.jpg > out.txt I have these line in AHK: dateninfo = %basispfad%\dateninfo.log FileDelete, %dateninfo% auftrag = "%A_ScriptDir%\E...
- 08 Nov 2020, 15:03
- Forum: Ask For Help
- Topic: Find attributes of folders - 2 solutions with FileExist Topic is solved
- Replies: 3
- Views: 113
Re: Find attributes of folders - 2 solutions with FileExist Topic is solved
Thanks to both, Xtra's answer is what I was looking for.
- 06 Nov 2020, 19:11
- Forum: Ask For Help
- Topic: Find attributes of folders - 2 solutions with FileExist Topic is solved
- Replies: 3
- Views: 113
Find attributes of folders - 2 solutions with FileExist Topic is solved
The help describes how to find if a file has the "hidden attribute": if InStr(FileExist("C:\My File.txt"), "H") MsgBox The file is hidden. For me that's clear, I see the idea behind it Now I found an old posting - "How to find if the current data has the "folder attribute". Sounds to be the same way...
- 06 Nov 2020, 17:52
- Forum: Ask For Help
- Topic: Loop parse - delimiter with or without blanks? Topic is solved
- Replies: 5
- Views: 136
Re: Loop parse - delimiter with or without blanks? Topic is solved
Thanks for the explanation, @boiler
I'm very creative in creating crazy code.
I'm very creative in creating crazy code.
- 06 Nov 2020, 13:05
- Forum: Ask For Help
- Topic: Loop parse - delimiter with or without blanks? Topic is solved
- Replies: 5
- Views: 136
Re: Loop parse - delimiter with or without blanks? Topic is solved
I see the problem. I tried to create a "Loop parse" snippets which can be called with different delimiters. So I made it like this: FileContents := "Like this example" delimiter = `n, `r Loop, parse, FileContents, %delimiter% ; Specifying `n prior to `r allows both Windows and Unix files to be parse...
- 06 Nov 2020, 12:28
- Forum: Ask For Help
- Topic: Loop parse - delimiter with or without blanks? Topic is solved
- Replies: 5
- Views: 136
Loop parse - delimiter with or without blanks? Topic is solved
The help for "Lop, parse" here https://www.autohotkey.com/docs/commands/LoopParse.htm tells us: Loop, parse, FileContents, `n, `r ; Specifying `n prior to `r allows both Windows and Unix files to be parsed. { MsgBox, 4, , Line number %A_Index% is %A_LoopField%.`n`nContinue? IfMsgBox, No, break } I t...
- 02 Nov 2020, 11:47
- Forum: Ask For Help
- Topic: Tool for measuring speed of internal LAN
- Replies: 4
- Views: 99
Re: Tool for measuring speed of internal LAN
Thanks to all.
I made a simple script - select source folder, select target folder, copy from source to target and take the time from start till end.
Not high sofisticated and not scientific, but gives an idea on "real life".
I made a simple script - select source folder, select target folder, copy from source to target and take the time from start till end.
Not high sofisticated and not scientific, but gives an idea on "real life".
- 29 Oct 2020, 06:01
- Forum: Ask For Help
- Topic: FileCopyDir: In- and Outputload on LAN? Topic is solved
- Replies: 4
- Views: 120
- 28 Oct 2020, 11:41
- Forum: Ask For Help
- Topic: FileCopyDir: In- and Outputload on LAN? Topic is solved
- Replies: 4
- Views: 120
Re: FileCopyDir: In- and Outputload on LAN? Topic is solved
Do you see the same traffic if you use a non-AHK approach? .... That's under "current research". The used time to copy something is approx. the same, so I think the load will be the same. I just heard that there are some "copy options" (for advanced user) - with and without verifying, something abo...