Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

97
votes
10answers
54k views

How do I detect when someone shakes an iPhone?

I want to react when somebody shakes the iPhone. I don't particularly care how they shake it, just that it was waved vigorously about for a split second. Does anyone know how to detect this?
49
votes
8answers
16k views

Android: I want to shake it!

I need to add a shake feature that will refresh my Anroid application. All I find of documentation involves implementing the SensorListener, but Eclipse tells me it's deprecated and suggest ...
12
votes
3answers
23k views

How to use Shake API in iPhone SDK 3.0?

Apple annonced Shake API in iPhone SDK 3.0. I can not find any information regarding this new feature. Who knows about how to use it? Any example, link will be good.
6
votes
2answers
516 views

Can I shake a users desktop using WPF?

I'm writing an application for personal use that will track how often I reach for the mouse, and will keep a counter of how long I've gone mouseless. When I use the mouse, I would like it to shake my ...
4
votes
1answer
664 views

Detecting when UITextField text has changed due to shake undo?

I have a UITextFieldDelegate that does a whole bunch of validation on user input to determine whether or not they should be allowed to end editing. In one particular example, it is not valid to leave ...
4
votes
3answers
2k views

Javascript. Listen for iPhone shake event?

is it possible to listen for an iPhone (or any mobilephone with accelerometer) shake event with javascript? You know like shakin the iphone to shuffle the next song in itunes i want to call a js ...
3
votes
1answer
192 views

Is there a stable way to detect shaking event?

I've tried to detect shaking event using accelerometer. I've found that when I give a contiuous shake to the phone, the value difference of the acceleration is quite stable. But when I rotate the ...
3
votes
1answer
186 views

Shake the device to launch an application in Android

How can we launch a application by just shaking the device? I want to do something similar to the app "Appshaker".
3
votes
1answer
775 views

Objective C: Detecting a shake

I'm using the shake api like this: - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event { if (event.subtype == UIEventSubtypeMotionShake) { [img stopAnimating]; ...
3
votes
1answer
126 views

How do I detect shake while movie is playing?

I have an iphone app where I am able to shake and play a random file with MPMoviePlayerController. But while the Movie Player is on the screen, it is unable to detect a shake. How can I get the Movie ...
3
votes
2answers
115 views

Shakin' things up

I have a little app here, and I would love to be able to do my own stuff in Vista/Win7 when I shake the form. Currently, when a form is shaken, it will restore/minimize everything else. But I want to ...
3
votes
2answers
5k views

how to detect and program around shakes for the iphone

I'm trying to implement the shake "tutorial" on this page, but I think I'm missing something. I copied his accelerometer function into myAppViewController.m file and put some nslogs in there to see ...
2
votes
1answer
91 views

Set App delegate as first responder

I'm trying to implement a shake recognition that works throughout my application. To do this I'm adding the following code to my xxxAppDelegate.m: -(BOOL)canBecomeFirstResponder { return YES; } ...
2
votes
1answer
214 views

horizontal and verticle shake count using accelerometer in iPhone/iPad

i want to count number of shake horizontally and vertically,i have referred to UIAcceleration i have also referred to Motion Events But couldn't come up with better approach. Any kind of help is ...
2
votes
1answer
431 views

Android - How to “shake to erase”?

This may be an easy question, but I'm stuck. I am trying to implement the "shake to erase" feature in a drawing program (simple paint app). I can't get it to work. Here's my code: private final ...
2
votes
3answers
554 views

How to invoke Ajax based on phone shake?

I am trying to make my first web application for mobile devices. Is it possible to capture the "shake event" on android? I was looking on jquery moble library but there is no shake event or ...
2
votes
7answers
263 views

how can we avoid the shake when we hover over an element and set its font to be bold

How can we avoid the shake when we hover over an element and set its font to show bold? Here is a sample of the code I wrote: http://jsfiddle.net/8v4Ag/ Is there a technique to avoid the shaking? ...
2
votes
2answers
394 views

How to stop the UITextField from responding to the shake gesture?

