Hi, I want to have some text that alternates between different labels, so to do this easily, I need to use the ID number of the label. However, I'm having trouble setting the text by using the ID number.
I know normally, I would use; MyFirstLabel.Text="Here is some text!";
But using the ID number, I've tried;
Label.0.Text="Here is some text!";
Label[0].Text="Here is some text!";
Label(0).Text="Here is some text!";
Is there a way to make this work? Thanks!
Use the GUI's Controls array:
gGUI.Controls[0].Text = "...";