Hi all,
Im trying to build a table of array and i want to get the result through a variable by an input.
I thought its simple and i built it as i understood the manual , jut put a variable inside the [] and it will work
but it didn't work for me 

I have 2 Inputs , one to put selection and the second to show the selection data inside the table.
This is the code in a button:
Hope you guys give me the right way to Read and Write to a specific item in the Table through a variable.
Im trying to build a table of array and i want to get the result through a variable by an input.
I thought its simple and i built it as i understood the manual , jut put a variable inside the [] and it will work



I have 2 Inputs , one to put selection and the second to show the selection data inside the table.
This is the code in a button:
Code:
My_Table = {}; My_Table[1] = "Selection 1"; My_Table[2] = "Selection 2"; My_Table[3] = "Selection 3"; My_Table[4] = "Selection 4"; My_Table[5] = "Selection 5"; MySelection = Input.GetText("Input1"); result = Input.SetText("Input2", My_Table[MySelection]);
Comment