Displaying 20 results from an estimated 2166 matches for "scrolls".
Did you mean:
scroll
2007 Oct 25
0
6 commits - libswfdec/swfdec_as_interpret.c test/trace
libswfdec/swfdec_as_interpret.c | 89 ++++++++++++++++++++++++-------
test/trace/Makefile.am | 9 +++
test/trace/cast-5.swf |binary
test/trace/cast-5.swf.trace | 2
test/trace/cast-6.swf |binary
test/trace/cast-6.swf.trace | 2
test/trace/cast-7.swf |binary
2007 Oct 18
0
11 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
libswfdec/swfdec_as_strings.c | 4
libswfdec/swfdec_text_field.c | 1
libswfdec/swfdec_text_field.h | 34 ---
libswfdec/swfdec_text_field_movie.c | 265 ++++++++++++++++---------------
libswfdec/swfdec_text_field_movie.h | 47 ++++-
libswfdec/swfdec_text_field_movie_as.c | 115 +++++++++++--
test/trace/Makefile.am | 17
2009 Jun 07
2
Scrolling behavior in View()
Hi,
I've realized that the scrolling behavior in View() is unlike most other
applications. It seems that the minimum scroll size is very large for
large objects( i.e., a vector of 1M integers), and it might be that this
scroll is proportional to the size of the object.
Try this:
a = 1:1000000
View(a)
Click once on the scroll arrow down. It will move to item 1001.
It could be that the scroll
2007 Nov 07
0
14 commits - libswfdec/swfdec_as_context.c libswfdec/swfdec_as_interpret.c libswfdec/swfdec_as_interpret.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_script.c libswfdec/swfdec_sprite_movie.c libswfdec/swfdec_tag.c libswfdec/swfdec_text_field_movie.c
libswfdec/swfdec_as_context.c | 33 --
libswfdec/swfdec_as_interpret.c | 397 +++++++++++++++----------------
libswfdec/swfdec_as_interpret.h | 10
libswfdec/swfdec_net_stream.c | 1
libswfdec/swfdec_script.c | 39 ---
libswfdec/swfdec_sprite_movie.c | 72 +++++
libswfdec/swfdec_tag.c | 2
2008 Jun 05
0
Javascript & Scrolling
...;
}
/** If delta is nonzero, handle it.
* Basically, delta is now positive if wheel was scrolled up,
* and negative, if wheel was scrolled down.
*/
if (delta)
handle(delta);
/** Prevent default actions caused by mouse wheel.
* That might be ugly, but we handle scrolls somehow
* anyway, so don''t bother here..
*/
if (event.preventDefault)
event.preventDefault();
event.returnValue = false;
}
// mozilla
Event.observe(''plist_con'', ''DOMMouseScroll'', wheel);
// IE/Opera
Event.observe(...
2006 Jan 02
4
Autocompleter with a scroll bar
Has anyone been able to make scrollable results for an autocompleter?
Thanks!
2006 Jan 30
0
Draggable with auto-scroll
...et(this.options.scroll);
//p[0] += this.options.scroll.scrollLeft;
//p[1] += this.options.scroll.scrollTop;
p.push(p[0]+this.options.scroll.offsetWidth);
p.push(p[1]+this.options.scroll.offsetHeight);
var speed = [0,0];
if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] =
pointer[0]-(p[0]+this.options.scrollSensitivity);
if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] =
pointer[1]-(p[1]+this.options.scrollSensitivity);
if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] =
pointer[0]-(p[2]-this.op...
2005 Aug 15
6
Possible to scroll window when user drags a draggable?
It doesn''t seem to be possible, but perhaps somebody knows a trick. I
have some lists that get too long and users can''t drag from list 10,
for example, to list 1. Is there a way to get the browser window to
scroll as they drag the item up?
Thanks!
Tom
2006 Mar 22
6
RE: Support for window scrolling fordraganddrop
...oned elements for some reason. So, I
just gave up for the time being. Anyone know of a way to get the width
and height on positioned elements in IE?
Anyway, the patch fixes it so that the dragged element moves with the
scroll, even when the mouse cursor leaves the document, and it now
passes the scrollSensitivity and scrollSpeed from Sortable to Draggable.
Greg
_______________________________________________
Rails-spinoffs mailing list
Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
2008 Mar 13
3
scrolling in a <select multiple="multiple"> list
...orOptions[opt.index]; //
payorOptions is the array
});
An unintended consequence is that the select list is scrolled to the
bottom as I iterate through each one, forcing the user to manually
scroll back up to select another option.
I''ve tried using Element.scrollTo(), but it scrolls the whole page,
and I''m doing a rotten job of figuring out how to use scroll offsets
and wondering if they''re applicable to a <select>.
I''m hoping someone can suggest a strategy to either update the
<option> elements without scrolling the <select> list,...
2008 Feb 13
1
changing scroll bar behavior
I need to change the behavior of the scrollbar when the user presses
up/down arrows on the scroll bar. Specifically, I''d like to be able to
set the number of pixels that scrollTop changes by when this happens.
I have a div with no content that I set a height equal to the number
of discrete positions I need to scroll through. I then tried to set
lineHeight and fontSize to 1 and 1px
2006 Sep 06
1
Scroll option for Sortable.create
I have been unable to get the scroll option to work properly. I am
setting
Position.includeScroll Offsets? = true;
in my script prior to calling Sortable.create and overflow:scroll is
part of my div container class. The scroll bars appear and I am able to
add/remove items, but the automatic scrolling (as described in the
documentation) does''t fire. In others word, the container
2006 Jan 10
4
Autoscrolling for Draggables and Sortables
...mpt to auto-scroll this element when dragging.
See test/functional/dragdrop3_test.html for a demo/usage.
It''s modelled after the behaviour in the Mac OS X finder, with
variable scrolling
speed depending on the distance to the scroll element edge.
Also, it''s tweakable with the scrollSpeed and scrollSensitivity options.
Note that the exact behaviour and options names might still change,
I''m open
to suggestions on this. Also, it''s currently not working for
scrolling the window
(but that should be a trivial addition).
So-- let''s test and discuss th...
2009 Aug 28
2
TreeCtrl Scrolling
I have been playing around with the wxRuby TreeCtrl for a couple of
weeks now and I can''t figure out how to get the scrolling to work. I
believe it has scrolling built in but I can''t get the to show up. I can
place the TreeCtrl in a ScrolledWindow and scroll around over the tree
but that breaks TreeItem visibility checks because the TreeCtrl doesn''t
know about
2006 Jun 12
5
scriptaculous & sortables/draggables scrolling?
Re,
Would anyone happen to know how to make sortable/draggable scroll down
the page while moving the object if the page happens to be larger than
the screen size? These functions seem to work only within the visible
working space.
Right now I have workaround whereby I have an omnipresent DIV on the
screen to which I drop an element, then scroll down in the browser to
a certain point, and then
2007 Nov 07
0
2 commits - libswfdec/swfdec_resource.c libswfdec/swfdec_text_field_movie.c
libswfdec/swfdec_resource.c | 1 +
libswfdec/swfdec_text_field_movie.c | 26 ++++++++++++++++----------
2 files changed, 17 insertions(+), 10 deletions(-)
New commits:
commit 4ff1496e5f2b1a38e4cf51232ebae71172bba13a
Author: Pekka Lampila <pekka.lampila at iki.fi>
Date: Thu Nov 8 00:27:06 2007 +0200
Fix compiler warning in swfdec_resource_loader_target_error
diff --git
2005 Nov 04
19
Drag & Scroll
When using drag and drop, the browser window will not scroll if you move the mouse off the page. This makes it very difficult, if not impossible to create certain types of web applications.
I know this has been mentioned before and is on the Wish List, but it''s very frustrating.
If you look at this other Javascript library called "Drag''nDrop & DHTML Library"
2010 May 10
3
Dataframe horizontal scrolling
R experts,
I am working with large multivariable data frames (> 50 variables)
and I would like to scroll horizontally across my output
to view each data frame rather than having to scroll down vertically-
wrapped data frames.I have been using R Commander as a programming
interface. If I assign a long character string to a vector I can scroll
across its output easily but not a dataframe of
2006 Feb 27
1
Help!!! horizontal scroll doesn''t appear on the browser!!!
Hi,
in my rhtml, I have two parts, the main part and a
partial, the main part has a width almost the same,
but
the partial is much longer and width. when it happens.
the vertical scroll appear correctly on the browser,
but the horizontal scroll doesn''t appear on the
browser, it appears instead on the partial render
part, so I have to scoll down until the end of the
partial, that use the
2012 Jan 20
6
How to disable or fix Inertial/Momentum Scrolling?
We have an app (Online Bible) that works under WINE except you have to disable inertial/momentum scrolling on the Mac; otherwise when you scroll in the app's window, scrolling never stops until it reaches the end of all text in the window. Surely others have run into this behavior? Is there a way to disable inertial scrolling within the WINE app window, without having to disable it