Community Questions & Answers

iPad Swipe up listener

Hi all, How to make if the user swipe up to open a window, and in the new window swipe down to close?

Cancel User swipe/touchmove

Hey! Is there a way to cancel a user event like swipe or touchmove? I want to cancel a swipe gesture after it reaches a certain point. ~~~ var view1 = Ti.UI.createView(); var view2 = Ti.UI.createView({backgroundColor:'#123'}); var view3 =...

Event on touch over

Exists some event that is executed by passing the finger over an object? (on iphone) Example: I have two objects A and B I tap over the object A. Without raise up the finger, move it above the object B. At this time I can detect this event?. I've tried...

Need a PullTab like Feature for Scrollableview

I have a simple need - develop a Scrollableview that contains to two subviews, the leftmost subview contains a photo, the rightmost view contains text entry fields that allows a user to enter tag information regarding the photo. I want to add a simple...

swipe event doesn't work on Android

My app is consist from window,view, label(label puts on view and view puts on window). I add swipe event on view. swipe event works correct on iOS, but on Android, swipe event doesn't work. I also add swipe event on view and window, but result is...

Error in some code for swipe detection

Hi, I try to use some code from here: [appcelerator.com/[...]/swipe-fires-multiple-times](http://developer.appcelerator.com/question/7261/swipe-fires-multiple-times#answer-213738). Github [here](https://gist.github.com/1094727) For some reason I get an...

Swipe event Problem

Hi, I'm trying on iOS to create tableView with deleted albums from my apps and I added a swipe event to show a restore button. The problem is that when there is only one row it works perfectly but when I have more than one row the button shows up only in...

Swipeing rows in a tableview

Hey all, I am working on an app the has a tableview based off the example MasterView, DetailView that appcelerator provides. I am trying to make a swipe event on each individual row that just slides the contents of that row over to the left. There are...

Swipe gesture disables WebView

Is it really not possible to have swipe gesture on Webview or Window itself. (for going back in WebView)? I tried adding one (on iOS) and it disables my Webview (can't click/tap on anything) ! Using Titanium SDK 2.1.3 with iOS SDK 6.0 Thanks

Scrollableview on ipad 3

Hi everyone, I just test scrollableview (fullscreen 1024x768) on IPAD 3, but unfortunatly, the "swipe trigger" is very very short ! On ipad or ipad 2, you have to swipe something like to the middle of the screen in order to change view. On ipad...

sliding features in paintview in titanium?

Hi, i want to apply sliding features in paint-view live image view in photo app in i pad means i draw something in paint-view and when i slide it left to right it it shows another image for drawing . I have tried below method. when i swipe the view the...

Twitter-like swipe on tableview

Ok, so I have been trying to do this various different ways for months now, and I think it's time I ask for help. What I'm trying to do is set a tableview row to be "swipable" so that when you swipe it it displays a view underneath it with...

swipes gestures

is there any way I can trigger an animation when the screen is swiped from bottom 10px upwards for 200px? are there any examples of how to handle swipes?

Vertical Swipe To Navigate

I am developing an application for iOS and I want to add gestures to my app. I want to be able to swipe and have each of the 4 directions open a different window. While the user is performing the swipe, they should see the transition of one window moving...

Mapview swipe event?

Hello, I am trying to catch a swipe event on my mapview but it never seems to be fired. I have tried this both on the emulator and iPhone. Here's a sample code. `tt.ui.mapView = Ti.Map.createView({ mapType : Titanium.Map.STANDARD_TYPE, animate :...

Swipe event/gesture doesn't work on android

Hi, with this simple snippet I want to build a day switcher: ~~~ container.addEventListener('swipe', function(_e) { var diff = (_e.direction == 'left') ? 1 : -1; var datetext = date.add('days', diff).format('DD.MM.YYYY'); /* Changing of calendar text: ...

Android window detect swipe

Hi I'm not sure if this is even possible but I'm trying to come up with a way for the window to detect a swipe event *regardless* of what else is loaded in the window. I've been able to get it to work when it's just the window, but when I add a table into...

swipe not always detected

hi all i work on ipad application. i want to animate my view 250px to the left on detecting swipe direction my code is ~~~ view.addEventListener('swipe', function(e) { //alert(e.direction); if (e.direction=="left"){ ...

Swipe between navigation screens?

I have an iPad tab group and, within it, the first window displayed I have a button that opens the built-in navigation group for that window: ~~~ btnSimpleBegin.addEventListener('click', function() { tabGroup.activeTab.open(winSimpleCalc, { animated :...

Showing 1-50 of 110 1 2 3