For the problem with Sysinfo.. have you added the SysInfo object to your project and if you have multiple layouts, is it global?
Doh! Can't believe I missed that. Thank you! I knew it was going to be something silly
For the myserver problem.. are you accessing "myserver" before you set the value of myserver?
This is no longer a problem now that I have Sysinfo working.
I had another question (if you don't mind) and it could quite possibly be irrelevant with the network code, but I wanted to allow the client to press the Enter key as well as clicking the 'Send' button to send a message to the server. I thought a simple solution would be using the OR event in between: On talk button pressed and Enter key pressed. So it would look like this:
On talkButton clicked
OR
On key Enter pressed
connection.Send({"action": "message", "message": chatBox.Text})
But that seems to cause an infinite loop because the message continually sends. I know I could just make pressing the Enter key a separate event, but I was just curious about this OR operator. Sorry if that has nothing to do with this. I appreciate the help.