I'm curious what is the reason why 1 + 32 will not generate the same result as 32 + 1 in the scripting "msg" command for the button_icons as it is a bitwise syntax?
Thank you
Code: Select all
msg , 32+1; msg , 1+32; msg , 33; msg , 29+4;Code: Select all
msg , "32+1"; msg , "1+32";Code: Select all
msg $NameStatus . " entire folder structure for <br><br>'$TypeFind'<br><br>Proceed?", 1 + 32);Code: Select all
msg $NameStatus . " entire folder structure for <br><br>'$TypeFind'<br><br>Proceed?", 32 + 1);Good catch!You have an incorrect closing parenthesis, remove the )