Author Topic: How to add Favorite Pairs  (Read 177 times)

commander

  • Junior Member
  • **
  • Posts: 22
    • View Profile
How to add Favorite Pairs
« on: May 16, 2024, 02:50:08 »
 Sometimes two folders are related, and they are only used when both sides are open. Is there a way to create a folder pair

Jungle

  • Contributor
  • VIP Member
  • *****
  • Posts: 515
  • Old Skull
    • View Profile
Re: How to add Favorite Pairs
« Reply #1 on: May 16, 2024, 07:34:21 »
If I got you right, you can do it via Custom commands. E.g. write MultiScript or use Internal Commands directly.
For example:

Code: [Select]
@var $path1 = 'c:\temp'
@var $path2 = 'c:\temp\22'

MC.Explorer.NewBrowser PATH="{$path1}" SIDE=LEFT
MC.Explorer.NewBrowser PATH="{$path2}" SIDE=RIGHT

Then you can bind that custom command to a button on the button panel or to a hotkey, or put it to a quicklaunch bar

commander

  • Junior Member
  • **
  • Posts: 22
    • View Profile
Re: How to add Favorite Pairs
« Reply #2 on: Today at 08:03:15 »
Thank for leading me to the whole new world. I didn't know Multi Commander is that customizable.
Is there an easy way to "activate a tab if it exists or create a new one"? Or I have to write a script to check every tabs before create it?
« Last Edit: Today at 08:37:56 by commander »