Script(Ver2.11対応版)
IndexScriptグローバルのメソッドGlobal method

Global method
You can write as it is without writing an object.

Method(General)
createObject
echo
message
question
input
prompt
beep
endMacro
command
contextMenu
backgroundContextMenu
sendTo
selectAll
cut
copy
paste
pasteLink
rename
renameReplace
open
getWildcard
refresh
getClipboard
setClipboard
getDirectory
setDirectory
addBookmark
getFocusTarget
getKeyState
expandFolder
sleep
getClipboardFiles
isClipboardFormatAvailable
menu
menuArray
getSpaceSelectMode
setSpaceSelectMode
getArg
findWindow
findWindowEx
getWindow
isWindowVisible
isWindow
getWindowText( numHwnd )
Like GetWindowText of Win32API.
getCurrentWindowHandle()
Get current window handle.
getStaticVariable( strName [, numOption ] )
Get static variable.
setStaticVariable( strName, strData [, numOption ] )
Set static variable.
setAttentionBar( str )
Set the attention bar contents.(V1.76)
browseFile( str1 [, str2] )
Show browse file dialog.(V1.78)
str1 is the directory.
str2 is the wildcard.
The return value is the string entered.
loadTextFile
loadDll( str )
Loads the DLL equivalent of Hidemaru Editor's loaddll.(V1.56)
Return the DllFuncManager object.
Method(File list)
getView()
Get View value.
0:Details 1:List 2:Icon 3:Tile 4:Thumbnails
setView( num )
Set View by value.
0:Details 1:List 2:Icon 3:Tile 4:Thumbnails
sort( num1 or str1 [,num2] )
Do sorting.

When specifying numerically with num1:
0: Name 1: Size 2: Type 3: Update date and time

When specifying string with str1:
"name" / "size" / "type" / "date"
Or column name (property name).

num2 is the sort direction.
0: Reverse 1: Ascending 2: Descending
If num2 is specified and str1 is specified as "", the current sort column is targeted. (V1.01)
getItemCount()
Return the count of items in the file list.
getSelectedCount()
Returns the selected item count.
getNextItem( num1, num2 )
Returns the index of the next item that corresponds to the status flag specified by num2.
If num1 is -1, the first hit is returned.
If num1 is 0 or more, the next hit at the specified index is returned.
Example:
First selection item : iSel = getNextItem(-1, 2);
First focus item : iFocus = getNextItem(-1, 1);
getItemState( num )
Returns the status flag of the item at index num.
Bitwise OR of the following values
0x01: Focused, 0x02: Selected, 0x04: New file (when the color setting is valid)
getItemText( num1 [, num2] )
Returns the text of the item at index num1.
num2 is a subitem. (optional).
getItemPath( num )
Returns the path of the item at index num.
isFolder( num )
Returns whether the index item of num is a folder.
getColumnCount()
Returns the count of columns in details view.
getColumnText( num )
Returns the column item name (name of property) of the details view of the index of num.
selectItem( num1 or str1 [, num2] )
When string is specified in str1:
It behaves the same as the "Find and Select ..." command.
Search and select after the current focus.
If multiple items hit, select in order.
Clear the selection when it is the last item.
If num2 contains 0x02, select the exact match item including the extension, not the same as the "Find and Select ..." command.
num2 specifies the method to select. (Bitwise OR of the following values)
0x01: Add selection
0x02: Perfect match to the file name (even if the extension is not displayed) (V1.01)
0x10: Do not target files (V 1.42)
0x20: Do not target folder (V 1.42)
In the case of wildcards in str1:
In the case of wildcard specification, multiple selection with wildcards.
num2 specifies the method to select. (Bitwise OR of the following values)
0x01: Add selection
0x10: Do not target files (V 1.42)
0x20: Do not target folder (V 1.42)
In case of numeric specification with num1:
Selection of index specification.
num2 specifies the method to select.
0x01: Add selection
customFileList( strFileName )
Outputs the contents of the text file to the file list as search results.(V1.54)
getThumbnailSize( numType )
Get thumbnail size.(V1.54)
If numType is 0, default size.
If numType is 1, each folder size.
setThumbnailSize( numSize, numType )
Set thumbnail size.(V1.54)
numSize is thumbnail size.
If numType is 0, default size.
If numType is 1, each folder size.
Method(Tab)
getTabBarCount()
Gets the count of tab bars. (V1.01)
It is not tab mode when 0. Tab mode is 1 or more. When the tab is splitted, it becomes 2 or more.
getTabCount( [num] )
Gets the count of tabs. (V 1.03)
If split, num specifies which split. Count left / top split from 0.
If you specify -1 as num, it returns the count of tabs of the split currently in focus.
If you specify -2 for num, it returns the count of tabs that totaled all splits.
If omitted, it is the same as -2.
getTabState( num1, num2 )
Gets the state of the tab. (V1.04)
num1 is the tab number.
The tab number is the serial number of all splits, counting from zero.
num2 specifies the type of return status.
0 is the lock status, 1 is the close prohibition status, and 2 is the parent path for each tab (if it is set).
getCurrentTab( [num] )
Gets the number of the currently active tab. (V 1.03)
If split, num specifies which split. Count left / top split from 0.
If you specify -1 as num, it returns the index number of tab of the split currently in focus.
If you specify -2 for num, it returns the index number of tab that totaled all splits.
If omitted, it is the same as -2.
getTabName( num1 [, num2] )
Gets the name of the tab specified by num1. (V1.28)
The tab number is the serial number of all splits, counting from zero.
Specify 1 in num2 to get the tab path. (V1.46)
setTabName( str, num1 )
Sets the name of the tab specified by num1. (V1.54)
setActiveTab( num )
Activate the specified tab. (V1.28)
The tab number is the serial number of all splits, counting from zero.
closeTab( num )
Closes the specified tab. (V 1.42)
The tab number is the serial number of all splits, counting from zero.
It will fail for locked tabs.
In the case of the last one tab, it fails.
If it is not locked, 1 is returned. If it is locked, 0 is returned.
closeOtherTab()
Close all other tabs.
It also closes the locking tab.