mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 23:17:25 +01:00
4 lines
144 B
Text
4 lines
144 B
Text
|
function shellOpenExplorer(path) {
|
||
|
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
|
||
|
execute_shell_simple(_windir, path);
|
||
|
}
|