It seems that for some reason Hyperlink's action and tooltip are cut at the first | character.
I'm running the following code from command input box, doing that in a separate script file have exactly the same behaviour:
\\\k="echo A|B|C";Hyperlink(k, k, k, "cyan", "blue", false, false);Note()
\\\ is lua script prefix for command line in client settings.
As expected it shows "A|B|C" with cyan on blue, however
mouse tooltip shows only "echo A" and if I click the hyperlink it will only send "echo A" command.
I've tried to escape '|' as
k="echo A\\|B"
k="echo A||B"
k="echo A%|B"
It displays hyperlink as expected but the tooltip and action are still cut at first |
Any ideas how to workaround that?
I'm running the following code from command input box, doing that in a separate script file have exactly the same behaviour:
\\\k="echo A|B|C";Hyperlink(k, k, k, "cyan", "blue", false, false);Note()
\\\ is lua script prefix for command line in client settings.
As expected it shows "A|B|C" with cyan on blue, however
mouse tooltip shows only "echo A" and if I click the hyperlink it will only send "echo A" command.
I've tried to escape '|' as
k="echo A\\|B"
k="echo A||B"
k="echo A%|B"
It displays hyperlink as expected but the tooltip and action are still cut at first |
Any ideas how to workaround that?