03.04.2016, 21:47
Hi,
When you try to call grp.tag with all the tags of a particular object then an empty table is returned. When you call grp.tag with a table of strings for all the tags from an object, then the table is returned with that object.
mystring = "a,b,c,d,e"
local fails = grp.tag(mystring,'all')
log(fails)
mytable= {'a','b','c','d','e'}
local works = grp.tag(mytable,'all')
log(works)
Thanks,
Roger
When you try to call grp.tag with all the tags of a particular object then an empty table is returned. When you call grp.tag with a table of strings for all the tags from an object, then the table is returned with that object.
mystring = "a,b,c,d,e"
local fails = grp.tag(mystring,'all')
log(fails)
mytable= {'a','b','c','d','e'}
local works = grp.tag(mytable,'all')
log(works)
Thanks,
Roger