Text object named BBCodeText
Sprite named Button with a variable named Click
Text object has text: I was on a walk at the beach when I saw David and Sarah.
CONDITION (Add Capitalize)
On tap gesture Button
Button variable Click=0
ACTION
Set text to uppercase(BBCodeText.Text)
Button set Click=1
Result: Text is all caps
I WAS ON A WALK AT THE BEACH WHEN I SAW DAVID AND SARAH.
At this point, I have other conditions that would give options to underline. So the text could look like this.
I WAS ON A WALK AT THE BEACH WHEN I SAW DAVID AND SARAH.
CONDITION (Remove Capitalize)
On tap gesture Button
Button variable Click=1
ACTION
Set text to ?????? Is there an option to remove the uppercase. I know there is a lowercase
option but I need sentence case.
Button set Click=0
Result needed: I was on a walk at the beach when I saw David and Sarah.
I thought about saving the original text in a variable and replacing the text but it removes any bbcode I might have added.