Google Calendar Wheel Viewer
Last update on Apr 17, 2008
Moves your calendar with the mousewheel.
You could comment on this script if you were logged in.
24 comments
You could comment on this script if you were logged in.

login to vote
Interesting. Editing the numbers makes no difference for me when those numbers are
less than 1. Values of 0.5, 0.75, 0.99 don't scroll the screen a bit. But once it gets to
1.0, it's back to scrolling 6 mos at a time. :(
login to vote
edited mine to -.5 and .5 and it works perfect now! woohoo!
login to vote
Yes i'm runnig FF3. Changing the numbers causes different jumppatterns.
bigger number -> bigger datejump
smaler number -> smaler datejump.
login to vote
Unit, are you running FF3?
Also, what do those numbers represent? What effect does changing them cause?
login to vote
google is changing a lot, but my fix works fine for me.
try different numbers for "-0.125 : 0.125"
login to vote
I'm sad that this isn't working. Even unit's fixes don't help. :-(
login to vote
to make it work again
change
line 37 to:
unsafeWindow._EH_nav((e.detail < 0) ? -0.125 : 0.125);login to vote
Dittto.
login to vote
Same here, it scrolls through 6 months with one wheel roll.
login to vote
however it scrolls six months at a time. So one click of the wheel moves from June to December.
Anyone else experiencing this?
login to vote
Thank you!!
login to vote
It works again!
Thank you!
login to vote
Update new script.
Try it again.
login to vote
I miss my wheel viewer!!
login to vote
I think the newest version of Firefox might be blocking it, since the error console reports this:
Error: [Exception... "Security Manager vetoed action" nsresult: "0x80570027 (NS_ERROR_XPC_SECURITY_MANAGER_VETO)" location: "JS frame :: https://www.google.com/calendar/5f590d2a5ab79957a762d3b98d833d9edoozercompiled__en_gb.js :: Lv :: line 217" data: no] Source File: https://www.google.com/calendar/5f590d2a5ab79957a762d3b98d833d9edoozercompiled__en_gb.js Line: 217From the looks of the google results, it's some change in the code that's affected other extensions in the newest version too, no idea how to fix atm though...
login to vote
Mine quit working too...
login to vote
This script has just stopped working for me. Anyone else? Did Google change something?
login to vote
this would be even better if there was a way to scroll by only one week at a time when in month view but I'm pretty sure that's impossible with the way google calendar is scripted as of now. Just a thought...
P.S. Awesome script!!! this is fabulous!
login to vote
Excellent plugin, one of the most useful and ingenious ones here.
login to vote
thanks all. New version is now available.
login to vote
Excellent! I've been looking for something like this.
One suggestion: add it to the date-picker, too! It's simple; insert
$('dp_0').addEventListener(
"DOMMouseScroll",
function(e) {
var x = {};
x.target = e.target;
x.keyCode = (e.detail < 0) ? 80 : 78;
unsafeWindow._calKeyDown(x);
},
false
);
right after the one for maincell.
login to vote
Good script! It needs the https ones adding as well (to save anyone doing it themselves) to make it work with the secure calandar (when using the GMail secure script) out of the box.
login to vote
A superb example of a clever and cleanly written script. Five stars for both idea and realisation. Many thanks!
login to vote
This is an excellent, simple script. Mousewheel functionality adds a world of use to Google calendar, especially in my default view(monthly).