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

Pages: [1]
1
After rewriting the new version in the same folder with the version of Multi Commander, I have lost the settings: color panels, scripts, custom commands, a button on the Quick Launch ...
Maybe it makes sense for the portable version stores all the settings in a special separate folder? Also, if a portable version available in two versions (win32 and win64), how to make them the same settings?
It seems to me logical to make a universal boot loader which will run the program desired bit. Or make a different name, as is done in ConEmuPack.

2
Script / Script engine error
« on: November 12, 2015, 02:05:07 »
Script engine error => No matching function with name "AddFileAttribute" found.

Not found:
  • AddFileAttribute()
  • SetFileAttribute()
  • GetFileAttribute()
  • PathGetPathPart()
  • PathGetNamePart()
  • and etc.

need import the desired function?

3
Script / View *.FB2.ZIP
« on: October 22, 2015, 04:29:06 »
I have a lot of books in a format *.fb2. To save disk space, all the books are stored in zip-archives. Therefore, my books have a double extension *.fb2.zip.
To read books using SumatraPDF, without unpack them from the archive.
Conventional zip-archives handle standard way.

Code: [Select]
@var $RunCMD = "SumatraPDF.exe"
@var $file_nm = GetSourceFocusPath();
@var $fb2zip = StrIsRegExpMatchNoCase( $file_nm, ".FB2.ZIP$");
if ( $fb2zip > 0 )
{
   MC.Run CMD='"{$RunCMD}"' ARG='"{$file_nm}"';
}
else
{
   MC.DataViewer.View FILE="${focusfilepath}" BINARY;
}

How to assign F3 to run this script?

Pages: [1]