Move Tool Bar ButtonsThis ESPL script can be used to change the location of the buttons on the main button bar. The main button bar goes full width across multiple monitors, so the buttons can be located anywhere on the bar. This example also changes the layout tab control location.begin btnCharts.left:=btnChart.left+1024; tabLayout.left:=3; end; The new button location is presently being used by the tabLayout control being so wide. So we change the left location of the tabLayout and also shorten its width so that it no longer interferes with the placement of the buttons on the center monitor. The example shows moving three of the buttons, but you will have to move all of the buttons that are in the following list. The names are in order of the button's location on the main button bar from left to right.
The layout tabs is object tabLayout. |