Greetings, once again thank you for all your support and time.
Since i've updated my Android project to titanium sdk to 3.2.0 some bugs pop up.
I have this scrollableview.
<Alloy> <Window id="agendaWindow" height="100%" width="100%" backgroundColor="darkgray" layout="vertical" navBarHidden="true" onOpen="windowLoaded" onClose="windowClose"> <View id="header"> // ... </View> <ScrollableView id="scrollControl3" scrollingEnabled="false"> <View layout="vertical" height="100%"> //... <ScrollableView id="scrollControl2" scrollingEnabled="false"> //... <Require type="view" id="specificDetailsView4" src="specificDetails4"/> </ScrollableView> //... </View> <Require type="view" id="specificDetailsView" src="specificDetails"/> <Require type="view" id="specificDetailsView2" src="specificDetails2"/> <Require type="view" id="specificDetailsView3" src="specificDetails3"/> </ScrollableView> </Window> </Alloy>and now when I try to change $.scrollControl3.currentPage = 1 or $.scrollControl3.setCurrentPage(1); The application crash.
This just started to happening after I update titanium.
I have another scrollable view inside scrollControl3 which is working fine. I'm not sure what my next step should be.