Hi,
I want to access 10 string, 5 color and 5 unit32 data from device side using native statement in my GUI component
In one slot me thod I declare the array of string and insert in native statement but in debug console it give error "missing ; at the end of declaration"
Eg
slotmethod
{
var string str[4];
var unit32 textcolor[5];
native ( str, textcolor )
{
}
}