My Google Fu is usually good enough to solve this for me, but I’ve searched the forums and the manual / API reference, and I can’t find it.
How can I read the text off a DirectLabel?
I’m trying to get four labels to shift text through labels rather than in a block.
self.HUDChatConsoleOutput03['text'] = self.HUDChatConsoleOutput02['text']
self.HUDChatConsoleOutput03.setText()
self.HUDChatConsoleOutput02['text'] = self.HUDChatConsoleOutput01['text']
self.HUDChatConsoleOutput02.setText()
self.HUDChatConsoleOutput01['text'] = self.HUDChatConsole['text']
self.HUDChatConsoleOutput01.setText()
No text gets moved, sadly. I was guessing a few other methods:
self.HUDChatConsoleOutput03['text'] = self.HUDChatConsoleOutput02.getText()
You cats are the best at this, so I’d love any help or pointers you can give me. How can I read back the text that’s been assigned to this label?