I have a table view within a tab view. I can read the bounds of the table view and I can change its contents but I can’t seem to change its bounds. Is this possible?
Hi,
of course it is possible to set a table view’s bounds - wherever it is - in your case it should look like this:
set bounds of table view "tv" of scroll view "sv" of tab view item "tab" of tab view "tab" of window "win" to {20, 150, 430, 360}
But maybe you have changed it’s bounds without having noticed that you did? When you resize the table view, the visible part (scroll view) remains the same. Wild guess: might it be that you should have set the bounds of the table view’s scroll view instead/additionally?
Hope that helps.
Dominik