I have an array for string, one for a username the other for password.
I want to grab the values from the array so I can use them as part as my login script but i’m not too sure how I would do this.
// This is the part of the script where i want to get the values from the textbox defined in my array.//
function Login() {
var username = textbox;
var password = "";
var form = new WWWForm();
//form.AddField( "myform_hash", unity.hash );
form.AddField( "myform_username", username );
form.AddField( "myform_password", password );
//My array is a simple//
var textbox : String[];
Thanks.