Let's have a Macro with a default value containing commas:
Code: Select all
Macro Comma(text="In fact, this macro is useless, isnt it?", number=410)
; any code
EndMacro
Code: Select all
Comma("my own text", 42
1.) Only the first part of the parameter is being highlighted.
2.) When typing the number, the text this macro is useless is highlighted instead of number=410.
I assume, the author works with StringField() to extract the parts... IMHO it'd be better to parse the text with a selfmade algorithm.