Questions tagged [user-interaction]

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

303 questions
8
votes
5 answers

Save user input after certain message telegram bot

I am building some telegram bot on python (using this framework pyTelegramBotAPI). And I ran into the problem with user input. I need save user input(it can be any text) after certain bot's message. For example: Bot: - Please describe your…
8
votes
2 answers

Is there any way to Detect userInterations in Android fragments?

Could any one help me out with this situation. I have implemented OnUserInteraction() method for Android Activity it is working fine for me. But I want it for Fragments too.How can i able call OnUserInteraction() or is there any another way to…
Hari Enaganti
  • 199
  • 1
  • 3
  • 12
8
votes
2 answers

iOS7 Sprite Kit how to disable touches on a sprite to make it "tap through"?

I know that for traditional UIViews, I can set "enable user interaction" flag to NO, and the view will no longer respond to touches, letting the views below them receive touches. Is there some way to implement the same "tap through" functionality in…
Alex Stone
  • 41,555
  • 51
  • 213
  • 379
6
votes
1 answer

Jquery detect all dom event calls and user interactions

I want to track all user actions in order to record the user behavior. For example, a user clicks on a link and I want to call a method that does something with that information before executing the page load. This should also work with mouse hover…
Alp
  • 27,423
  • 26
  • 110
  • 190
6
votes
1 answer

Interactive Android Animation

I am trying to implement an interaction-animation in android where the user can change the size of object and rotate it with interaction. This is not exactly what I am trying to implement, but something similar. I want to allow the user to change…
6
votes
2 answers

When exactly is onUserInteraction() called?

in my app I got a thrad that checks every 60s data from a webservice (defined in onCreate()): new Thread(new Runnable() { @Override public void run() { while (true) { try { …
6
votes
4 answers

Detecting user activity in android

I would like to detect when was the last time the user interacted with the screen. I'm not interested in doing any malware/spyware stuff, just need to calculate how much time has elapsed since the last time the user tapped on the screen. The goal is…
Junior Buckeridge
  • 2,035
  • 2
  • 18
  • 25
6
votes
6 answers

UIButton not clickable when custom view called

I am new to iPhone development,I need help in understanding the below,as I am able to create newView using the following UIView *newView=[[UIView alloc]initWithFrame:CGRectMake(0, 0, 80, 30)]; newView.backgroundColor=[UIColor…
Shekhu
  • 1,910
  • 4
  • 22
  • 47
6
votes
1 answer

How to detect user interaction of any kind?

SECURITY ISSUE: I don't now how it happens, but readers of this questions come up with idea that solutions to this problem is a security threat. So please keep in mind, all data I am interested in is measuring time of user in/activity. That's all.…
greenoldman
  • 15,621
  • 22
  • 103
  • 174
5
votes
2 answers

How to move a UIImageView with Touch

I'm trying to create moving functionality to my imageView (maskPreview in the code below), so that users can move a picture, which is contained in maskPreview, around the screen. Here's my code for touch begin and touch…
Septronic
  • 1,070
  • 12
  • 29
5
votes
4 answers

Navigate manually with a cursor through nested lists by only providing "left()" and "right()" as commands?

Eventhough I write in python I think the abstract concept is more interesting to me and others. So pseudocode please if you like :) I have a list with items from one of my classes. Lets do it with strings and numbers here, it really doesn't matter.…
nilshi
  • 474
  • 5
  • 16
5
votes
2 answers

How to detect Ctrl+V in Silverlight 4?

What is the best way to detect Ctrl+V in Silverlight? I want to detect Ctrl+V, to get access to the Clipboard.
eflles
  • 5,890
  • 10
  • 38
  • 54
5
votes
2 answers

How to normalize sequence of numbers?

I am working user behavior project. Based on user interaction I have got some data. There is nice sequence which smoothly increases and decreases over the time. But there are little discrepancies, which are very bad. Please refer to graph below: …
Adorn
  • 2,338
  • 1
  • 19
  • 39
4
votes
3 answers

Objective C: How to disable user interaction to all of tab bars except one?

As what the title suggests, I would like to be able to lock all my tab bars except for one. And only after the user completes an action will I enable all the rest of the tab bars. How can I do that?
Zhen
  • 11,973
  • 37
  • 117
  • 194
4
votes
3 answers

How to create a custom UIControlEvent in Swift?

I'm creating a custom UI-Element and want to trigger a custom UIControlEvent. I already found out, that there is a range ApplicationReserved. Sadly this doesn't work, because it "does not conform to protocol 'RawRepresentable': enum MyCustomEvents :…
hendra
  • 1,403
  • 2
  • 12
  • 26
1
2
3
20 21