Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - AlanJB

Pages: 1 2 3 4 [5] 6 7 8 9 ... 18
101
Beta Releases / Re: v10.3 - BETA (Updated 26-Jan)
« on: January 28, 2021, 12:04:54 »
This page should help get yo started: http://multicommander.com/docs/commandlineparameters

102
Menu > Configuration > Explorer Panel Settings... > Display [tab], set the Keyboard Handling settings as per the image below.

103
This can be done with a User Defined MultiScript Command:  I call mine "Copy Left Tab Right Side" & assigned it to hotkey Ctrl+Right.

Code: [Select]
MC.SetActivePanel PANEL=LEFT;
@var $LeftFocus = StrReplace(GetSourceFocusPath(),"..","");
@var $LeftPath = PathGetPathPart($LeftFocus);

if ( IsFolder($LeftFocus) == 1 )
{
  $LeftPath = $LeftFocus;
}
MC.Explorer.NewBrowser PATH={$LeftPath} SIDE=RIGHT;
MC.SetActivePanel PANEL=RIGHT;

You can do a similar script for "Copy Right Tab Left Side" with:

Code: [Select]
MC.SetActivePanel PANEL=RIGHT;
@var $RightFocus = StrReplace(GetSourceFocusPath(),"..","");
@var $RightPath = PathGetPathPart($RightFocus);

if ( IsFolder($RightFocus) == 1 )
{
  $RightPath = $RightFocus;
}
MC.Explorer.NewBrowser PATH={$RightPath} SIDE=LEFT;
MC.SetActivePanel PANEL=LEFT;

I tested it, seems to work like a charm!
Thank you!

You're welcome  :)

104
This can be done with a User Defined MultiScript Command:  I call mine "Copy Left Tab Right Side" & assigned it to hotkey Ctrl+Right.

Code: [Select]
MC.SetActivePanel PANEL=LEFT;
@var $LeftFocus = StrReplace(GetSourceFocusPath(),"..","");
@var $LeftPath = PathGetPathPart($LeftFocus);

if ( IsFolder($LeftFocus) == 1 )
{
  $LeftPath = $LeftFocus;
}
MC.Explorer.NewBrowser PATH={$LeftPath} SIDE=RIGHT;
MC.SetActivePanel PANEL=RIGHT;

You can do a similar script for "Copy Right Tab Left Side" with:

Code: [Select]
MC.SetActivePanel PANEL=RIGHT;
@var $RightFocus = StrReplace(GetSourceFocusPath(),"..","");
@var $RightPath = PathGetPathPart($RightFocus);

if ( IsFolder($RightFocus) == 1 )
{
  $RightPath = $RightFocus;
}
MC.Explorer.NewBrowser PATH={$RightPath} SIDE=LEFT;
MC.SetActivePanel PANEL=LEFT;

105
Beta Releases / Re: v10.3 - BETA
« on: January 16, 2021, 12:24:12 »
Hi Mathias.

Just done a bit more testing and there is definitely a problem with Examples.zip.

As soon as MC 10.3 is opened, the Examples.zip (4.5kb) is immediately converted to the 49 byte broken .xml file, as per my reply #1, above.

Are you able to reproduce this, Mathias?

106
Beta Releases / Re: v10.3 - BETA
« on: January 11, 2021, 14:20:55 »
Hi Mathias.

Just done a bit more testing and there is definitely a problem with Examples.zip.

As soon as MC 10.3 is opened, the Examples.zip (4.5kb) is immediately converted to the 49 byte broken .xml file, as per my reply #1, above.

Also, the contents of FormatDate_Examples.udc and StringExamples.udc are identical apart from the #IDs.

107
Beta Releases / Re: v10.3 - BETA
« on: January 11, 2021, 13:46:25 »
I've just completed the "conversion" of 49 .mcs MultiScript files to .udc format & deleted the .mcs files.

All tested and working.  So about an hours work  ;)

108
Beta Releases / Re: v10.3 - BETA
« on: January 11, 2021, 12:45:09 »
Maybe the migration code should remove the .mcs file and convert it to a .udc, Then there would not be 2 files. But not so sure about that..

I think that might be a mistake.  It is not a great deal of work to copy-and-paste, overwriting the last line in each .udc.

OK - just tested.  It works fine  :)

109
Beta Releases / Re: v10.3 - BETA
« on: January 11, 2021, 12:12:17 »
Ehh YES.  Here is an example of the first .udc in the zip:
Code: [Select]
##########################################
#Name:Refresh Tab
#Type:multiscript
#ID:02037e64e6fa4aae9987c3080b77776e
#Desc:Refresh Current Explorer Tab
#Options:
##########################################

