Search found 2738 matches

by jupe
07 Feb 2024 18:38
Forum: Tips & Tricks, Questions & Answers
Topic: Pasting Onto A Shortcut
Replies: 4
Views: 205

Re: Pasting Onto A Shortcut

You could try enabling this:

Configuration | Other | Shell Integration | Drag and Drop | [x] Extended compatibility for clipboard and drag and drop
by jupe
07 Feb 2024 08:44
Forum: Wishes
Topic: Middle-click on the Go Now Button Does Nothing
Replies: 20
Views: 579

Re: Middle-click on the Go Now Button Does Nothing

I assume this is actually a feature request, to make it open a new tab on MC.
by jupe
07 Feb 2024 02:30
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 234

Re: SC popupmenu question

There are multiple ways to achieve what you want, here is another one if you are still interested. function cb() { return <clp>; } $menu = <<<MENU Recase ::UPPER; copytext recase(cb(), "upper"); ::Invert;copytext recase(cb(), "invert"); MENU; $return = popupnested($menu, 6:=<crlf...
by jupe
06 Feb 2024 00:38
Forum: Bug Reports
Topic: SC gpc
Replies: 3
Views: 276

Re: SC gpc

I noticed that one of the examples in the latest help ver still includes "dos".
by jupe
06 Feb 2024 00:15
Forum: Tips & Tricks, Questions & Answers
Topic: SC popupmenu question
Replies: 6
Views: 234

Re: SC popupmenu question

Make sure the variable isn't resolved beforehand. eg.

Code: Select all

  $TestString = 'Value1<crlf>Value2';
  $menu = <<<MENU
  ::UPPER;copytext recase("$TestString")
  MENU;
  popupmenu($menu);
by jupe
05 Feb 2024 23:11
Forum: Tips & Tricks, Questions & Answers
Topic: Open Selected Items in New Background Tabs
Replies: 5
Views: 629

Re: Open Selected Items in New Background Tabs

tab("newb", getpathcomponent($entry, "path"));
by jupe
04 Feb 2024 03:48
Forum: Script Exchange
Topic: Tab changes
Replies: 4
Views: 307

Re: Tab changes

Yeah I thought you must use only 1 pane, I only mentioned it because if new users try using it, they may need help modifying it if they don't want the nav panel disappearing unexpectedly when on pane2.
by jupe
04 Feb 2024 00:33
Forum: Script Exchange
Topic: Tab changes
Replies: 4
Views: 307

Re: Tab changes

Does this work as you expect on Pane 2?, because the tabID's are per pane.
by jupe
28 Jan 2024 21:54
Forum: Bug Reports
Topic: Catalog Icon Sizing
Replies: 1
Views: 238

Catalog Icon Sizing

In the catalog, when creating toolbar buttons the internal icons are undersized slightly, in the screenshot below you can see the top item is a normal item with a caption/int.icon, the second is a toolbar button, and the third is a normal item with ext icon just for size comparison. I use 120dpi if ...
by jupe
27 Jan 2024 19:43
Forum: Bug Reports
Topic: 3 UI graphical issues
Replies: 14
Views: 931

Re: 3 UI graphical issues

I think the change for #3 (or something else recently) has affected SC input, it now seems to ignore the notes field, eg. input(, 1); The layout changes but no text is shown, I am 125% if relevant.
by jupe
24 Jan 2024 21:59
Forum: Tips & Tricks, Questions & Answers
Topic: Status column empty
Replies: 48
Views: 2381

Re: Status column empty

Not sure if it helps but these are possible statuses and icons in eng

2024-01-25_080743.png
2024-01-25_080743.png (7.3 KiB) Viewed 588 times
by jupe
24 Jan 2024 00:54
Forum: Tips & Tricks, Questions & Answers
Topic: Sync folders questions
Replies: 37
Views: 1753

Re: Sync folders questions

So this example was no help to you? // creates a new target folder every new day: sync "E:\XY\code\", "F:\bup\XY-code-<date yyyy>\<date yyyymmdd>\", 1, 0, 0, "ckn"; So in your case it would be something like this (after looking up the date variable in the help): sync &q...