Re: [jQuery] Kelvin's Scroll Pane

2007-01-24 Thread Kelvin Luck
Mateusz Misiorny wrote:
 On 1/23/07, Kelvin Luck [EMAIL PROTECTED] wrote:
 
 Thanks for the feedback. I'm afraid I can't reproduce your problem
 though... For me (IE6 and FF2 on WinXP) when you click an arrow it moves
 immediately, pauses, moves, pauses and then starts moving quite
 smoothly... Actually, I just noticed that this is slightly different to
 the default behaviour on Windows and so I've changed it so that it now
 only pauses once briefly after the first movement,
 
 For me it still behaves the same.
 If I click with 1 sec intervals, only some clicks have any effect on
 the scrollbar (like 1 in ~3, feels like it was accumulating the time
 in clicked state). But each click is being recognized because the
 arrows change to pressed state.
 Before I wrote about it I checked also in Opera, and it is consistent,
 so I assumed it must be js issue, not a browser quirk. I am on Linux,
 that's true, but I don't think it's an issue here.
 
 Interesting that you cannot reproduce it, I will try to debug it then.
 
 Matt

Hi,

Ahhh - I see what you meant. When you click repeatedly and quickly on 
the arrow button (I was clicking and holding). I've now fixed this issue 
- thanks for the report!

Cheers,

Kelvin :)

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-24 Thread Kelvin Luck
Yehuda Katz wrote:
 Cool! I hope my efforts were useful in your updates!
 
 I noticed a slight glitch in IE with the OSX display, which could easily 
 be resolved by simply moving the dragger's z-index in front of the bar 
 (and perhaps some sort of png opacity fix).
 
 -- Yehuda

Yes - thanks for your efforts with the plugin :)

I've kind of fixed the IE issue although it's still not perfect. Let me 
know if you can come up with a better solution but that's the best I can 
do for now...

Cheers,

Kelvin :)

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-23 Thread Mateusz Misiorny
On 1/23/07, Kelvin Luck [EMAIL PROTECTED] wrote:

 Thanks for the feedback. I'm afraid I can't reproduce your problem
 though... For me (IE6 and FF2 on WinXP) when you click an arrow it moves
 immediately, pauses, moves, pauses and then starts moving quite
 smoothly... Actually, I just noticed that this is slightly different to
 the default behaviour on Windows and so I've changed it so that it now
 only pauses once briefly after the first movement,

For me it still behaves the same.
If I click with 1 sec intervals, only some clicks have any effect on
the scrollbar (like 1 in ~3, feels like it was accumulating the time
in clicked state). But each click is being recognized because the
arrows change to pressed state.
Before I wrote about it I checked also in Opera, and it is consistent,
so I assumed it must be js issue, not a browser quirk. I am on Linux,
that's true, but I don't think it's an issue here.

Interesting that you cannot reproduce it, I will try to debug it then.

Matt

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-23 Thread Brandon Aaron
Just wanted to confirm that I see the same thing.

--
Brandon Aaron

On 1/23/07, Mateusz Misiorny [EMAIL PROTECTED] wrote:
 On 1/23/07, Kelvin Luck [EMAIL PROTECTED] wrote:

  Thanks for the feedback. I'm afraid I can't reproduce your problem
  though... For me (IE6 and FF2 on WinXP) when you click an arrow it moves
  immediately, pauses, moves, pauses and then starts moving quite
  smoothly... Actually, I just noticed that this is slightly different to
  the default behaviour on Windows and so I've changed it so that it now
  only pauses once briefly after the first movement,

 For me it still behaves the same.
 If I click with 1 sec intervals, only some clicks have any effect on
 the scrollbar (like 1 in ~3, feels like it was accumulating the time
 in clicked state). But each click is being recognized because the
 arrows change to pressed state.
 Before I wrote about it I checked also in Opera, and it is consistent,
 so I assumed it must be js issue, not a browser quirk. I am on Linux,
 that's true, but I don't think it's an issue here.

 Interesting that you cannot reproduce it, I will try to debug it then.

 Matt

 ___
 jQuery mailing list
 discuss@jquery.com
 http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-23 Thread Yehuda Katz

Cool! I hope my efforts were useful in your updates!

I noticed a slight glitch in IE with the OSX display, which could easily be
resolved by simply moving the dragger's z-index in front of the bar (and
perhaps some sort of png opacity fix).

-- Yehuda

On 1/22/07, Kelvin Luck [EMAIL PROTECTED] wrote:


OK - I've done some tweaks to the jScrollPane plugin...

There is now an optional parameter showArrows which controls whether
or not control arrows appear at the top and the bottom of the scroller:

http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

I've also made it easier to do advanced skinning of the bar through CSS
- check out the examples here:

http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html

Feedback appreciated,

Kelvin :)

Kelvin Luck wrote:
 Hi,

 Nice enhancements Yehuda - I'll integrate some of these ideas into the
 main branch of the plugin tonight...

 I have a couple of issues. Like Marshall, I think that clicking and
 holding an arrow should continue scrolling down as an OS scrollbar does.
 See what happens when you click and hold the mouse on an empty bit of
 track in my example (in fact, I haven't tried Safari so it might not
 happen there so check in FF if you don't see what I'm describing). There
 is already the code in the plugin which deals with setting the interval
 and with speeding up the scroll as the mouse button is held down for
 longer (like a default OS scrollbar works).

 Also, the keyboard support seems kind of strange... How useful is
 keyboard support if you have to mouseover an element to initialise it...
 I think that if there is keyboard support it should let you tab to
 select a pane and then the keyboard support should be initialised (e.g.
 onfocus). Again, this is how the os scrollbars work.

 Anyway, I'll add in optional arrow buttons tonight and let the list know
 when my page is updated,

 Cheers,

 Kelvin :)

 Yehuda Katz wrote:
 Done.

 However, it does not seem like mousedown continues firing if you hold
it
 down. If you like, I can do a setInterval on mousedown that continues
 firing the action until mouseup (when I clear the interval). Does that
 sound reasonable?

 Tomorrow, I will work on IE support, and making the scroll pane work
 with less CSS.

 -- Yehuda

 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 The up and down arrows only scroll the pane after releasing the
 mouse button. I was expecting them to start scrolling the content
 while clicking and holding the mouse button down. Similar to how it
 scrolls when clicking in the middle of the scrollbar area.



 -Marshall



 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Sunday, January 21, 2007 7:47 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane



 I'm not sure what you mean.

 -- Yehuda

 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 Yehuda ,



 These are great enhancements to the scrollbar plugin. Would it be
 possible to have it scroll on mousedown?



 Thanks,
 Marshall



 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Saturday, January 20, 2007 7:31 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane



 And to see what the new scroll pane is capable of, I have updated
 the demo:

 http://www.visualjquery.com/scroll_pane/index.htm

 On 1/20/07, *Yehuda Katz*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 Hey Guys,

 I have been working on a project that could make use of Kelvin's
 scroll pane.

 I have made a few enhancements:
 * Keyboard support
 * Separate top/middle/bottom elements for the dragger
 * activated class for track when scrolling or key action is
possible

 This means that you can now have a pretty scrollbar that has a
 separate activated/deactivated state.

 Take a look at: http://www.visualjquery.com/scroll_pane/index.htm
 http://www.visualjquery.com/scroll_pane/index.htm

 It's not fully ready, so any feedback would be most appreciated.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-22 Thread Kelvin Luck
Hi,

Nice enhancements Yehuda - I'll integrate some of these ideas into the 
main branch of the plugin tonight...

I have a couple of issues. Like Marshall, I think that clicking and 
holding an arrow should continue scrolling down as an OS scrollbar does. 
See what happens when you click and hold the mouse on an empty bit of 
track in my example (in fact, I haven't tried Safari so it might not 
happen there so check in FF if you don't see what I'm describing). There 
is already the code in the plugin which deals with setting the interval 
and with speeding up the scroll as the mouse button is held down for 
longer (like a default OS scrollbar works).

Also, the keyboard support seems kind of strange... How useful is 
keyboard support if you have to mouseover an element to initialise it... 
I think that if there is keyboard support it should let you tab to 
select a pane and then the keyboard support should be initialised (e.g. 
onfocus). Again, this is how the os scrollbars work.

Anyway, I'll add in optional arrow buttons tonight and let the list know 
when my page is updated,

Cheers,

Kelvin :)

