Hello
How can I create or read this type of arrays from the construct event editor? Some plugin? as?
sorry if repeated.
var array1 = {
user : examplevalue,
contra : examplevalue,
nmc : examplevalue,
email : examplevalue
};
var array2[userid] = {
user : examplevalue,
contra : examplevalue,
nmc : examplevalue,
email : examplevalue
};
And extract example
var exitvariable = array1.user ;
var exitvariable2 = array2[userid].user ;
Everything from construct 2 events. Thanks.