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.


Topics - AlanJB

Pages: 1 [2]
26
Support and Feedback / Enumerate Open Explorer tabs
« on: April 30, 2016, 18:08:39 »
Is there a way to Enumerate all open Explorer tabs?

For example, if I have (say) 6 open, locked tabs in the left panel and I want to unlock them all.

I have a Multi Script that works, but it relies on a fixed number of open tabs.

Alternatively, is there a way to close all tabs without being prompted to unlock each locked tab?

TIA

27
Support and Feedback / Repeat Error Messages in Log
« on: April 26, 2016, 19:29:28 »
My Logging Application level is currently set to "Debug".

Having cleared all logs before start-up, I see 54 entries in the log such as:
Code: [Select]
2016-04-26 18:12:18.417 FAILED to Create UI Interface. Wrong IID or invalid handle
2016-04-26 18:12:18.417 FAILED to Create UI Interface. Wrong IID or invalid handle

MC loads & initializes OK.  Any ideas what could be creating these entries?

TIA

28
Support and Feedback / MC.XChangeSettings Documentation
« on: April 26, 2016, 15:09:11 »
(Sorry if this belongs under "Script", but I thought of it as a request for Help & Support).

Could some kind soul please point me at the detailed online documentation for "MC.XChangeSettings"?

Searching the MC site and Google finds nothing...

TIA

29
Script / CopyFile has me Beaten
« on: April 21, 2016, 18:34:08 »
I am trying to write a hotkeyed command to copy the file in focus to the current path.  Can some kind soul please explain why this fails (the Debugger seems to have no issue with it)?

Code: [Select]
@var $file = GetSourceFocusPath();
@var $path = PathGetPathPart($file);
@var $name = PathGetNamePart($file, 1);
@var $ext = PathGetFileExtPart($file);
@var $copytext = $path + $name + " - Copy" + $ext;
CopyFile($path, $copytext);

30
Script / Select All Files matching the Date of File In Focus
« on: April 20, 2016, 10:41:22 »
I have been using MC for about 2 weeks now & got my head around the configuration and even written a couple of custom commands.
Now I am stumped after a couple of days of scripting failure.  I feel sure that what I want should be achievable with MultiScript, but I cannot get it to work.

I simply want to select all the files in the panel with a Last Modified Date that matches that of the file in focus.

Has anyone accomplished this or can give me some pointers?

TIA

Pages: 1 [2]