So, simple concept… I have User First Name and User Last Name. I want to put the first name followed by the last name’s first initial into an input box (eg. John Smith -> John S).
I am able to :append the first and last name, but I came across a problem where if I :truncate it does the command on the whole result.
CurrentUser’s FirstName:append :append CurrentUser’s LastName:Truncated to 1 gives “J”.
So now I’m trying to give it the length of First Name + 2… yeah, I can’t +2.
CurrentUser’s FirstName:append :append CurrentUser’s LastName:truncated to CurrentUser’s FirstName:number of characters+2 Gives “John+2”
I also don’t have the option of “+” unless I do a second :number of characters… but then that just prints out the correct number 6.
Am I missing something?
This should be trivial, right?