I am working with TouchGFX Designer 4.24.2If I assign a different Scrollbar width to a scrollableContainer in Screen1view::setupScreen()after or before the command Screen1ViewBase::setup(); scrollableContainerMainMenu.setScrollbarWidt(50...
Hello Gaetan Godart,I had used the command scrollableContainer.doScroll(0, -1) as a substitute to force a redraw of the scrollbar, but did not realize that (0,0) corresponds to the actual state at the start time and is therefore nonsense.Many thanks ...
Hello GaetanGodart,thank you very much for your help. It works well.I try it withscrollableContainerMainMenu.doScroll(0, 0);but this only works with Y values not equal to 0 (e.g. -1).scrollableContainerMainMenu.doScroll(0, -1); Regards,