mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2025-01-26 04:48:17 +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);
|
||
|
}
|