Q: When I use the Action Cell method setAlignment: in conjunction with the Cell method setScrollable:, I experience some inconsistent behavior. If I have called [myTextCell setAlignment:NX_CENTERED] and [myTextCell setScrollable:YES], the display does not update in the cell. However, when the TextFieldCell is sent [myTextCell setScrollable:NO], then the display works fine.
A: The Text Object does not support scrolling for centered or right-justified text. To get proper display, you have to disable scrolling with [myTextCell setScrollable:NO] when using the method setAlignment: with the values NX_CENTERED or NX_RIGHTALIGNED. If your text is left-justified, scrolling will work fine, i.e. you can use[myTextCell setAlignment:NX_LEFTALIGNED] with [myTextCell setScrollable:YES].
Valid for 1.0, 2.0, 3.0
QA682