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.


Messages - wind.stt

Pages: [1]
1
thank you, that will be great enhacement for Multi-Script, so, when will we able to try the version for that enhancement?

2
I try to write some User Commands by Multi-Script, it's fine to get the list of seleted files from source pane by GetSelectedPaths, but I cannot find out functions to get focused source file, focused target file, and list of seleted files from target pane.

I think below functions will be useful:

- GetSelectedSourcePaths: =GetSelectedPaths()
- GetFocusedSourcePath: return full path of current seleted file on source pane.
- GetSelectedTargetPaths: return array of seleted files from target pane.
- GetFocusedTargetPath: return full path of current seleted file on target pane.

And more multi-tag: ${focustargetpath}

3
I like to hide the menu bar as default, and show it when press <Alt>.
that will make the main screen look better.

4
Feature Requests and Suggestions / [Request] Thumbnail view mode
« on: July 28, 2011, 21:39:09 »
I think this feature is very useful.
I am not sure whether it is existing in this version or not.

5
Feature Requests and Suggestions / Re: New file shortcut...
« on: July 28, 2011, 21:32:02 »
I tried to do that, and following Multi-Script worked already

@var $strFile = AskText("File Name", "");
@var $strPath = "";

if ( IsTypeString($strFile) )
{
   $strPath = GetSourcePath() + $strFile;
   SaveStringToFile($strPath, "", 0);
   @var $strCmd = "C:\Program Files\Programmer's Notepad\pn.exe" < type the path of your editor instead >
   MC.Run CMD="{$strCmd}" ARG="{$strPath}"
}

Pages: [1]