Questions tagged [user-interaction]

User-interactivity is the dialog that occurs between a human being and a computer program.

326 questions
0
votes
1 answer

Why User Interaction Enabled is Necessary for the Target too Instead of Just the Button?

UIButton * newButton = [UIButton buttonWithType:UIButtonTypeCustom]; newButton.imageObject= someImage; UIImage * imagePut = someImage.imageBlob; imagePut = [imagePut roundedCornerImage:20 borderSize:0]; [newButton setImage:imagePut…
Anonymous White
  • 2,149
  • 3
  • 20
  • 27
0
votes
3 answers

run a script from a systemaccount but display it to "normal" user

I'm trying to make our software deployment more user friendly by displaying sort of a gui to the user where he can get some informations and make some settings himself. The problem I ran into is that the script that acts as a gui(it's an HTA…
0
votes
3 answers

iphone development: using touch down and touch up inside simultaneosly

In my app I use a button and I assign two methods to them one is working when you touch down( the button image is changed), the other is working when you touch up inside (another view is opened). so simply, if you want to open a view you press the…
death7eater
  • 1,094
  • 2
  • 14
  • 35
0
votes
1 answer

Canvas trouble changing color/clearing canvas on button click

My code is using a canvas that allows people to draw whatever they want, what I'm trying to implement is changing the color of what their coloring on button click, default color is black I have two buttons to change ot red and green and also a clear…
LewSim
  • 307
  • 2
  • 9
  • 24
0
votes
1 answer

iOS User guidelines at startup

I was wondering is there a way to give the user a small guided tour of the app with small pops exactly above the UI elements indicating what it will do and not using the standard popups which iOS has. Something like if an icon is used to post…
LostPuppy
  • 2,471
  • 4
  • 23
  • 34
0
votes
1 answer

Uncheck / deselect singleChoice ListView

Combo - List with Option to Write In Unlisted Value
Cel
  • 6,467
  • 8
  • 75
  • 110
0
votes
1 answer

Asking for corrections on parsed text before processing

I have written a parser in Python that takes a tracklist of played songs in (for example) a podcast, and formats the tracks correctly for scrobbling to the last.fm website. Because some tracklists feature odd tracks or sometimes tracks may be…
Geert Smelt
  • 987
  • 1
  • 7
  • 19
0
votes
1 answer

Using TOUCH BEGIN/MOVE/END to create TAP / SWIPE events for four concurrent users

I'm using a multi-touch screen for making an interactive presentation with Adobe AIR and four people is going to use the screen at once. I've done some testing with MouseEvent (which works fine with one user) and I think that replacing that event…
Stefan Edberg
  • 231
  • 2
  • 4
  • 15
0
votes
1 answer

disable userinteraction for single tap on uitextview

I've got a UITextView in a tableViewCell The problem is that when I single tap on the textView it doesn't perform the didSelectRowAtIndexPath. But I can't set userInteraction = NO because I want to be able to select the text on a long press…
Mathieu
  • 1,175
  • 4
  • 19
  • 34
-1
votes
1 answer

Can I recreate this Flash app's functionality without using Flash?

Can I use jQuery or something else to re-create this flash app's functionality? I haven't messed around with jQuery much, but I feel like the same functionality can be achieved as Flash can. Are there any other languages or combinations of…
CheeseConQueso
  • 5,831
  • 29
  • 93
  • 126
-1
votes
1 answer

In Matlab, how can I run 2 separate programs simultaneously, each turned on and off by separate buttons?

For ex., I have Program 1 & Program 2, when I run commandPrograms program it will open up two buttons. One button will turn on and off Program 1, and the other button will turn on and off Program 2. I can turn on and off each program (Program 1 &…
-1
votes
1 answer

Enable user interaction of a button SWIFT

OK, so lets assume the button created below is greyed out and user interaction disabled. How do I enable the button from anywhere else. I know how to disable the button from inside the button function, sender.enabled = false, but I don't want to…
-1
votes
1 answer

Intercept user interaction on a webview (SWIFT)

I need to intercept user interaction on my ViewController (in Swift). My ViewController is fully covered by a webview. To intercept user touching the screen I've implemented 2 methods First method: override func touchesBegan(touches: NSSet,…
-1
votes
1 answer

How to play video when there is no action perform on screen for 5 mins in Android?

I want when my app exit, after exit if there is no action perform on screen for 5 minutes a video will play every time, this video id define in my app. Any help would be appreciated. Thankx in advance. I have the following class but it is not worked…
Khushboo
  • 107
  • 1
  • 2
  • 12
-1
votes
1 answer

Run a loop while waiting for a click on the plot in R

in R there are several ways to wait for an input from the user, such as clicking somewhere on a graph (e.g. locator() function). I'm looking for an option to record the user input WITHOUT waiting for it. I'm running a for loop with a locator()…
Jehol
  • 193
  • 1
  • 7
1 2 3
21
22