Search found 13168 matches

by highend
04 Mar 2024 15:18
Forum: Other Software
Topic: LibreAutomate - windows macros in C#
Replies: 4
Views: 198

Re: LibreAutomate - windows macros in C#

Is there a reason why this should be preferred (over AHK / AutoIT)? I compiled a few small examples with it (requires an installed .NET 8.0 SDK to be able to do that), didn't run into major problems (and yeah, the linter in the GUI is nice). But I still don't know why I should learn C# if I don't ne...
by highend
04 Mar 2024 13:53
Forum: Tips & Tricks, Questions & Answers
Topic: Quick Search with Clipboard data?
Replies: 6
Views: 100

Re: Quick Search with Clipboard data?

Without the GUI? Via scripting. Within the GUI? Only with automation tools like AutoHotkey (requires coding as well).
by highend
01 Mar 2024 21:46
Forum: Bug Reports
Topic: When folder is hidden <pick> doesn't work correctly
Replies: 5
Views: 155

Re: When folder is hidden <pick> doesn't work correctly

Works (it shows a totally unrelated file :biggrin: )

=> D:\Users\Highend\Downloads\desktop.ini
by highend
01 Mar 2024 11:21
Forum: Tips & Tricks, Questions & Answers
Topic: Zip the file and ask for password in a single shortcut key?
Replies: 8
Views: 194

Re: Zip the file and ask for password in a single shortcut key?

Code: Select all

run lax("$rar" $opts "$dst\$base.zip" "<curitem>"), "%TEMP%";
Replace the original line
by highend
01 Mar 2024 10:35
Forum: Tips & Tricks, Questions & Answers
Topic: Zip the file and ask for password in a single shortcut key?
Replies: 8
Views: 194

Re: Zip the file and ask for password in a single shortcut key?

$dst = "E:\file done"; $rar = "C:\Program Files\WinRAR\WinRar.exe"; end (exists($rar) != 1), quote($rar) . <crlf 2> . "does not exist, aborted!"; end (!<curitem>), "No item selected, aborted!"; $drv = gettoken($dst, 1, ":") . ":\"; end (ex...
by highend
01 Mar 2024 07:10
Forum: Script Exchange
Topic: SFTP, rename, and move files
Replies: 2
Views: 110

Re: SFTP, rename, and move files

No. XY neither has an inbuilt (scripting) way to do things at a specific time automatically nor an sftp script command
by highend
01 Mar 2024 07:05
Forum: Tips & Tricks, Questions & Answers
Topic: Zip the file and ask for password in a single shortcut key?
Replies: 8
Views: 194

Re: Zip the file and ask for password in a single shortcut key?

Ofc this is not possible, XY doesn't support drag'n drop automation

You are free though to use input() and the winrar command line to do the same without a gui...
by highend
28 Feb 2024 19:30
Forum: Tips & Tricks, Questions & Answers
Topic: [SOLVED] Open 'Photo' application instead 'Windows viewer'
Replies: 5
Views: 102

Re: Open 'Photo' application instead 'Windows viewer'

Disable the belonging entry in the custom file associations?
by highend
28 Feb 2024 10:56
Forum: Tips & Tricks, Questions & Answers
Topic: How to search that should find any
Replies: 4
Views: 122

Re: How to search that should find any

That field can't automate anything. Use a conversion script (copy your space-separated search terms to clipboard and then run the script) Afterwards you can use CTRL+V to paste the necessary text into the field (the mode is selected automatically).... // Convert space-separated search terms to regex...
by highend
27 Feb 2024 21:06
Forum: Tips & Tricks, Questions & Answers
Topic: How to search that should find any
Replies: 4
Views: 122

Re: How to search that should find any

Mode = RegExp

and instead of delimiting your search terms via <space> use |
by highend
27 Feb 2024 08:31
Forum: Wishes
Topic: Linux version
Replies: 2
Views: 102

Re: Linux version

Use Wine. Otherwise: Chances are at about 1% (or less)