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

Cancel current touches in an app

I am trying to cancel all current touches in a window/inside the entire app. I tried setting window.userInteractionEnabled = NO; window.userInteractionEnabled = YES; But the touches that are active at the moment when I disable the user interaction…
JonasG
  • 9,274
  • 12
  • 59
  • 88
0
votes
1 answer

Disable touches touchMoved cocos2d v3?

I am trying to do something fairly simple in Cocos2d 3.1. I am receiving touch events on a CCSprite subclass and I am trying to stop receiving touch events when the touch is slid off of the sprite using a simple containsTouchLocation helper…
SimplyKiwi
  • 12,376
  • 22
  • 105
  • 191
0
votes
1 answer

Enabling and Disabling All User Input in an Application

I have an application that responds to user input, but there are segments where there is animation effects that I don't want the user to be able to interrupt in any way. To accomplish this, I have a class that is linked/instantiated with any…
miwalsh
  • 111
  • 2
  • 9
0
votes
2 answers

How to create a view that need to display complete application?

I need a view that need to be common for application.I am adding the view to new uiwindow,because the view should not navigate to other screen,it needs to be common.That is reason i am setting on separate uiwindow as per reference of…
sairam
  • 299
  • 1
  • 6
  • 17
0
votes
2 answers

How to Disable a UIView within a UICollectionViewCell

As the question states, is it possible to disable userInteracion within a UICollectionViewCell? I know the code is to disable the view would be: self.view.userInteractionEnabled = NO; in the .m file. I have a button inside a Cell and I'm wondering…
adriennemhenry
  • 133
  • 1
  • 3
  • 17
0
votes
1 answer

Student Info Recorder with Alphabetical and Ascending ID Displayer and Subject Filter using Multi-Dimensional Array

This is the part of my codes which I want to use try-catch exception,Now how to use try and catch exception in this codes? Example if there is no enrolled students in case no.3(prog2) and case no.4(CSO), it displays NO ENROLLED students... …
0
votes
1 answer

cannot click UIButton on custom UIView

I have a custom view, for example ParentView : UIView. Inside this view I have one UIButton that I'm adding programatically as UIButton *btn = [[UIButton alloc] initWithFrame:frame]; [btn addTarget:self action:@selector(buttonPressed:)…
Axarydax
  • 16,353
  • 21
  • 92
  • 151
0
votes
1 answer

How to get user-input in batch mode in R?

I have the following code: first.moves <- function() { go.first <- readline("Do you want to go first? (Y/N) ") if (go.first == "Y" || go.first == "y") { game <- altern.moves() } else { game <- move(game,1,1) } …
vonjd
  • 4,202
  • 3
  • 44
  • 68
0
votes
1 answer

Multylayer or interactive video

We've got 6 cameras and recorded some tracks of my band from different corners of the studio. The main idea is to create an interactive video, where user could change the view with this recorded videos. So, u want to watch drummer playing turn his…
0
votes
1 answer

iOS: One specific cell doesn't switch back from edit mode, after changing UserInteractionEnabled

This problem really drives me nuts..been at this for hours now. I have a table view with custom cells. This error occurs mainly when an active cell (cursor in a textfield of this cell) is hidden behind the keyboard or scrolled out of the current…
MichiZH
  • 5,587
  • 12
  • 41
  • 81
0
votes
1 answer

Is it possible with camtasia quizes to choose a specific marker?

I use quizes on media level. User chooses an answer and based on the answer I would like to show the media which depends on this answer. It means that each answer in quiz should be mapped to some marker. Can this be achieved with camtasia?
Daniil Petrov
  • 166
  • 2
  • 12
0
votes
3 answers

Show Action Bar when user does not interact for some time in Android

Hi in my android app I would like to hide the action bar on user interaction and show it again when the user has stopped interacting for some time. Now I already have the code for hiding the action bar: mViewPager.setOnTouchListener(new…
Adifyr
  • 2,649
  • 7
  • 41
  • 62
0
votes
1 answer

Matplotlib multiProcessing

I am trying to make it so that I can run an infinite loop asking for user input as well as running a matplotlib simple diagram. Any suggestions how this can work? Currently I have for my code: def createGraph(): fig = plt.figure() fig.suptitle('A…
0
votes
1 answer

user interaction in identity inspector vs. attribute inspector

I have a UITableViewController, I've set the user interaction of the identity inspector to NO (uncheck) and in the attribute inspector it's set to YES (checked), as a result when the user clicks on a cell it doesn't get selected and the embedded…
liv a
  • 3,232
  • 6
  • 35
  • 76
0
votes
2 answers

UITableView with sortable columns

I have seen numerous examples for how to use a custom cell in a UiTableView to list data in columns. What I want to know is, what is a good way to interact with this kind of table so that the user can choose a column for sorting? For example, say…