Is it possible of how it is possible to use IF operator like this: if ("xx" OR "yy AND zz"?
Either only xx should be true or both yy and zz. I have trouble finding correct syntax.
a small question about scripting logic
Moderator: Martin
Re: a small question about scripting logic
if (xx OR (zz AND yy) == true)?
Re: a small question about scripting logic
If xx, yy and zz has the value true or false:
if (xx || (yy && zz))
else:
if (xx== "something" || (yy =="something" && zz=="something"))
Regards, Jarle
if (xx || (yy && zz))
else:
if (xx== "something" || (yy =="something" && zz=="something"))
Regards, Jarle