Questions tagged [user-interaction]

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

326 questions
0
votes
0 answers

GMail Interaction with .Net

We have a custom line of business .Net WinForms application that currently exposes the Microsoft Outlook Interop assemblies to create a new message, add the recipient(s), subject line, and attachment(s), then leaves the new message (Outlook) window…
Brad B
  • 1
  • 1
0
votes
1 answer

Adding Time Delay to Character Movement

I've been looking to make an animation using ActionScript 3.0 in Adobe Flash Professional where a character (John) can be moved by the viewer using the arrow keys. I've made two sprites, John (the default standing character) and JohnLeg (the…
0
votes
2 answers

Navigable UITableView section footers in iOS?

I'd like to implement a "Sign In" form similar to those in already existing apps, for example: Screenshots are from Twitter and Dropbox. The "Forgot password?" option is tappable and it navigates to another view. I'd like to make something like…
AppsDev
  • 12,319
  • 23
  • 93
  • 186
0
votes
1 answer

iPad html elements not appearing - until user interaction

I'm having a problem with some text and images not loading on the page when using an iPad, 2 and 3. It's quite a random, intermittent problem but normally seems to effect the same sort of items. I can't see what is different or special about those…
Baxter
  • 169
  • 4
  • 14
0
votes
1 answer

Plot points at 2d on matlab and show the associated image when click on a point

I have a collection of images associated to 2d points. I want tot plot those points on a figure and when I click on the points I expect to see the corresponding image on the screen. Suppose I have a matrix IMAGES that is nxd where n is number of…
erogol
  • 13,156
  • 33
  • 101
  • 155
0
votes
1 answer

Select storing folder in client side

I'm using PhpWord to save some data in Word format. The thing is that I need the user to select the place where it's needed to be saved. Right now I set it in the following way: $objWriter = PHPWord_IOFactory::createWriter($PHPWord,…
ZanattMan
  • 746
  • 1
  • 7
  • 26
0
votes
2 answers

iPad iOS6 is it possible to make a view "tap through", while keeping gesture recognizers on that view active?

I'm trying to create an overlay over the screen of one of my apps. Ideally, the overlay would receive tap gestures, while still allowing the user to interact with views under the overlay. I know that views can be made "tap through" by setting their…
Alex Stone
  • 46,408
  • 55
  • 231
  • 407
0
votes
1 answer

Felxible term clouds

I have to implement dynamic term clouds. I need to let the users remove terms from clouds or assign them to from one cloud to another one. They should be also capable of merging or splitting clouds. Hence, the clouds should be completely dynamic in…
Hamid Nsh
  • 1
  • 2
0
votes
1 answer

View loaded from nib not getting touch event

I have created a custom keyboard, using some buttons. I created them using interface builder, and I create a CustomKeyboardView file.. So I have 3 files CustomKeyboardView.h CustomKeyboardView.m CustomKeyboardView.xib I am adding this view to my…
Krishnabhadra
  • 34,169
  • 30
  • 118
  • 167
0
votes
1 answer

AJAX Pattern for interactive user decisions

I'm just trying to find a pattern / best practice to come up with interactive user decisions. So basically I have a (quite large) form the user has to fill. Once he submits, an AJAX-Post-Request is sent to the server. At first some fault checks are…
wjentner
  • 525
  • 1
  • 7
  • 16
0
votes
0 answers

Browser interacting with python script

Iam working on small app where user writes program and execute them from browser. First thought of going with PHP but i didn't find a way to INTERACT with running program. Then I found Python and as of now Iam using subprocess.Popen. Now everything…
Murali
  • 21
  • 5
0
votes
3 answers

Identifying what features in my iOS apps are used

I have several iPhone/iPad apps on the App Store. I would like to add snippets of code in my apps that will identify user behavior. For example what features in the app are used the most or the least. Does anybody have a good idea on how to…
Dogahe
  • 1,380
  • 2
  • 20
  • 50
0
votes
1 answer

How to set toolbar userInteractionEnabled = NO?

I was using method in below to show a toolbar on bottom with a title. UIBarButtonItem *item = [[UIBarButtonItem alloc] initWithTitle:@"Your Title" style:UIBarButtonItemStylePlain …
Lothario
  • 300
  • 1
  • 5
  • 10
0
votes
1 answer

gnuplot wxt interactivity in c++

i need help programmatically plot graphs using Gnuplot. I have N graphs I want to plot each on a different window. I currently generate a string containing a gnuplot script, where every plot call comes after a "set terminal wxt n", with…
Alfatau
  • 233
  • 2
  • 8
0
votes
0 answers

Issues with user interaction on UIScrollView on another page

I have a UIScrollView with 3 pages. The problem is that in my app the user must be able to interact with all the pages at the same time, and for some reason it appears that there's some automatic functionality that disables the user interaction on…