mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-13 14:03:56 +01:00
4 lines
144 B
Plaintext
4 lines
144 B
Plaintext
|
function shellOpenExplorer(path) {
|
||
|
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
|
||
|
execute_shell_simple(_windir, path);
|
||
|
}
|