On multiple projects, I’ve used the Tab Strip component, and had more tabs than fit on the screen. Ignition handles this with arrows you can click (or hold, as people are often surprised to find out) to scroll to the other tabs.
Unfortunately, on touchscreens, these arrows are very narrow and users struggle to accurately hit them - often accidently going to other tabs.
Could we get a property like ‘Scroll Arrows Width’ or something to make these arrows easier to touch on a touchscreen?
You could try adding something like this to the windows internalFrameActivated event handler
import java.awt.Dimension as dimension
# Get the tab strip component, assuming it's on the root container
tabStrip = event.source.rootContainer.getComponent('Tab Strip')
# Get the arrow panel
tsArrows = tabStrip.getComponent(0)
# Set its preferred size
size = dimension(width=200,height=80)
tsArrows.setPreferredSize(size)
In my case I have a tab strip on the root container but that is not the tab strip I want to change the size of. I have a tab strip for some of the internal windows. The tab strip I want to set the size for is under a container called "Maint" which is under another container called "MainContent" which is then under the Root Container (Capitalized R and C and a space in Root Container). How could I set the top level faceplate pop up InternalFrameActivated script to drill down and set that tab strip arrow size? I tried your code and manipulated it as tabStrip = event.source.parent.parent.parent.getComponent('Tab Strip') and that through a script error that the getComponent 1st argument can't be coerced into an integer. I also tried tabStrip = event.source.rootContainer.MainContent.Maint.getComponent('Tab Strip')