This question made my brain melt last month, I could not figure out what the OP was asking for.*
I still am not sure, do you want to type and for it to show up what would be “reversed” if it was being written left-to-right?
I made an app with this logic in a text box change event, please let me know if this is anywhere close to what you mean?
Here’s a gif:
Here is the code:
def __init__(self, **properties):
# Set Form properties and Data Bindings.
self.init_components(**properties)
self.text_box_1_oldtext = ""
def text_box_1_change(self, **event_args):
if self.text_box_1_oldtext != self.text_box_1.text:
if self.text_box_1_oldtext[:-1] != self.text_box_1.text:
self.text_box_1.text = self.text_box_1.text[-1:] + self.text_box_1.text[:-1]
self.text_box_1_oldtext = self.text_box_1.text
else:
# Handle 'Backspace' key
self.text_box_1.text = self.text_box_1_oldtext[1:]
self.text_box_1_oldtext = self.text_box_1.text
*(To clarify, that is my problem not yours that I could not understand
)