Bug Can't use $COMMA in SetProperty
#1
As the title says possible bug?

Works:-
<label>test$COMMAtest</label>

Fails:-
SetProperty(my prop,test$COMMAtest,home)

The property is empty Sad
Reply
#2
What are you trying to achieve? I assume it's getting parsed so it ends up looking like this SetProperty(my prop,test,test,home) meaning there's too many values in there.
Reply
#3
(2021-08-21, 12:39)Hitcher Wrote: What are you trying to achieve? I assume it's getting parsed so it ends up looking like this SetProperty(my prop,test,test,home) meaning there's too many values in there.

Yep, I assumed the same, that it's being interpreted as a comma separator in the list of parameters and not as just a literal comma character like the $COMMA function is designed to do.

I even tried being sneaky using the character code, but still no go
SetProperty(my prop,test&#x002C;test,home)

No big deal I can store the strings in two separate properties and then add the comma later when I display it, it just means a bit more work and it seemed like a bug too me.
Reply

Logout Mark Read Team Forum Stats Members Help
Can't use $COMMA in SetProperty0