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

Pages: [1]
1
Feature Requests and Suggestions / Multiline tabpanel
« on: December 06, 2019, 14:35:59 »
I ask for the possibility to have an option to be able to choose a multitab explorer like the one in the attached image.

2
Script / Execute a .BAT file for the selected files with some argument
« on: November 28, 2019, 15:12:03 »
I want to: "Execute a .BAT file for the selected files with some argument".
Here is the script i made:
Code: [Select]
@var $comp = "COMP-ACU2.bat";
@var $arr = GetSelectedFileNames();
@var $count = arrayCount($arr);
@var $n;
for( $n = 0; $n < $count; $n++ )
{
  @var $item;
  $item = PathGetNamePart( $arr[$n], 1 );
  MC.run CMD="COMP-ACU2.bat" ARG="{$item} DEBUG" SHELL;
}

But the line:
Code: [Select]
MC.run CMD="COMP-ACU2.bat" ARG="{$item} DEBUG" SHELL
Result in an error:
Code: [Select]
Script engine error - Line : 8, Error : -1 => Code : "MC.run CMD="COMP-ACU2.bat" ARG="{$item} DEBUG" SHELL"
Any ideas?

Pages: [1]