Tagged Questions

6
votes
6answers
125 views

Tooltips in the era of touch

Tooltips are an incredibly useful interface paradigm to know an application. They are the mapping between the visual control and the application specific action associated to that control. the user …
5
votes
4answers
337 views

Why can I ‘touch’ a write-protected file?

Why is it possible to touch a write-protected file? Shouldn't the following give an error? $ touch test.txt $ chmod a-w test.txt $ ls -l test.txt -r--r--r-- 1 name group 0 Jun 13 09:14 test.txt $ …
5
votes
5answers
3k views

Problem with cocos2D for iPhone and touch detection

I just don't get it. I use cocos2d for development of a small game on the iPhone/Pod. The framework is just great, but I fail at touch detection. I read that you just need to overwrite the proper …
4
votes
2answers
603 views

Why are touch events destroying my Android framerate?

I'm developing a game for Android. It's got a lot going on but is running reasonably smoothly. That is, of course, until the user touches the screen. While they're touching it, onTouchEvent is called …
3
votes
2answers
102 views

Simulate touch command with Java

I want to change modification timestamp of a binary file. What is the best way for doing this? Would opening and closing the file be a good option? (I require a solution where the modification of the …
3
votes
4answers
616 views

Objective-C/Cocoa: Proper design for delegates and controllers.

Consider the following common situation: You have some MainView in your Cocoa application, loaded from a NIB, which is controlled by a MainViewController. Your MainView contains some controls, such …
3
votes
3answers
213 views

How can I implement an autoselection textbox like the one for e-mail addresses on the iPhone?

On the iPhone's mail app, you can type in multiple mail addresses...and then to delete one you just tap it, and click Del. How can I implement something similar in my app? I tried to handle the tap on …
3
votes
3answers
1k views

How to develop multi-touch applications in Java?

Anticipating the day when multi-touch interfaces become more pervasive, are there libraries in Java that can be used for developing touch applications? I'm looking for interfaces similar to …
2
votes
4answers
209 views

Check if drawn path/CGPath intersects itself in an iPhone game

I have a path drawn in OpenGL ES. I can convert it to a CGPath if needed. How would I check if it intersects itself (If the user created a complete loop)?
2
votes
4answers
146 views

Productivity Gains from using Multi-Touch User Interfaces

Given a typical developer usage, I am wondering how much gains/utility can one derive out of a multi-touch Win7 Laptop or a Surface device. If people have experiences to share or if there were some …
1
vote
2answers
45 views

How to write software for my touchpad?

I have some ideas for improvements on my touchpad, ranging from the run of the mill scroll horizontally at the bottom, tapzones for right click, to more complicated ones. But I have no idea where to …
1
vote
2answers
84 views

Comparing Touch Coordinates.

Is it possible to compare touch coordinates made by the users on the UIView to the one store in a plist or txt format? The argument looks like this; if (user touch coordinate == touch coordinate …
1
vote
4answers
87 views

equivalent of “touch” in scons?

scons uses MD5 hashes rather than file mod times to determine if a dependency needs to be built. I want this to be the default behavior. But is there any way to force it to assume a particular file …
1
vote
2answers
68 views

How do I know if a MotionEvent is relative or absolute?

I am implementing OnTouchListener and am receiving MotionEvent objects. Some ACTION_MOVE events reports absolute X/Y coordinates, while some reports relative coordinates. How can I ask a MotionEvent …
1
vote
3answers
77 views

Easy way to feed in a decimal number as string into an NSDecimalNumber?

Reading the documentation, I would have to do something ugly like this: NSLocale *usLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"en_US"] autorelease]; NSDecimalNumber *number = …

1 2 3 4 5 next
15 30 50 per page