Yehuda Katz wrote:
 Done.
 
 However, it does not seem like mousedown continues firing if you hold it 
 down. If you like, I can do a setInterval on mousedown that continues 
 firing the action until mouseup (when I clear the interval). Does that 
 sound reasonable?
 
 Tomorrow, I will work on IE support, and making the scroll pane work 
 with less CSS.
 
 -- Yehuda
 
 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:
 
 The up and down arrows only scroll the pane after releasing the
 mouse button. I was expecting them to start scrolling the content
 while clicking and holding the mouse button down. Similar to how it
 scrolls when clicking in the middle of the scrollbar area.
 
  
 
 -Marshall
 
  
 
 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Sunday, January 21, 2007 7:47 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane
 
  
 
 I'm not sure what you mean.
 
 -- Yehuda
 
 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 Yehuda ,
 
  
 
 These are great enhancements to the scrollbar plugin. Would it be
 possible to have it scroll on mousedown?
 
  
 
 Thanks,
 Marshall
 
  
 
 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Saturday, January 20, 2007 7:31 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane
 
  
 
 And to see what the new scroll pane is capable of, I have updated
 the demo:
 
 http://www.visualjquery.com/scroll_pane/index.htm
 
 On 1/20/07, *Yehuda Katz*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:
 
 Hey Guys,
 
 I have been working on a project that could make use of Kelvin's
 scroll pane.
 
 I have made a few enhancements:
 * Keyboard support
 * Separate top/middle/bottom elements for the dragger
 * activated class for track when scrolling or key action is possible
 
 This means that you can now have a pretty scrollbar that has a
 separate activated/deactivated state.
 
 Take a look at: http://www.visualjquery.com/scroll_pane/index.htm
 http://www.visualjquery.com/scroll_pane/index.htm
 
 It's not fully ready, so any feedback would be most appreciated.
 
 -- 
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325
 
 
 
 
 -- 
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325
 
 
 ___
 jQuery mailing list
 discuss@jquery.com mailto:discuss@jquery.com
 http://jquery.com/discuss/

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-22 Thread Kelvin Luck
OK - I've done some tweaks to the jScrollPane plugin...

There is now an optional parameter showArrows which controls whether 
or not control arrows appear at the top and the bottom of the scroller:

http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

I've also made it easier to do advanced skinning of the bar through CSS 
- check out the examples here:

http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html

Feedback appreciated,

Kelvin :)

Kelvin Luck wrote:
 Hi,
 
 Nice enhancements Yehuda - I'll integrate some of these ideas into the 
 main branch of the plugin tonight...
 
 I have a couple of issues. Like Marshall, I think that clicking and 
 holding an arrow should continue scrolling down as an OS scrollbar does. 
 See what happens when you click and hold the mouse on an empty bit of 
 track in my example (in fact, I haven't tried Safari so it might not 
 happen there so check in FF if you don't see what I'm describing). There 
 is already the code in the plugin which deals with setting the interval 
 and with speeding up the scroll as the mouse button is held down for 
 longer (like a default OS scrollbar works).
 
 Also, the keyboard support seems kind of strange... How useful is 
 keyboard support if you have to mouseover an element to initialise it... 
 I think that if there is keyboard support it should let you tab to 
 select a pane and then the keyboard support should be initialised (e.g. 
 onfocus). Again, this is how the os scrollbars work.
 
 Anyway, I'll add in optional arrow buttons tonight and let the list know 
 when my page is updated,
 
 Cheers,
 
 Kelvin :)
 
 Yehuda Katz wrote:
 Done.

 However, it does not seem like mousedown continues firing if you hold it 
 down. If you like, I can do a setInterval on mousedown that continues 
 firing the action until mouseup (when I clear the interval). Does that 
 sound reasonable?

 Tomorrow, I will work on IE support, and making the scroll pane work 
 with less CSS.

 -- Yehuda

 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED] 
 mailto:[EMAIL PROTECTED] wrote:

 The up and down arrows only scroll the pane after releasing the
 mouse button. I was expecting them to start scrolling the content
 while clicking and holding the mouse button down. Similar to how it
 scrolls when clicking in the middle of the scrollbar area.

  

 -Marshall

  

 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Sunday, January 21, 2007 7:47 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane

  

 I'm not sure what you mean.

 -- Yehuda

 On 1/21/07, *Marshall Salinger*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 Yehuda ,

  

 These are great enhancements to the scrollbar plugin. Would it be
 possible to have it scroll on mousedown?

  

 Thanks,
 Marshall

  

 -Original Message-
 *From:* [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED]] *On Behalf Of *Yehuda Katz
 *Sent:* Saturday, January 20, 2007 7:31 PM
 *To:* jQuery Discussion.
 *Subject:* Re: [jQuery] Kelvin's Scroll Pane

  

 And to see what the new scroll pane is capable of, I have updated
 the demo:

 http://www.visualjquery.com/scroll_pane/index.htm

 On 1/20/07, *Yehuda Katz*  [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] wrote:

 Hey Guys,

 I have been working on a project that could make use of Kelvin's
 scroll pane.

 I have made a few enhancements:
 * Keyboard support
 * Separate top/middle/bottom elements for the dragger
 * activated class for track when scrolling or key action is possible

 This means that you can now have a pretty scrollbar that has a
 separate activated/deactivated state.

 Take a look at: http://www.visualjquery.com/scroll_pane/index.htm
 http://www.visualjquery.com/scroll_pane/index.htm

 It's not fully ready, so any feedback would be most appreciated.


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-22 Thread Mateusz Misiorny
On 1/22/07, Kelvin Luck [EMAIL PROTECTED] wrote:
 OK - I've done some tweaks to the jScrollPane plugin...

 There is now an optional parameter showArrows which controls whether
 or not control arrows appear at the top and the bottom of the scroller:

 http://www.kelvinluck.com/assets/jquery/jScrollPane/jScrollPane.html

 I've also made it easier to do advanced skinning of the bar through CSS
 - check out the examples here:

 http://www.kelvinluck.com/assets/jquery/jScrollPane/examples.html

 Feedback appreciated,

