Put one object for several screens at all once

Is there a way to put a specific object at specific position for several screen easily?

Let's say I want to put a button group at the bottom screen for 30 screen.

Any idea?

Thx,

  • To add script to affect multiple graphics at once is not hard, but for only thirty graphics, copy and paste thirty times will probably be faster.  Problem is, you want button group in same position on all graphics? Add an edit event to button group to change the group's left and top (x and y) properties to a uniform value.  Once pasted, a double-click during configure will execute the edit event, causing the position of the object to be changed identically for every graphic.

    Alternatively, if you are making a uniform control that will reside on all future graphics and (if changes are required in the future you will have to retrofit all old graphics) I would look into making the control a single file that gets opened in a specific position every time the main picture change occurs.  That way, changes to the controls are centralized, and do not need to repeated 30+ times.