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 - em

Pages: [1]
1
Support and Feedback / Ctrl + Click behavior
« on: May 05, 2013, 22:19:11 »
Let's say the file A has focus, when I hold [Ctrl] key and click on file B, now only the file B is selected, but the more natural and standard behavior would be to both files be selected.

All the best,
Em

2
Support and Feedback / Execute items programmatically
« on: May 02, 2013, 04:12:40 »
Is there any way to execute an item programmatically in MultiScript, that takes into account the "File Type Setup"?

Something like MC.View or MC.Edit but for Launcher (Run/Open).

Regards,
Em

3
Custom commands SelectAll and UnselectAll don't work in v3.1 (b1401)

Please note: it's about Custom Commands, not Internal Commands

To substitute these, I'm using MC.Explorer.Selection.Unselect FILTER="*"

Regards,
Em

4
Hello,
 
I have a question/feature request regarded to the execution of the files / folders.
When I select several files and I double-click another one, I see that all of them are transferred to the associated program and executed in one command, but if the program doesn't support opening multiple files on a single command (most of them), I will see just the first selected file opened in that program.
 
I would like to be able to open just the focused item on a double-click (or when I press the Enter key).
I've made a multiscript and associated it to the mouse double-click action, but it doesn't work with the defined associations in MultiCommander nor when I press the Enter key, which I can't redefine:
 
@var $file = GetSourceFocusPath();
if (IsFolder($file))
{
   MC.Explorer.Goto SOURCE={$file}
}
else
{
   MC.Run CMD={$file} SHELL

 
Is this the desired behavior and can this be made configurable?
 
Thank you!

5
Hello, It would be useful to have a MoveFile function in MultiScript, like the CopyFile one (<num> CopyFile(<str> targetPath, <str> sourceFile, <string> options); ).

I tried to use the rename function, but it doesn't allow to change the file's path.

Regards.

Pages: [1]