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

Pages: [1]
1
Support and Feedback / Internal Picture Viewer background
« on: March 09, 2018, 23:18:04 »
Hello,
it is possible to change the background in the Internal Picture Viewer?

Default is 45° grid, which is not very comfortable for transparent background images...

Best regrads
Lukas

2
Script / Create hard link
« on: December 26, 2015, 23:35:11 »
Hello,
I try to create a hard link to a file using script, but it doesn't do anythink. Can someone look at where I am wrong, please?
Thank you
Lukas

Code: [Select]
@var $selectedPaths = GetSourceSelectedPaths();
@var $targetPath = GetTargetPath();
//LogDumpArray($selectedPaths);
//LogDump($targetPath);

@var $sourcePathParts = StrSplit(PathGetPathPart($selectedPaths[0]), "\\");
@var $targetPathParts = StrSplit($targetPath, "\\");

//LogDumpArray( $sourcePathParts );
//LogDumpArray( $targetPathParts );

@var $counts = arrayCount($sourcePathParts);
@var $countt = arrayCount($targetPathParts);
@var $count = $countt;
if ($counts < $countt)
{
  $count = $counts;
}

@var $i;
for( $i = 0; $i < $count; $i++ )
{
  @var $cmp = StrIsEqualNoCase($sourcePathParts[$i], $targetPathParts[$i]);
  if ($cmp == 0)
  {
    break;
  }
}

@var $diffInx = $i;

@var $sourcePathRel = ".";
if ($i == 0)
{
  $sourcePathRel = $sourcePath;
}
else
{
  for( $i = $diffInx; $i < $counts; $i++ )
  {
    $sourcePathRel += "\\" + $sourcePathParts[$i];
  }

  $sourcePathRel = StrTrimLeft($sourcePathRel, ".\\");
}

@var $targetPathRel = ".";
if ($i == 0)
{
  $targetPathRel = $targePath;
}
else
{
  for( $i = $diffInx; $i < $countt; $i++ )
  {
    $targetPathRel += "\\" + $targetPathParts[$i];
  }

  $targetPathRel = StrTrimLeft($targetPathRel, ".\\");
}

//LogDump($sourcePathRel);
//LogDump($targetPathRel);

$count = arrayCount($selectedPaths);
for( $i = 0; $i < $count; $i++ )
{
  @var $file = PathGetNamePart($selectedPaths[$i]);
  @var $sourceFile = $sourcePathRel ^ $file;
  @var $targetFile = $targetPathRel ^ $file;
  //LogDump($sourceFile);
  //LogDump($targetFile);
  MC.Utils.CreateLink ASADMIN LNKSRC="$sourceFile" LNKTRG="$targetFile" LNKTYPE=1
}

3
Hello,

when I have opened some folder in MC (ie. D:\Test\Test1) and any other program wants to delete this folder or directory in higher level (ie. D:\Test), program throws an exception, that folder is used.
I tried this scenario with Explorer and there is no problem (path is updated to the first existing directory).

Is there any possibility to change directory access rights in MC like in Explorer?

Thanks Lukas.



4
Support and Feedback / Pack selected files crash
« on: January 28, 2013, 21:42:28 »
Hello,
I have a zip file in a folder located D:\Test\pack.zip (zip contains one directory and one file).
Unpack this file to the folder D:\Test\pack\ (Source).
Then select everything in this new folder and pack (Alt + F5) and pack into file D:\Test\pack.zip (ie, identical to the original file).
Message with question to ovveride existing files confirm by Replace All and Error message is displayed (File xxx is not found). Skip All, then Cancel = crash.

Tested on:
    Beta version v3.0 (build 1330)
    v2.8.1 (build 1275)

Best Regards Lukas

5
Support and Feedback / Focused tab color
« on: January 14, 2013, 12:26:17 »
Hello,
I would like to ask whether it is possible to change the color of the focused tab (MultiCommander.xml?)?
In core settings I found only "Allow Tab Colors", but this setting seems a few significant.

Thank you for answer and for the best file manager.
Lukas

Pages: [1]