Skip to main content
karlheinzk58923627
Participant
March 14, 2017
Answered

No blanks in user variables possible? FM2017, Version 14.0.0.361.

  • March 14, 2017
  • 1 reply
  • 268 views

Dear all,

Blanks at the beginning or ending of user variables seem not to be possible any longer.

They are removed automatically.

Character sets like "\sm" do not work either.

Does anybody have a clue?

    This topic has been closed for replies.
    Correct answer Lynne A. Price

    Karl,

        There is a workaround. You can assign a character format to all or part of a variable definition by putting the character tag in angle brackets where you want to apply it. You can undo the effect of that tag with </>.

        Suppose you want to define a variable to be an asterisk surrounded by spaces. Define a new character format called DoNothing that sets no properties. (It may be helpful to set all fields in the character designer to As Is with the Shift-F8 shortcut). Then define the variable to be:

               <DoNothing> * </DoNothing>

    --Lynne

    1 reply

    Lynne A. PriceCorrect answer
    Inspiring
    March 14, 2017

    Karl,

        There is a workaround. You can assign a character format to all or part of a variable definition by putting the character tag in angle brackets where you want to apply it. You can undo the effect of that tag with </>.

        Suppose you want to define a variable to be an asterisk surrounded by spaces. Define a new character format called DoNothing that sets no properties. (It may be helpful to set all fields in the character designer to As Is with the Shift-F8 shortcut). Then define the variable to be:

               <DoNothing> * </DoNothing>

    --Lynne

    karlheinzk58923627
    Participant
    March 14, 2017

    Hi Lynne,

    Your solution works fine. Thanks a lot!