Questions tagged [autoscroll]

A behaviour of a control that allows automatic scrolling capability.

592 questions
3
votes
1 answer

Angular UI Router: Setting autoscroll on header view does not scroll to top

TL;DR: With Angular UI Router, is it possible to autoscroll to a view of the same state that the template displaying it belongs to? The Setup I have an Angular 1.4.1 app, using UI Router 0.2.15 and Angular Material 0.10.0. Example Plunk There is a…
Shaun Scovil
  • 3,905
  • 5
  • 39
  • 58
3
votes
1 answer

smooth scroll with autoscroll

I have a Panel on a Windows Form. The Panel has autoscroll enabled. The scroll bars appear as they should and the scroll bars generally operate as they should. But the content of the panel is only updated when the mouse button is released. How…
Mark T
  • 3,464
  • 5
  • 31
  • 45
3
votes
1 answer

firefox startScroll and sendAsyncMessage

In recent version of Firefox 31+ the startScroll(e) function was changed and should be called with startScroll(scrolldir, screenX, screenY) Diff of the…
3
votes
1 answer

Move scrollbars automatically when doing a rectangle selection for cropping an image in the picture box with panel's Autoscroll = True

I have a picturebox on top of a panel..I have a rectangle selection which can be used to select a portion of the image for cropping..Since I have set the Panel's Autoscroll property = True, and since the image in picture box is big, I get the…
Shiva
  • 235
  • 1
  • 4
  • 14
3
votes
4 answers

Cannot auto scroll text in TextView

I'm trying to have a auto scroll TextView when my text is too long. I followed every tutorial or tips posted here on stackoverflow (yes I readed a bunch of topics similar to this but no one fixed it). So I have my activity layout like…
ferrazrafael
  • 83
  • 1
  • 10
3
votes
3 answers

Periodically scrape and download all images from a website with javascript auto-scroll

I have found a website that has lot of high quality free images hosted on Tumblr(It says do whatever you want with theme images :P) I am running on Ubuntu 12.04LTS. I need to write a script which will run periodically(say daily) and download only…
Gokul N K
  • 2,428
  • 2
  • 32
  • 40
3
votes
1 answer

Creating autoscroll feature in QGraphicsView

I have a QGraphicsView and a QGraphicsScene. Depending on user input some QGraphicsItem may be placed on the scene. This item is both selectable and movable. When the scene is larger than the view scrollbars appear (they are set to show when…
3
votes
2 answers

Vim automatic scroll buffer

I'm trying to do something very simple: I have two buffers in Vim, one with source code (B1), another one with a text file a.txt (B2). The source code in B1 is run with a custom shortcut in Vim, filling a.txt with text. I want Vim to automatically…
oclinux
  • 31
  • 2
3
votes
1 answer

Set AutoScrollPosition of horizontal scrollbar on tabpage

I have a tabcontrol that has a tabpage that I've added autoscroll to via the properties window. When the scrollbars appear, the horizontal scrollbar is automatically scrolled all the way to the right. This is the exact opposite of what I need, when…
TypeM1smatch
  • 225
  • 3
  • 7
  • 15
3
votes
3 answers

how can I make a scrollView autoscroll?

I have this scrollView: self.scrollView = [[UIScrollView alloc] initWithFrame:self.view.bounds]; self.scrollView.autoresizingMask = UIViewAutoresizingFlexibleHeight; self.scrollView.contentSize = CGSizeMake(320,3000); _scrollView.frame =…
Mihai
  • 131
  • 1
  • 1
  • 10
3
votes
2 answers

How do I prevent a DataGridView from autoscrolling when the datasource changes?

I tried this (http://brainof-dave.blogspot.com/2007/08/turning-off-auto-scrolling-in-bound.html) in the "RowChanged" event on the DataTable that is the data source for the DataGridView, but to no avail. Basically, I have a DataGridView with a…
alexD
  • 2,368
  • 2
  • 32
  • 43
3
votes
1 answer

Autoscroll with setInterval/clearInterval

Im relatively new to JS coding, and can't get this little number to work. Can anyone tell me what I'm doing wrong? My JavaScript is: incrementScroll = function() { window.scrollBy(0, 3) ; } startScrollLoop = function() { …
Johnny Venom
  • 325
  • 4
  • 8
3
votes
4 answers

jquery: how to loop a div

using jquery, how can i auto scroll a div continuously? like the news and features section of this website: http://animalsasia.org/. And also when you hover over the slider it stops the scrolling until you hover away. is there a jquery plugin…
dave
  • 14,991
  • 26
  • 76
  • 110
2
votes
1 answer

Horizontal auto-scroll of text in a TextBlock

I want to have a fixed-width TextBlock that has long, unbroken, horizontal text, and am looking for a good approach to allow all the text to be read by the user. I want something more sophisticated than just putting the control inside a…
Lyall
  • 895
  • 9
  • 20
2
votes
2 answers

AutoScrolling in Tableviewcell

-(IBAction)_clickautoscroll:(id)sender { NSTimer *autoscrollTimer; if (autoscrollTimer == nil) { autoscrollTimer = [NSTimer scheduledTimerWithTimeInterval:(55.0/1000.0) …
stackiphone
  • 1,245
  • 3
  • 19
  • 41