Search found 49 matches
- 14 Oct 2024 03:06
- Forum: Script Exchange
- Topic: BranchView with Thumbnails separated like digikam
- Replies: 1
- Views: 1353
BranchView with Thumbnails separated like digikam
I just needed it generates upper row , lower row and filler elements "_ : gen_fillers"{ // <--- select folders to generate seperators then execute $folders = sel_files(); foreach $folder, $folders { $per_row = 8; // <--- set how much items are per row // create files row $sep_f_count = lis...
- 09 Oct 2024 04:46
- Forum: Wishes
- Topic: Lock Icon for Locked Tabs
- Replies: 11
- Views: 1852
Re: Lock Icon for Locked Folders
Code: Select all
"tab_lock_n_icon"
$caption = tab("get", "caption");
$icon_path = "path\to\icon";
tab("lock");
tab("rename","$caption|$icon_path")
- 05 Oct 2024 13:12
- Forum: Other Software
- Topic: XYplorer of TabManagement
- Replies: 1
- Views: 1574
XYplorer of TabManagement
"Link Map" is is like a Bookmark and Tab Manager in one .
Organize Tabs in a Tree structure + create Folders / notes .
ex/import as json
makes managing the internet a lot easier
Organize Tabs in a Tree structure + create Folders / notes .
ex/import as json
makes managing the internet a lot easier

- 30 Sep 2024 09:25
- Forum: Script Exchange
- Topic: XYplorer and Python (portable installation)
- Replies: 4
- Views: 2940
Re: XYplorer and Python (portable installation)
just my two cents , you can run any python script via venv like : $response = runret(lax("cmd" /c "D:\path\to\_venv_312\Scripts\activate.bat && python D:\path\to\file.py function "$argument"")) and inside the py file you fetch the function and $argument via : if...
- 29 Jul 2024 16:22
- Forum: Tips & Tricks, Questions & Answers
- Topic: Selection
- Replies: 2
- Views: 968
Re: Selection
1) i am sure there is no such function yet... you can archieve this via scripting : - sort by date - create dummy files (yesterday , today , weekago etc) - via timestamp function set the the timestamps of those dummy files accordingly - now your list is visually "separarated" - to kinda si...
- 23 Jun 2024 14:46
- Forum: Wishes
- Topic: more intuitive naming ...
- Replies: 0
- Views: 7198
more intuitive naming ...
Just dropping some thoughts for simplifying XY : Instant Color Filter -rename-> Highlighter (Highlighter Icon ) Color Filter -rename-> Global Highlighter (Highlighter Icon with small globus ) Visual Filter Power Filters -rename-> Visual Filter Presets Global Filter -rename-> Global Visual Filter Glo...
- 22 Jun 2024 14:24
- Forum: Reviews
- Topic: XY subreddit
- Replies: 15
- Views: 4355
Re: XY subreddit
i would have needed XY when i was running a shop , but i did not know something like this existed. i stumbled upon XY while browsing a warez site , XY caught my attention because of the many "buttons" in the preview image ... that's when i started digging further. Considering expanding the...
- 18 Jun 2024 12:12
- Forum: Other Software
- Topic: How do you make 16x16 icons?
- Replies: 7
- Views: 2993
Re: How do you make 16x16 icons?
this script works for me : imagick == imagemagick.exe $output = $source_wo_ext . ".ico"; run lax("cmd /c ""$imagick" convert -background transparent "$source" -define icon:auto-resize=16,32,48,256 "$output"""); or if you prefer an app , use...
- 11 Jun 2024 21:18
- Forum: Wishes
- Topic: Status Bar to the Top ?
- Replies: 0
- Views: 7028
Status Bar to the Top ?
it would certainly safe eye and mouse movement if all main control elements would be at the top .
pic related
pic related
- 06 Jun 2024 03:59
- Forum: Wishes
- Topic: Display image preview of archives
- Replies: 15
- Views: 6338
Re: Display image preview of archives
Awesome! Thanks for the work Don. In case anyone is reading this in the future, I had to make two changes to my settings in addition to the "ThumbsExtraExtensions" entry to get it working for zip/rar. Make sure the extensions you want thumbnailed are listed in "Thumbs64Ext" in y...
- 15 Apr 2024 21:52
- Forum: Tips & Tricks, Questions & Answers
- Topic: How to show neighbor computers under "Network"?
- Replies: 3
- Views: 1578
Re: How to show neighbor computers under "Network"?
Do they appear in Windows explorer ? sometimes they just dont show up , even if manual/cli access works .
- 11 Apr 2024 01:06
- Forum: Tips & Tricks, Questions & Answers
- Topic: report() stopped working !?
- Replies: 7
- Views: 1177
Re: report() stopped working !?
thx @ all
to make the my whole function work, i had to :
1. deactivate the CEA before browsing a folder
2. create a sparate .xys file for my function
all boiling down to make report() execute correctly...
to make the my whole function work, i had to :
1. deactivate the CEA before browsing a folder
2. create a sparate .xys file for my function
all boiling down to make report() execute correctly...

- 10 Apr 2024 23:00
- Forum: Tips & Tricks, Questions & Answers
- Topic: report() stopped working !?
- Replies: 7
- Views: 1177
Re: report() stopped working !?
still the same result...
on a fresh install it works as intended .
seems a problem on my part , too many customizations and yet, very strange that only within a loop it malfunctions
on a fresh install it works as intended .
seems a problem on my part , too many customizations and yet, very strange that only within a loop it malfunctions

- 10 Apr 2024 21:29
- Forum: Tips & Tricks, Questions & Answers
- Topic: report() stopped working !?
- Replies: 7
- Views: 1177
Re: report() stopped working !?
i narrowed it down to : "_ : loop_script" echo report(); // <-- executes successfully $paths = sel_files(); foreach($path, $paths) { goto "$path"; // it goes to the first folder ... echo report(); //... and stops here } within the foreach loop , it simply does not work
- 07 Apr 2024 20:50
- Forum: Tips & Tricks, Questions & Answers
- Topic: report() stopped working !?
- Replies: 7
- Views: 1177
report() stopped working !?
i noticed it 2023 08 , didnt bother , disabled it in my workflow, now i would like to utilize it again in my scripts , but any function call results in error ... report() echo report(,1) echo report(,0) Error: 28 (0x0000001C) Desc: Out of stack space Dll: 0 Proc: script_Process: call Source: XYplore...