Hi Kelvin,

Cool stuff!
I hit a small bug though. When clicking (pressing  immediately
releasing) on an arrow, the click is not recognized. The pane is not
scrolled.
If you hold, the interval fires and it works.
I didn't look into the code, but sounds like a small workaround is
needed to account for a click (before the interval fires).

Matt

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-21 Thread Marshall Salinger
Yehuda,
 
These are great enhancements to the scrollbar plugin. Would it be
possible to have it scroll on mousedown? 
 
Thanks,
Marshall
 
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
Behalf Of Yehuda Katz
Sent: Saturday, January 20, 2007 7:31 PM
To: jQuery Discussion.
Subject: Re: [jQuery] Kelvin's Scroll Pane
 
And to see what the new scroll pane is capable of, I have updated the
demo:

http://www.visualjquery.com/scroll_pane/index.htm
On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:
Hey Guys,

I have been working on a project that could make use of Kelvin's scroll
pane.

I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is possible 

This means that you can now have a pretty scrollbar that has a separate
activated/deactivated state.

Take a look at: http://www.visualjquery.com/scroll_pane/index.htm 

It's not fully ready, so any feedback would be most appreciated.

-- 
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325 



-- 
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325 
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-21 Thread Karl Swedberg
Ahh! I get it now. Because I was looking at them in Safari, I didn't  
notice that they were actually emulating the Apple scrollbars. Now  
that I've had a chance to see them in Firefox for Windows, I see the  
beauty. Well done, Yehuda. Very well done.



--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 20, 2007, at 11:25 PM, Yehuda Katz wrote:


Now it's just two scroll panes ;)

-- Yehuda

On 1/20/07, Karl Swedberg [EMAIL PROTECTED] wrote:
Hey Yehuda,

It was looking really cool when there was only one scroll pane on  
the page. Now it looks like it's just a couple DIVs with a set  
height and width and overflow: auto.


Maybe something isn't firing? Looked at it in FF2 Mac.


--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 20, 2007, at 10:31 PM, Yehuda Katz wrote:

And to see what the new scroll pane is capable of, I have updated  
the demo:


http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:
Hey Guys,

I have been working on a project that could make use of Kelvin's  
scroll pane.


I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is  
possible


This means that you can now have a pretty scrollbar that has a  
separate activated/deactivated state.


Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

It's not fully ready, so any feedback would be most appreciated.

--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/





--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-21 Thread Yehuda Katz

I'm not sure what you mean.

-- Yehuda

On 1/21/07, Marshall Salinger [EMAIL PROTECTED] wrote:


 Yehuda,



These are great enhancements to the scrollbar plugin. Would it be possible
to have it scroll on mousedown?



Thanks,
Marshall



-Original Message-
*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
Behalf Of *Yehuda Katz
*Sent:* Saturday, January 20, 2007 7:31 PM
*To:* jQuery Discussion.
*Subject:* Re: [jQuery] Kelvin's Scroll Pane



And to see what the new scroll pane is capable of, I have updated the
demo:

http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, *Yehuda Katz* [EMAIL PROTECTED] wrote:

Hey Guys,

I have been working on a project that could make use of Kelvin's scroll
pane.

I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is possible

This means that you can now have a pretty scrollbar that has a separate
activated/deactivated state.

Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

It's not fully ready, so any feedback would be most appreciated.

--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325




--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/






--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-21 Thread Yehuda Katz

Done.

However, it does not seem like mousedown continues firing if you hold it
down. If you like, I can do a setInterval on mousedown that continues firing
the action until mouseup (when I clear the interval). Does that sound
reasonable?

Tomorrow, I will work on IE support, and making the scroll pane work with
less CSS.

-- Yehuda

On 1/21/07, Marshall Salinger [EMAIL PROTECTED] wrote:


 The up and down arrows only scroll the pane after releasing the mouse
