Table of all objects - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Table of all objects (/showthread.php?tid=1936) |
Table of all objects - Thomas - 28.02.2019 Hi How to get table of all objects? Or better how to obtain table of all objects which doesn't contain a specific tag? I tried grp.tag() grp.tag({}) grp.tag('') grp.tag(nil) but with no luck RE: Table of all objects - buuuudzik - 28.02.2019 I think this could be a solution: Code: tag = "exclude" You can also use db query: Code: tag = "exclude" RE: Table of all objects - Thomas - 28.02.2019 Thank you. I missed grp.all() exists. |