Hello,
I created a rule on prototype note called pPapers: if($checked=="true"){$Badge="ok";} else{$Badge="calendar";}. I have checked ‘enable’ on the rule pallet.
I added an attribute, ‘checked’ to the protype
I created notes and assigned the protype pPapers to them. However, whenever I check the checkbox, nothing changes.
The system attribute is named $Checked. (Almost every system attribute begins with a capital letter; the exceptions are all obsolete attributes you are very unlikely to use.). SO:
If unsure about the spelling, data type, etc., of system atributes, a list can be found here: System Attribute List.
Note that all attribute names (system and user) and action code operator names are case-sensitive (which is why $checked and $Checked are not the same in action code).
Also, in action code single or double quotes used to enclose text values must be of the straight form and not typographic (so-called ‘curly’). This is because the two types of quote characters may look similar to the eye but not to software code.