Seems that the latest svn - version has removed Screen.setTransition - method. I need it to set the transition dynamically in my code. In my application the user can change the displayed screen by pressing left/right and I need to set the transition depending on whihch button was pressed. So the slide animation slides in the correct direction. The shortcuts - attribute for my screens is defined as "left=showScreen1(left)" where the argument tells which direction the screen should slide when doing the transition..
And also, I've been creating some new widgets by copying for example TextArea - widget as a base for my own. Problem is, that some methods which TextArea calls for it's child widgets are protected and therefore I cannot call them as I use different package. For example paintImpl - method is one such method which causes problems in TextArea.paintChildrenImpl. I know I could have just extended the TextArea - widget and use it as a base, but there are so many private methods which I cannot override that I can't get the features I want in them. I guess most private - methods in widgets should be changed to at least protected, if not public.