By default, if you shake the iPhone while entering text in a UITextField, a little box will appear asking if you want to undo typing. How can I prevent this from happening? I looked through the ...
2
votes
2answers
436 views

Help please - WM_SYSCOMMAND message from Aero Shake/3D flip

HI I have an application written in Delphi 2006. I have noticed that when running under windows 7 the application does not receive the WM_SYSCOMMAND message from Aero Shake. However if I run the ...
2
votes
2answers
433 views

Does anyone know of any sample code for simple shake detector?

I'm looking for an android code example on how I would be able to make my phone listen for a "shake" and then have it trigger webview.reload(); to simply reload the webview on the activity. Anyone ...
2
votes
2answers
602 views

How to apply the shake effect to a dialog with an embedded form

I'm newbie on this, I'm trying to apply the shake effect to a dialog that has an embedded form but not success on this. When I try to trigger the effect $("#restore_password").effect("shake", ...
2
votes
3answers
328 views

How to play an audio file ONLY while user is shaking iPhone?

I've read a number of posts regarding how to detect shakes but I'm not sure: What is currently the best way to detect shakes? and - How to play an audio file ONLY while the user is shaking the ...
2
votes
2answers
524 views

WinForms Application Form “Shakes” When Audio Playing

I have a C# game program that i'm developing. it uses sound samples and winsock. when i test run the game most of the audio works fine but from time to time if it is multiple samples being played ...
2
votes
1answer
2k views

How can I detect a shake gesture in PhoneGap 0.8?

I'm using PhoneGap 0.8 and I'd like to detect a basic shake gesture. I've found two relevant snippets: http://groups.google.com/group/phonegap/browse_thread/thread/25178468b8eb9e9f ...
2
votes
2answers
456 views

iPhone Shake event not properly working

I have this inside my viewController: - (void)motionEnded:(UIEventSubtype)motion withEvent:(UIEvent *)event { if (event.type == UIEventSubtypeMotionShake) { NSLog(@"I have shaked"); ...
1
vote
0answers
97 views

Handling iPad Shake Gesture

I would like to know how to detect the shake gesture on an iPad and make it cause a animation on a digital publication page (ex: image changes). I am using Adobe DPS at the moment and considering ...
1
vote
0answers
51 views

Is it possible to spin a pickerview control automatically by detecting the iphone shake gesture?

I am new to the apple technology and i am developing an application for iphone(iOS), i am facing a problem while developing an application (i,e) the pickerview should automatically scrolls or selects ...
1
vote
2answers
75 views

Iphone desktop effects

How can I make a effect just like iphone desktop? I want it can show nine icons,when I long press on the icon,it can shake and I can drop and drag the icon... Does anyone has a demo? Thanks in ...
1
vote
1answer
82 views

How to do shake the Iphone by COCOS 2D

I can detect shake Iphone by cocos 2D when I use: -(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration Now, i want to do shake the Iphone by cocos 2D. ...
1
vote
1answer
148 views

How to detect that the phone (WP7) has stopped shaking

I can get the phone to react to a shake, but what is the best way to tell that it has stopped shaking?
1
vote
1answer
113 views

Shake Gesture Library for XNA?

I am trying to use the Shake Gesture Library on a XNA project: Shake Gesture Library, even though it's a four-step process, but I can't get it to work. I tried this on both HD7 and Omnia7. However, ...
1
vote
0answers
49 views

How to generate an event while blackberry handset shake?

I am a newbee for Blackberry application development & I am developing one application,that needs to fire some action on Blackberry device shake event? I have searched and tried a lot but haven't ...
1
vote
2answers
736 views

Android browser shake detection with javascript for a web application

Do any versions of androids web browser detect javascript shake events? Something like this: window.addEventListener('devicemotion', this, false); I can't seem to find any information on this. I am ...
1
vote
3answers
602 views

motionBegan not being called in whole application

Hi all I have an app where I allow the user to post something on their pinwall of facebook. I used the DemoApp directly from Facebook to set it up. I have implemented a shake detection that does ...
1
vote
3answers
495 views

jquery shake effect and margin-auto

Having a spot of bother with this... shake effect example in firefox if I omit the line $this.css({'margin-left':$this.position().left}); then the box is animated over to the left instead of in ...
1
vote
1answer
642 views

Objective C: Shake problems

I'm detecting a shake that will start the animation, and when it ends, it stops animating. Sometimes it works, but sometimes it doesn't realize the shake has ended so it'll never call the motionEnded ...
1
vote
3answers
859 views

Cocos2d shake/accelerometer issue

So I a little backstory. I wanted to implement a particle effect and sound effect that both last about 3 sec or so when the user shakes their iDevice. But first issue arrived when the build in UIEvent ...
1
vote
2answers
377 views

iphone - easy way to have that press -> delete effects? or move -> relocate view effect?

On iphone's home, you can press and hold on one app for 2 secs, then everyone is shaking and waiting to be delete or relocate. How can I have this in my own view? press & hold on somewhere and ...
1
vote
1answer
1k views

Android problem with Image Rotate and Matrix

Hopefully this is an easy one because I've been trying all sorts of different ways to get rid of this. I am making an android app which incorporates a clock animation. I've got everything working ...
1
vote
3answers
442 views

pragmatically scroll UIScrollView upon shake gesture

HI, I have a view that has three UIScrollViews on the screen. I want to randomly scroll the UIScrollViews to different positions whenever a user shakes the iPhone, but I am unable to get it done. I ...
1
vote
1answer
1k views

How to detect shake on the iPhone using Cocos2D?

I know how to do shake for the iPhone has been asked a million times on here, but I can't seem to find anything useful regarding the accelerometer with Cocos2D. Everything i have found involves using ...
1
vote
2answers
2k views

How to detect iphone shake gesture one time !

hi i want iphone detect shake gesture only one time . after iphone had been shaken and html files showed , then i want iphone doesn't detect shake anymore . here is my code : - ...
1
vote
1answer
937 views

iPhone Simulator always generates two shake events? (UIScrollview not scrolling for second event)

When I select "Shake Gesture" from the Hardware menu in the iPhone simulator, my first responder always receives two shake events (with a few milliseconds in between). Unfortunately these two events ...
1
vote
1answer
1k views

Detecting when modal view has been displayed

This is a fun one... I have an application that has a help screen and is displayed as a modal view. The main view has an action that occurs when the device is shaken. I do not want the action to ...
0
votes
0answers
15 views

onSensorChanged minimum value

I want my android application to generate a random number if the sensor changed a minimum value of 3, so for example, if it goes from 9 to 6 in less then a second (on shake). I already have the ...
0
votes
1answer
29 views

jQuery .stop() not working effect shake on hover

I have jQUery code: setInterval(function() { var grayarrow = jQuery("ul#dropdowngray").parent(); var greenarrow = jQuery("ul#dropdown").parent(); grayarrow.effect('shake', { times:2 }, ...
0
votes
0answers
14 views

CCShaky3d leaves black areas around edges of screen

When I use CCShaky3d, once the animation is done, the screen doesn't completely return to the way it was before the animation; there are small black areas around the edges of the screen left over from ...
0
votes
1answer
26 views

How can I adjust the sensitivity of a shake via SeekBar?

I'm trying to adjust the sensitivity of a shake action via a SeekBar, but I'm running into some trouble because the "sensitive" part of the the shake action is a double. The values of "SHAKE_SENS" ...
0
votes
0answers
99 views

Shake recognition not working on iOS 4, does work on iOS 5

I've integrated a shake recognition in my app. I've put it in my appdelegate to be able to use it throughout the app. It works great on iOS 5, but on iOS 4 it doesn't work. I'm using the following ...
0
votes
0answers
102 views

how to produce a light on shake gesture on iphone [closed]

Possible Duplicate: Activate the LED for a flashlight app how to produce a LED light on shake gesture on iphone, the following is the code i am using, but i am not able to get a LED light ...

1 2 3