LogicMachine Forum
Object not shown in Objects' tab - Printable Version

+- LogicMachine 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: Object not shown in Objects' tab (/showthread.php?tid=6379)



Object not shown in Objects' tab - puntukas - 05.04.2026

I have an object from ETS 31/0/45 but this object is not displayed in the Object tab. Also I can not add another object with the same address.
If I find ID thru 
Code:
local obj = grp.find('31/0/45')
if obj then
  for k,v in pairs(obj) do
    log(k .. ' = ' .. tostring(v))
  end
else
  log('not found')
end
and delete this object with "grp.delete(id)", and then add it manually, the operation is successful but it again dissapears from the list.

Could you advice?

Thanks
   


RE: Object not shown in Objects' tab - admin - 07.04.2026

Check if you have some other script that creates the object or it might be created automatically by the bus sniffer.
Object list is not reloaded automatically for externally created objects, you can press reload button at the bottom near the page selection and it should appear.