Can I do this?
myTable1 = {}
myTable2 = {}
myTable3 = {}
object1 = display.newImageRect(etc)
table.insert(myTable2, object1)
table.insert(myTable1, myTable2)
Basically I want to a bunch of objects to different tables so they can have different properties and functions, etc BUT I want to be able to access them from table 1 as well, just for general commands like moving x or y positions based on the position of the screen. Is this possible or is there any other way of going about this?
Thank you guys!