[Help anyone]
.winset "chatpane.title="Hello world""
My chat title didn't change from this point. I continued with the macro's and those didn't work either. Can someone explain where I go wrong?
Copyright © 2024 BYOND Software.
All rights reserved.
It looks like you need to escape those internal double-quotes, otherwise you're interrupting the overall string block and it can't parse the command properly. Try something like this:
.winset "chatpane.title=\"Hello world\""
I believe you can also use single-quotes inside:
.winset "chatpane.title='Hello world'"