Version 0.1.21

Status
Not open for further replies.
If it means anything, about half a second before the select a sim opens, it gives me a message "A required game update is available. please press OK to update", (but I did update!!) and the dialog on the connecting screen says log in instead if connecting progress (????), which it is supposed to say. And if I open debug, the box has the same name as the log in one. Did an update not fully instal, or is the connecting screen glitched?
 
Last edited:
upload_2014-8-15_19-14-19.png
First parameter is a data value, which is the data representation when the row is selected. Really the definition should be like this:

var item = new UIListBoxItem(data, col1, col2, col3, ...);

for the above, I used:
var msgStyleSim = script.Create<UIListBoxTextStyle>("SelectionSimColors", MenuListBox.FontStyle);
var item = new UIListBoxItem("yo", "testerino");
item.CustomStyle = msgStyleSim;

MenuListBox.Items.Add(item);
 
Status
Not open for further replies.
Back
Top