Scrollable banner on the bottom of a window...

You must Login before you can answer or comment on any questions.

I've seen in an app where there is a section, independent of the rest of the window, where images can be scrolled left and right with the rest of the page being moved at all. I don't want to mention the app for fear of sounding like I'm promoting it. I am in no way connected to the company nor do I endorse the services they offer. It's a very interesting feature that I may be interested in using in my next app and if anyone has been something like this before and has any suggestions I'd love to hear it.

Thank you. ~Kevin

1 Answer

Accepted Answer

You can put a scrollview set to scroll horizontal to the bottom of the current window and a relative small height

var sv = Ti.UI.createScrollView({
    height:100,
    bottom:0,
    scrollType:'horizontal' 
    contentHeight:100,
    contentWidth:1000 // for example
});
 
 
 
win.add(sv);

Your Answer

Think you can help? Login to answer this question!