1
Support and Feedback / Re: Switching Windows
« on: January 19, 2025, 12:44:08 »@wynford
Try the following.
1. Configure Right panel as you wish with default ("starting") tab selected
2. Configure Left panel as you wish with default ("starting") tab selected
3. Menu -> File -> Tab and choose "Save tabs to file..."
4. In the dialog that opens choose "Save All Tabs" and click "Save"
5. Create a new MultiScript UDC as below - bind it to a hotkey and/or add to a menu if you wish
Code: [Select]
// Reload Default Tab Layout
@var $xTabFile = "${mcconfigpath}" + "\\MultiCommander Tab Config.mctab";
MC.CloseAllTabs DONOTASK;
MC.LoadTabs REPLACE FILENAME={$xTabFile};
MC.SetActiveTab PANEL=RIGHT TAB=1;
MC.SetActiveTab PANEL=LEFT TAB=1;