Multi Commander > Feature Requests and Suggestions

Synchronized Browsing

<< < (2/2)

webguide:
Well, I understand your reasons. Just look at the number of views for this topic. I believe it means that people really wants Syncronized Browsing.  ;)

ice-man:
Going after number of view to add a feature or not is not a good idea.. might just be you that have reloaded the page 100 times. :)

Anyway.  You can actually do sync browsing using MultiScript..

Create a command of MultiScript type and then assign a hot key to it..like shift+return.


--- Code: ---@var $sourceFocusPath = GetSourceFocusPath();
@var $targetPath = GetTargetPath();
@var $name = PathGetNamePart($sourceFocusPath);
@var $newTargetPath = $targetPath ^ $name;

// Make sure that the source item is a folder
if( IsFolder($sourceFocusPath) )
{
  // Make sure that the new target path exists and is a folder
  if(FileExists($newTargetPath) == 2)
  {
     MC.Explorer.Goto SOURCE="{$sourceFocusPath}" TARGET="{$newTargetPath}"
  }
}
--- End code ---

Navigation

[0] Message Index

[*] Previous page

Go to full version