Catalog - as separate dialog

Features wanted...
Post Reply
Julian
Posts: 48
Joined: 16 Dec 2022 08:24

Catalog - as separate dialog

Post by Julian »

Hi think the catalog is an outstanding feature.

Can the catalog be displayed in an individual form which could serve as a launch bar.
It could be even the main form which opens up the browser dialogs, this means at start you only see the launch bar.

klownboy
Posts: 4459
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440

Re: Catalog - as separate dialog

Post by klownboy »

There are a few scripts on the forum which will convert the catalog entries to an SC inputselect menu. Try this short script as a UDC or a Customized Toolbar Button or try first from the top menu; Scripting > Run script...

Code: Select all

   $captions = catalogreport("• {Caption} •|:blank|","{Caption}|{Index}");
   $idx = inputselect(,replace($captions, "|", "||"),<crlf>, 1+128+1024+8192, , "250", "440", "Catalog Menu");   //increase the size of the box as needed to accommodate your entries
   $result = trim(gettoken($captions, $idx, <crlf>), "¶");
   $index = gettoken($result, -1, "|");
   catalogexecute $index;

Julian
Posts: 48
Joined: 16 Dec 2022 08:24

Re: Catalog - as separate dialog

Post by Julian »

Thank You, this is pretty cool and it works.
The problem is only that the created commands cannot be drag&drop destinations since this form is modal. I also loose my icons.

klownboy
Posts: 4459
Joined: 28 Feb 2012 19:27
Location: Windows 11, 25H2 Build 26200.8037 at 100% 2560x1440

Re: Catalog - as separate dialog

Post by klownboy »

All my items have an icon. When you look at your Catalog Properties box for your catalog items, does the "Caption" have an icon associated with it. Like this:
Drop to fixed Drive|<xyicons>\Download_16x16.ico or Keyboard Shortcuts|:cks. Yes, on the inputselect box being modal, I can't use the catalog items which are set for drag and drop.

Julian
Posts: 48
Joined: 16 Dec 2022 08:24

Re: Catalog - as separate dialog

Post by Julian »

I really hope this can be made - it would make the catalog even more useful.

Esspecially if that catalog form could be made "stay on top". Right now it is hard to use drag&drop from other applications because the whole XY needs to be on top.

highend
Posts: 14925
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Catalog - as separate dialog

Post by highend »

Right now it is hard to use drag&drop from other applications because the whole XY needs to be on top
While dragging move your mouse over the XY tray icon first, it will bring XY to the front to complete the drop
One of my scripts helped you out? Please donate via Paypal

Post Reply