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: v11.1 ** BETA ** (Updated 5-Apr)
« on: May 26, 2021, 12:02:34 »
Hi Mathias.

Can you tell me where I can download the zip installer for portable MultiCommander_x64_Update_(11.1.0.2782?

TIA
The beta is not available as a installer yet, Final should be ready soon. Only have a couple of minor things to fix before release.

OK.  Thanks for the update.

102
Beta Releases / Re: v11.1 ** BETA ** (Updated 5-Apr)
« on: May 25, 2021, 16:53:48 »
Hi Mathias.

Can you tell me where I can download the zip installer for portable MultiCommander_x64_Update_(11.1.0.2782?

TIA

103
Try:

Menu > Configuration > Explorer Panel Settings > Device Filtering Tab

Expand 'Explorer panel device dropdown'
Check 'Override default settings'
Uncheck 'Dropbox'

Any improvement?

104
Beta Releases / Re: v11.1 ** BETA ** (Updated 28-Mar)
« on: March 29, 2021, 12:16:02 »
Thanks for the new beta!

105
Feature Requests and Suggestions / Re: 4 Panels?
« on: March 25, 2021, 12:07:32 »
Nope.

106
Support and Feedback / Re: [BUG REPORT] MC 10.2.0.2745 GUI SIZE ERROR
« on: February 01, 2021, 11:07:32 »
Confirmed fixed in build 2759.

Thanks Mathias  :)

107
Support and Feedback / Re: [BUG REPORT] MC 10.2.0.2745 GUI SIZE ERROR
« on: January 28, 2021, 12:09:44 »
I can reproduce this.  Also in 10.3 (2751).

108
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

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

110
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  :)

111
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;

112
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?

113
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.

114
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  ;)

115
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  :)

116
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?

117
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...

118
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?

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

120
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).

121
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'.

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

123
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.

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

125
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.

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