button. I was expecting them to start scrolling the content while clicking
and holding the mouse button down. Similar to how it scrolls when clicking
in the middle of the scrollbar area.



-Marshall



-Original Message-
*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
Behalf Of *Yehuda Katz
*Sent:* Sunday, January 21, 2007 7:47 PM
*To:* jQuery Discussion.
*Subject:* Re: [jQuery] Kelvin's Scroll Pane



I'm not sure what you mean.

-- Yehuda

On 1/21/07, *Marshall Salinger* [EMAIL PROTECTED]  wrote:

Yehuda ,



These are great enhancements to the scrollbar plugin. Would it be possible
to have it scroll on mousedown?



Thanks,
Marshall



-Original Message-
*From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On
Behalf Of *Yehuda Katz
*Sent:* Saturday, January 20, 2007 7:31 PM
*To:* jQuery Discussion.
*Subject:* Re: [jQuery] Kelvin's Scroll Pane



And to see what the new scroll pane is capable of, I have updated the
demo:

http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, *Yehuda Katz*  [EMAIL PROTECTED] wrote:

Hey Guys,

I have been working on a project that could make use of Kelvin's scroll
pane.

I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is possible

This means that you can now have a pretty scrollbar that has a separate
activated/deactivated state.

Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

It's not fully ready, so any feedback would be most appreciated.

--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325




--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/




--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325

___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/






--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-20 Thread Yehuda Katz

And to see what the new scroll pane is capable of, I have updated the demo:

http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:


Hey Guys,

I have been working on a project that could make use of Kelvin's scroll
pane.

I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is possible

This means that you can now have a pretty scrollbar that has a separate
activated/deactivated state.

Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

It's not fully ready, so any feedback would be most appreciated.

--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325





--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-20 Thread Yehuda Katz

And yes, I know IE hates it at the moment,

-- Yehuda

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:


And to see what the new scroll pane is capable of, I have updated the
demo:

http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:

 Hey Guys,

 I have been working on a project that could make use of Kelvin's scroll
 pane.

 I have made a few enhancements:
 * Keyboard support
 * Separate top/middle/bottom elements for the dragger
 * activated class for track when scrolling or key action is possible

 This means that you can now have a pretty scrollbar that has a separate
 activated/deactivated state.

 Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

 It's not fully ready, so any feedback would be most appreciated.

 --
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325




--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325





--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-20 Thread Karl Swedberg

Hey Yehuda,

It was looking really cool when there was only one scroll pane on the  
page. Now it looks like it's just a couple DIVs with a set height and  
width and overflow: auto.


Maybe something isn't firing? Looked at it in FF2 Mac.


--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 20, 2007, at 10:31 PM, Yehuda Katz wrote:

And to see what the new scroll pane is capable of, I have updated  
the demo:


http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:
Hey Guys,

I have been working on a project that could make use of Kelvin's  
scroll pane.


I have made a few enhancements:
* Keyboard support
* Separate top/middle/bottom elements for the dragger
* activated class for track when scrolling or key action is possible

This means that you can now have a pretty scrollbar that has a  
separate activated/deactivated state.


Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

It's not fully ready, so any feedback would be most appreciated.

--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325



--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/


Re: [jQuery] Kelvin's Scroll Pane

2007-01-20 Thread Yehuda Katz

Now it's just two scroll panes ;)

-- Yehuda

On 1/20/07, Karl Swedberg [EMAIL PROTECTED] wrote:


Hey Yehuda,
It was looking really cool when there was only one scroll pane on the
page. Now it looks like it's just a couple DIVs with a set height and width
and overflow: auto.

Maybe something isn't firing? Looked at it in FF2 Mac.


--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Jan 20, 2007, at 10:31 PM, Yehuda Katz wrote:

And to see what the new scroll pane is capable of, I have updated the
demo:

http://www.visualjquery.com/scroll_pane/index.htm

On 1/20/07, Yehuda Katz [EMAIL PROTECTED] wrote:

 Hey Guys,

 I have been working on a project that could make use of Kelvin's scroll
 pane.

 I have made a few enhancements:
 * Keyboard support
 * Separate top/middle/bottom elements for the dragger
 * activated class for track when scrolling or key action is possible

 This means that you can now have a pretty scrollbar that has a separate
 activated/deactivated state.

 Take a look at: http://www.visualjquery.com/scroll_pane/index.htm

 It's not fully ready, so any feedback would be most appreciated.

 --
 Yehuda Katz
 Web Developer | Wycats Designs
 (ph)  718.877.1325




--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/



___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/






--
Yehuda Katz
Web Developer | Wycats Designs
(ph)  718.877.1325
___
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/