Popular recipes tagged "scrollbar"http://code.activestate.com/recipes/tags/scrollbar/2017-05-16T18:18:31-07:00ActiveState Code RecipesMousewheel binding to scrolling area Tkinter (multiplatform) (Python)
2017-05-16T18:18:31-07:00Miguel Martínez Lópezhttp://code.activestate.com/recipes/users/4189907/http://code.activestate.com/recipes/578894-mousewheel-binding-to-scrolling-area-tkinter-multi/
<p style="color: grey">
Python
recipe 578894
by <a href="/recipes/users/4189907/">Miguel Martínez López</a>
(<a href="/recipes/tags/mousewheel/">mousewheel</a>, <a href="/recipes/tags/scrollbar/">scrollbar</a>, <a href="/recipes/tags/tkinter/">tkinter</a>).
Revision 28.
</p>
<p>The behaviour of the mouse wheel is similar to the one on Windows.</p>
<p>I tested this program on Windows 7 and on Linux Mint 17. Please let me know if this code doesn't work on your platform. I will appreciate any comments.</p>
<p>This is a practical application of this recipe: a scrolling frame with mouse wheel support.</p>
<p><a href="https://code.activestate.com/recipes/580640-scrolling-frame-with-mouse-wheel-support" rel="nofollow">https://code.activestate.com/recipes/580640-scrolling-frame-with-mouse-wheel-support</a></p>
Tkinter simultaneous scrolling (Python)
2016-11-20T00:29:52-08:00Miguel Martínez Lópezhttp://code.activestate.com/recipes/users/4189907/http://code.activestate.com/recipes/578874-tkinter-simultaneous-scrolling/
<p style="color: grey">
Python
recipe 578874
by <a href="/recipes/users/4189907/">Miguel Martínez López</a>
(<a href="/recipes/tags/multiplatform/">multiplatform</a>, <a href="/recipes/tags/scroll/">scroll</a>, <a href="/recipes/tags/scrollbar/">scrollbar</a>, <a href="/recipes/tags/simultaneous/">simultaneous</a>, <a href="/recipes/tags/tkinter/">tkinter</a>).
Revision 7.
</p>
<p>Scroll several scrollbars at the same time.</p>