Hi, In my Embedded Wizard project I have a zone number selection system with a vertical list that does not behave correctly when used on devices with different screen resolutions (<800,480> and <480,272>). Specifically, the ScrollOffset calculation to correctly center the selected item does not work as expected at the lowest resolution, causing an unexpected shift when navigating back and forth in the interface.
updateScrollSlot:
sender; /* the method is called from the sender object */
NoZoneValue = NoZone^;
VerticalList.ScrollOffset = - (( VerticalList.ItemHeight * (NoZoneValue-1)) ) ;
no I know what calculation I have to do to adjust the item in the center with the lowest resolution