#file:Refresh Tab.mcs

As I said I, exported all my MultiScript sources to .mcs files in the Scripts directory.

Should I replace the files references in the last line of the .udc (as above) with the actual MultiScript sources?

110
Beta Releases / Re: v10.3 - BETA
« on: January 10, 2021, 11:21:17 »
eh that is strange..it should not be xml.

Yes, I was surprised!  I was able to extract Examples.zip from the portable installer.

OK - I see why I thought that MultiScripts could not be edited:  The .UDC files store only a reference to the (external) files my scripts are exported to.

Still can't see why the storage method was changed.  The rest of the app uses .xml config storage...

111
Beta Releases / Re: v10.3 - BETA
« on: January 09, 2021, 17:11:07 »
Hi Mathias.

Yesterday I updated my test environment (portable 64-bit) to 10.3 and there was an issue:  The Examples.zip file was created as a 49 byte (broken) xml file containing only

Code: [Select]
<?xml version="1.0" encoding="UTF-8"?>
<config/>

???

I would like to know your thinking behind the (big) change to scripts.  For example, it is now impossible to edit MultiScripts within MC?

112
Support and Feedback / Re: Huge fonts since last update
« on: December 11, 2020, 13:24:43 »
OK.  I guess I can live with it.

113
Support and Feedback / Re: Huge fonts since last update
« on: December 11, 2020, 11:56:34 »
In build 2743 the Device dropdown fonts are still too large for me (no DPI scaling).

114
Support and Feedback / Re: Return to root folder
« on: December 04, 2020, 15:43:46 »
This can be customized under: Menu > Configuration > Keyboard Customization > Module: 'Explorer Panel' > Category:'Module specific commands' then 'Go to the root of the drive'.

115
Support and Feedback / Re: Huge fonts since last update
« on: December 04, 2020, 11:35:20 »
100% and 1920x1080.

116
Support and Feedback / Re: Huge fonts since last update
« on: December 03, 2020, 11:38:19 »
Font size in Device dropdown is too large for me on Win7, and persists after restart.

117
Script / Re: Link to file in clipboard
« on: November 23, 2020, 11:05:47 »
Yes - I misunderstood - sorry.

118
Script / Re: Link to file in clipboard
« on: November 22, 2020, 16:47:33 »
The clipboard does not exist as a file system object (like a file or folder) so you cannot link to it.

"The clipboard" is a memory object dynamically created as it is needed.

119
Beta Releases / Re: v10.0 RC 2733
« on: October 27, 2020, 11:31:02 »
Hi Mathias.

Just installed build 2733 portable for testing.  The first 2 attempts to start the program crashed in Module MultiCommander.exe.

The crash IDs are:   10-J126DU and  10-U126KD
there is a 2735, start MultiUpdate.exe and update to 2735 and see if that works.

2735 fixed it.  Thanks Mathias  :D

120
Beta Releases / Re: v10.0 RC 2733
« on: October 26, 2020, 17:46:54 »
Hi Mathias.

Just installed build 2733 portable for testing.  The first 2 attempts to start the program crashed in Module MultiCommander.exe.

The crash IDs are:   10-J126DU and  10-U126KD

121
Support and Feedback / Re: Scenario where TabSession cannot be closed
« on: October 20, 2020, 10:50:09 »
I don't get the same behavior.

Why are you closing the tab session?

122
Support and Feedback / Re: Scenario where TabSession cannot be closed
« on: October 20, 2020, 00:21:48 »
By default MC will open the previous tab session layout.

What settings do you have under Configuration > Core Settings > Startup?

123
Support and Feedback / Re: Tab path changing all the time?
« on: October 13, 2020, 17:35:37 »
After a restart of MC, is the  "Lock Tab - allow subpath change" still ticked?

Do you have the setting  Menu -> Configuration -> Menu -> Explorer Panel Settings -> Menu -> Display -> Remember open path ticked?


124
Support and Feedback / Re: Tab path changing all the time?
« on: October 13, 2020, 15:44:25 »
Hi @dkabi.

Set up your 2 tabs to point to the correct paths, then right-click on each in turn and make sure "Lock Tab - allow subpath change" is ticked.

Does that work?

125
Support and Feedback / Re: Find Files
« on: September 27, 2020, 14:22:58 »
What version of MC?  Installed or portable?

Pages: 1 2 3 4 [5] 6 7 8 9 ... 18