Code: Select all
<textentry id="txLoginPW" Acknowledge="true" Password="true">secret</textentry>
"Error in line 20 (Main.hws): Unknown attribute "Acknowledge" in line 10!"
Typo, or documentation mistake?
Code: Select all
<textentry id="txLoginPW" Acknowledge="true" Password="true">secret</textentry>
Code: Select all
<textentry id="Password_test" Notify="Acknowledge" Password="true">secret</textentry>It's not that confusing IMHO. Since some attributes can be used as setters, getters and listeners, it's impossible to install a listener by setting an attribute to TRUE just like GMKai has tried it because then it would be impossible to use it as a normal setter. Take Listview.Active for example. You can set it to a value but you can also listen to it. That's why you can't just set "active" to TRUE to listen to changes in the active item because setting the "active" attribute is reserved for setting the active item.