I m making an app and i want a slide effect from top to bottom. I am using this code which is working fine in iOS but not in android var win=new Window(); win.top=400; var slide=Ti.UI.createAnimation(); slide.top=0; slide.duration=9000; win.open(slide);
↧