Threads merged - please keep all posts about the one project in the one place.
I would
guess you meant to do something like this:
local bridge = peripheral.wrap("left")
local box1 = bridge.addBox(5, 5,70,10,0xFFFFFF,0.5)
box1.addText(6,6,"Loading...",0x123456)
local box2 = bridge.addBox(5,21,70,10,0x123456,0.5)
box2.addText(5,22,"Complete.",0x123456)
bridge.sync()
But it may well be that you just need to do this:
local bridge = peripheral.wrap("left")
bridge.addBox(5, 5,70,10,0xFFFFFF,0.5)
bridge.addText(6,6,"Loading...",0x123456)
bridge.addBox(5,21,70,10,0x123456,0.5)
bridge.addText(5,22,"Complete.",0x123456)
bridge.sync()
What does the documentation for addBox / addText have to say about it?