1
Beta Releases / Re: v16.0 Beta
« Last post by Pawel on Today at 11:43:15 »@Mathias (Author)
I would like to report that MC 16 beta breaks custom scripts/commands.
Configuration:
\UFM\MC\Config\CustomConfigPaths.xml
<CustomConfigPaths>
<ConfigFileRedirect>
<ConfigFile File="UserMenu.xml" Redirected="..\UFM\1045\UserMenu.xml" />
<ConfigFile File="QuickLaunch.xml" Redirected="..\UFM\1045\QuickLaunch.xml" />
<ConfigFile File="QuickLaunch2.xml" Redirected="..\UFM\1045\QuickLaunch2.xml" />
<ConfigFile File="CustomKeymappings.xml" Redirected="..\UFM\1045\CustomKeymappings.xml" />
</ConfigFileRedirect>
<AdditionalScriptFolders>
<ScriptFolder Name="UFM" Path="..\UFM\1045\Scripts" Recursive="1" />
</AdditionalScriptFolders>
</CustomConfigPaths>
1. File -> CustomKeymappings.xml
<keymap>
<map extid="" ctrl="0" udc="29e331d5dbe5444eabcdcb37ba409a6b" key="F1" keymod=""/>
<map extid="" ctrl="0" udc="985cf4f5c21d4014ac0382da45e3e3a0" key="F10" keymod="CA"/>
<map extid="" ctrl="0" udc="a568468079cb4dc5b5123487d908e891" key="F3" keymod=""/>
<map extid="" ctrl="0" udc="a568468079cb4dc5b5123487d908e892" key="F4" keymod=""/>
</keymap>
F10, F3, F4 shortcuts NOT working anymore!
Example F3 Action:
Log says:
2026-07-02 11:38:02.277 Script engine info => Variable "$i" created
2026-07-02 11:38:02.277 Script engine error => Variable "$text + '"' + $arr" not found
2026-07-02 11:38:02.277 Script engine error => Failed to process token - "$text"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2. Redirected xml files works fine (UserMenu.xml, QuickLaunch.xml, QuickLaunch2.xml) - but if you click on custom button that is connected with custom script (..\UFM\1045\Scripts) - script is not working, probably not called... so nothing happens.
Example button test (selecting few files on the list and pressing button that should call my app with parameters (those selected files).
Here is my multiscript:
@var $text = "";
@var $arr = GetSelectedPaths();
@var $cnt = arrayCount($arr)
for($i = 0; $i < $cnt; $i++)
{
if($i == 0)
{
$text = $text + '"' + $arr[$i] + '"';
}
else
{
$text = $text + " " + '"' + $arr[$i] + '"';
}
}
MC.Run CMD="${mcinstallpath}\..\AppManager.exe" STARTIN="${mcinstallpath}\..\" ARG="/OPEN {$text}"
Here is MC log:
2026-07-02 11:39:30.273 Script engine info => Variable "$i" created
2026-07-02 11:39:30.273 Script engine error => Variable "$text + '"' + $arr" not found
2026-07-02 11:39:30.273 Script engine error => Failed to process token - "$text"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
This is MAJOR issues. Please take a look at this. Everything was working in current MC 15.8
You can test it with latest UFM (https://www.dropbox.com/scl/fi/apwhkbpcdnr4aayrkq5bp/UFM_15.5.exe?rlkey=mfpor3adcqqglc28zaqlucjox&dl=1)
-Pawel
I would like to report that MC 16 beta breaks custom scripts/commands.
Configuration:
\UFM\MC\Config\CustomConfigPaths.xml
<CustomConfigPaths>
<ConfigFileRedirect>
<ConfigFile File="UserMenu.xml" Redirected="..\UFM\1045\UserMenu.xml" />
<ConfigFile File="QuickLaunch.xml" Redirected="..\UFM\1045\QuickLaunch.xml" />
<ConfigFile File="QuickLaunch2.xml" Redirected="..\UFM\1045\QuickLaunch2.xml" />
<ConfigFile File="CustomKeymappings.xml" Redirected="..\UFM\1045\CustomKeymappings.xml" />
</ConfigFileRedirect>
<AdditionalScriptFolders>
<ScriptFolder Name="UFM" Path="..\UFM\1045\Scripts" Recursive="1" />
</AdditionalScriptFolders>
</CustomConfigPaths>
1. File -> CustomKeymappings.xml
<keymap>
<map extid="" ctrl="0" udc="29e331d5dbe5444eabcdcb37ba409a6b" key="F1" keymod=""/>
<map extid="" ctrl="0" udc="985cf4f5c21d4014ac0382da45e3e3a0" key="F10" keymod="CA"/>
<map extid="" ctrl="0" udc="a568468079cb4dc5b5123487d908e891" key="F3" keymod=""/>
<map extid="" ctrl="0" udc="a568468079cb4dc5b5123487d908e892" key="F4" keymod=""/>
</keymap>
F10, F3, F4 shortcuts NOT working anymore!
Example F3 Action:
Log says:
2026-07-02 11:38:02.277 Script engine info => Variable "$i" created
2026-07-02 11:38:02.277 Script engine error => Variable "$text + '"' + $arr" not found
2026-07-02 11:38:02.277 Script engine error => Failed to process token - "$text"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:38:02.277 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2. Redirected xml files works fine (UserMenu.xml, QuickLaunch.xml, QuickLaunch2.xml) - but if you click on custom button that is connected with custom script (..\UFM\1045\Scripts) - script is not working, probably not called... so nothing happens.
Example button test (selecting few files on the list and pressing button that should call my app with parameters (those selected files).
Here is my multiscript:
@var $text = "";
@var $arr = GetSelectedPaths();
@var $cnt = arrayCount($arr)
for($i = 0; $i < $cnt; $i++)
{
if($i == 0)
{
$text = $text + '"' + $arr[$i] + '"';
}
else
{
$text = $text + " " + '"' + $arr[$i] + '"';
}
}
MC.Run CMD="${mcinstallpath}\..\AppManager.exe" STARTIN="${mcinstallpath}\..\" ARG="/OPEN {$text}"
Here is MC log:
2026-07-02 11:39:30.273 Script engine info => Variable "$i" created
2026-07-02 11:39:30.273 Script engine error => Variable "$text + '"' + $arr" not found
2026-07-02 11:39:30.273 Script engine error => Failed to process token - "$text"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
2026-07-02 11:39:30.273 Script engine error - Line : 8, Error : -1 => Code : "$text = $text + '"' + $arr[$i] + '"'"
This is MAJOR issues. Please take a look at this. Everything was working in current MC 15.8
You can test it with latest UFM (https://www.dropbox.com/scl/fi/apwhkbpcdnr4aayrkq5bp/UFM_15.5.exe?rlkey=mfpor3adcqqglc28zaqlucjox&dl=1)
-Pawel
Recent Posts