mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
5 lines
182 B
Plaintext
5 lines
182 B
Plaintext
function shellOpenExplorer(path) {
|
|
var _windir = environment_get_variable("WINDIR") + "/explorer.exe";
|
|
path = string_replace_all(path, "/", "\\");
|
|
execute_shell(_windir, path);
|
|
} |