OS 3.6.1
I’m trying to move group objects from one page to another.
This works well for standard controls using the extended parameter syntax with the page number.
The group object does not seem to have a similar documented syntax. If I try to reference the group ID and move it to the current page, that tends to work. However, if I try to move the control back to another page, the Lua code of:
myGroup = groups.get(24)
pages.display(2)
myGroup:setSlot(5,1,0)
pages.display(1)
tends to lock up the Electra One.
There is no documented pages.setActive(page #)
or group:setSlot(slot,width,height,page)
so I’m not sure what a good answer is to accomplish the move between pages.