Answer the question
In order to leave comments, you need to log in
How to run another script?
Hello.
There is a script, it works properly, it has an if condition.
if (name == "Dell"){
}
if (name == "Core"){
}
Answer the question
In order to leave comments, you need to log in
if (name == "Dell"){
RunScript1();
}
else if (name == "Core"){
RunScript2();
}
switch(name)
{
case "Core": RunScript2(); break;
case "Dell": RunScript1(); break;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question