Trying to write a prepend entered text button.
which works but will not include trailing spaces. (unless explicity placed in the RENAME, which you might want sometimes but not other times, writing two separate buttons solves this)
@set text={dlgstringS|Please enter some text\nThen click OK}
@output:{$text} {=Len($text)=}
this just shows that trailing spaces are being removed.
Documentation does not mention trailing spaces.
appreciate the help but these do not work Rename PATTERN="*" TO "{=Left($text, Len($text) - 1)=}"* Rename PATTERN="*" TO "{=Left($text, Len($text) - 1)=}*" Rename PATTERN="*" TO {"=Left($text, Len($text) - 1)="}* Rename PATTERN="*" TO {="Left($text, Len($text) - 1)"=}* Rename PATTERN="*" TO {=""" + Left($text, Len($text) - 1) + """=}* Rename PATTERN="*" TO {="""Left($text, Len($text) - 1)"""=}*
any ideas ?