The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
10 views

WheelView not filling parent

I am using Yuri Kanivets's WheelView control and I am finding that it is not filling the parent view even though the layout XML is specifying it to do so. Here is an image of what I mean: Here is ...
0
votes
1answer
36 views

Null Pointer error when trying to utilize a class with AlertDialog.Builder [closed]

Trying to inflate an AlertDialog.Builder. I'm trying to get the date wheel (Yuri Kanivets' wheel) to appear inside of my dialog. Since the exact code that I need exists inside one of his classes, I'm ...
0
votes
1answer
29 views

Null Pointer implementing Android Wheel

I'm trying to implement Yuri Kanivets' Android wheel picker. I am simply trying to place a few strings onto a single wheel. What makes my implementation a little different is that I am trying to ...
0
votes
0answers
50 views

The scroll picker's locked height is huge! Smaller drop down list possibilities?

I am writing an app in which I'd like a user to pick from about 25 choices, but each choice is only about 4 letters long. I would like to use the built in scrolling wheel, but the dimensions are just ...
0
votes
1answer
1k views

jQuery Mobile: Cannot get Mobiscroll demo to work

I'm using code from the Mobiscroll Select Scroller Demo, but the result in Safari, Firefox, and Chrome browsers is a dropdown list, not a wheel picker. I've checked out the existing questions/answers ...
0
votes
0answers
328 views

Mouse scroll wheel for uicontrol slider in MATLAB

I have recently begun using MATLAB 2010b and have a question about using the mouse scroll wheel in guis. I am working on a gui that has within it a uipanel with a 'slider' type uicontrol which ...
0
votes
0answers
115 views

Mathematics for zoom to cursor on mouse wheel scrolling

Have to implement a Directx9 project that involves zoom towards the cursor like Google maps with the mouse wheel scroll (similar to this implementation by Phrogz). Need the mathematical detail and ...
0
votes
1answer
442 views

How do I prevent the scroll wheel from selecting the last row of a TStringGrid?

I have a TStringGrid with several rows in which I implemented some kind of 'read-only' row. More exactly, I don't allow the user to click the penultimate row. If the user clicks the last row nothing ...
6
votes
2answers
2k views

Trigger 'dummy' mouse wheel event

Is there a way to trigger a scroll wheel event with an arbitrary delta. Just like jQuery does with 'click' like: $('#selector').trigger('click'); I need something like that just with an scrollwheel ...
4
votes
1answer
439 views

How to disable mouse scroll wheel zooming in Google Annotated Timeline?

I'm using a Google Annotated Timeline chart and the mouse scrollwheel zooming of the time scale is getting annoying. I want to be able to scroll down my page of charts with my scroll wheel, but the ...
0
votes
0answers
294 views

Forcing behaviour of mouse scrollwheel (scrolling only topmost div)

I have a page with two divs, both with a scrollbar. Clicking the scrollbar with the mouse affects only the div in which the scrollbar resides, but hovering over the scrollbar and using the scrollwheel ...
4
votes
1answer
771 views

Inertial Scrolling & -ScrollWheel: on OS X

THE PROBLEM: I have an NSScrollView. I'm using it to implement a custom "Table View" with rows of data that are actually NSViews. (Note: this is not an instance of NSTableView.) As I scroll ...
12
votes
3answers
10k views

Zoom Canvas to Mouse Cursor

I'm programming a HTML5 < canvas > project that involves zooming in and out of images using the scroll wheel. I want to zoom towards the cursor like google maps does but I'm completely lost on how ...
0
votes
0answers
413 views

Pixelbreaker's AS2 mouse wheel code with the < object > tag

Hi I'm using Pixelbreaker's macmousewheel javascript library for a Flash AS2 project and I'm a bit stumped on how to get the JS working in the html. The following is a working example from the ...
1
vote
2answers
596 views

Scroll wheel bugged in WPF applications

I have an issue that on one computer applications developed using the Windows Presentation Foundation have my scrollwheel all inverted. I scroll 'upwards' and the control in question will go down. And ...
1
vote
1answer
538 views

Mac OS X vs. Windows mouse wheel scrolling

Mac OS X determines what area to scroll by the mouse position. Windows does this by what application is active. So I thought anyway. If Notepad++ is the active application in Windows, I can scroll ...
0
votes
0answers
570 views

Designing an Apple Ipod scrollwheel on Android?

I've seen questions like this asked before on here, but for my next app creation i would like to bring back the Apple click wheel used for scrolling on the old ipods and I've seen it in Iron Man 2 ...
7
votes
2answers
1k views

-How to disable horizontal scrolling within virtualbox on Ubuntu guest, Windows 7 host?

This post is a duplicate from superuser.com, but since I had no answers, I started to doubt it was a user question and maybe more of a programming question (because of the configuration files), so ...
0
votes
1answer
644 views

Scroll Wheel in Delphi 7 with CodeRush

One casualty of my brief dalliance with Delphi 2010 and subsequent return to using Delphi 7 was my acceptance of the wheel-scrolling behaviour in Delphi 7 with CodeRush installed. The scroll wheel ...
5
votes
4answers
7k views

disable mouse wheel on itemscontrol in wpf

I have a usercontrol that has a scrollviewer, then a bunch of child controls like text boxes, radio buttons, and listboxes, etc inside of it. I can use the mouse wheel to scroll the parent ...
0
votes
3answers
888 views

how to create horizontal spinner+timer like this?

is it possible to create a design something like this? any help regarding this would be very helpful for me.the functionality i want is to rotate the wheel left-to-right or right to left for ...
1
vote
4answers
789 views

Flex and mouse wheels

Here is the application I need help with: http://www.nypinball.com/inventory.php The entire box at the top is a Flex application. The box on the left with the list of pinball machines is a VBox. ...
57
votes
7answers
17k views

Using the scrollwheel in GNU screen

How can I setup GNU screen to allow the mouse's scrollwheel to scroll around in the scrollback buffer? I tried to Google about this, but most hits where on how to allow applications inside screen to ...
0
votes
2answers
2k views

Mouse Scroll Wheel and IFRAME

I have an IFRAME with a vertical scroll bar on a page with a vertical scrollbar. I would like to be able to scroll the IFRAME with the scroll wheel, but in IE7 and FF3, when I click the IFRAME and ...
11
votes
2answers
17k views

Using the mouse scrollwheel in GLUT

I want to use the mouse scrollwheel in my OpenGL GLUT program to zoom in and out of a scene? How do I do that?