Need some help here
Need some help here
I want to set “No lock” when my variable contains 1 in order to display this label
TrianguloY Pierre Hébert
]]>« Is there a method of opening/closing floatingdesktop by the script? (Previous Post)
(Next Post) 09.29.15 »
< ![CDATA[
$Nlock == 1? “No Lock” : “Something else”
]]>
< ![CDATA[
Abdullah Alahdal Thank you 🙂
]]>
< ![CDATA[
Or use the return keyword (needed if you need more than one statement):
if ($Nlock == 1) return “No Lock”; else return “Something else”;
]]>