ShellExecute(operation, file, param, directory)
ShellExecute()
Parameters
operation : 실행옵션을 입력합니다.
file : 파일이름을 입력합니다.
param : 파라미터를 입력합니다.
directory : 디렉토리를 입력합니다.
Return Value
value
Remarks
-- lua
ShellExecute("open", "notepad.exe", "note.txt", "")
// javascript
-- lua
ShellExecute("open", "notepad.exe", "note.txt", "");
####
Examples
-- lua
function _onmousedown()
ShellExecute("open", "notepad.exe", "note.txt", "")
end
// JavaScript
function _onmousedown()
{
ShellExecute("open", "notepad.exe", "note.txt", "");
}