Active Topics

 


Reply
Thread Tools
Addison's Avatar
Posts: 3,811 | Thanked: 1,151 times | Joined on Oct 2007 @ East Lansing, MI
#1
Hey all!

This actually should be a very, simple request.

I found a script that can be used in Greasemonkey that makes Google Calendar appear full screen.

The only downside is that you need to press F12 to enable it.

Could someone edit the script and entirely remove the need for this F12 keyboard command and post it back here?

Just have it full screen by default and don't even bother with allowing for a way to restore it back.

The script can be found here:
http://userscripts.org./scripts/show/21376

Hopefully someone with a brain will respond back.
 
ossipena's Avatar
Posts: 3,159 | Thanked: 2,023 times | Joined on Feb 2008 @ Finland
#2
Originally Posted by Addison View Post
Hey all!

This actually should be a very, simple request.

I found a script that can be used in Greasemonkey that makes Google Calendar appear full screen.

The only downside is that you need to press F12 to enable it.

Could someone edit the script and entirely remove the need for this F12 keyboard command and post it back here?

Just have it full screen by default and don't even bother with allowing for a way to restore it back.

The script can be found here:
http://userscripts.org./scripts/show/21376

Hopefully someone with a brain will respond back.
google the keycode for key you want map the function to and change row:

if((e.keyCode==123)) {


e: if you want to do it automaticly, that needs to be modified bit more. or try to remove

window.addEventListener("keydown",function(e) {
if((e.keyCode==123)) {
//if((e.keyCode==122)&&(e.ctrlKey)) { //control-F11


}else{
guser.style.display = "";
gbar.style.display = "";
body.style.margin = "0pt 1ex";
mothertable.style.padding = "0pt 1ex";
nav.style.visibility = "visible";
nav.style.width = "13em";
topbar.style.visibility = "visible";
unsafeWindow._SR_backToCalendar();
}
}
}, false);



and see what happends

Last edited by ossipena; 2009-11-04 at 08:17.
 

The Following User Says Thank You to ossipena For This Useful Post:
Addison's Avatar
Posts: 3,811 | Thanked: 1,151 times | Joined on Oct 2007 @ East Lansing, MI
#3
Hey ossipena!

Yeah, I'm just looking for an automatic, full screen calendar. No keys and certainly no way to restore it back either.

I can't lie, there's not a single thing in that code that makes any sense to me.

Could you just post the part of the script that makes the web page go full screen?

That's all I'm really ask for.

Thanks!
 
Posts: 114 | Thanked: 45 times | Joined on Oct 2009 @ Turin, Italy
#4
I don't know if it will work, but try this:

// ==UserScript==
// @name Fully Maximize Google Calendar with F12 Toggle
// @namespace http://www.google.com/calendar/*
// @description Makes the most of Google Calendar on limited screen real estate (great for EEE PC).
// @include http://www.google.com/calendar/*
// @include https://www.google.com/calendar/*
// ==/UserScript==

(function(){

guser = document.getElementById('guser');
gbar = document.getElementById('gbar');
nav = document.getElementById('nav');
topbar = document.getElementById('topBar');
body = window.document.body;
mothertable = document.getElementById('mothertable');
if (guser.style.display != "none"){
guser.style.display = "none";
gbar.style.display = "none";
body.style.margin = "0px";
mothertable.style.padding = "0";
nav.style.visibility = "collapse";
nav.style.width = "0px";
topbar.style.visibility = "collapse";
unsafeWindow._SR_backToCalendar();
}else{
guser.style.display = "";
gbar.style.display = "";
body.style.margin = "0pt 1ex";
mothertable.style.padding = "0pt 1ex";
nav.style.visibility = "visible";
nav.style.width = "13em";
topbar.style.visibility = "visible";
unsafeWindow._SR_backToCalendar();
}
})();
 

The Following User Says Thank You to HoX For This Useful Post:
Posts: 835 | Thanked: 772 times | Joined on Oct 2007 @ Finland
#5
All I did is commenting out line 11, 12, 39 and 40.

Code:
// ==UserScript==
// @name           Fully Maximize Google Calendar with F12 Toggle
// @namespace      http://www.google.com/calendar/*
// @description    Makes the most of Google Calendar on limited screen real estate (great for EEE PC).
// @include        http://www.google.com/calendar/*
// @include        https://www.google.com/calendar/*
// ==/UserScript==

(function(){

        //window.addEventListener("keydown",function(e) {
                //if((e.keyCode==123)) {
                //if((e.keyCode==122)&&(e.ctrlKey)) { //control-F11
                        guser = document.getElementById('guser');
                        gbar = document.getElementById('gbar');
                        nav = document.getElementById('nav');
                        topbar = document.getElementById('topBar');
                        body = window.document.body;
                        mothertable = document.getElementById('mothertable');
                        if (guser.style.display != "none"){
                                guser.style.display = "none";
                                gbar.style.display = "none";
                                body.style.margin = "0px";
                                mothertable.style.padding = "0";
                                nav.style.visibility = "collapse";
                                nav.style.width = "0px";
                                topbar.style.visibility = "collapse";
                                unsafeWindow._SR_backToCalendar();
                        }else{
                                guser.style.display = "";
                                gbar.style.display = "";
                                body.style.margin = "0pt 1ex";
                                mothertable.style.padding = "0pt 1ex";
                                nav.style.visibility = "visible";
                                nav.style.width = "13em";
                                topbar.style.visibility = "visible";
                                unsafeWindow._SR_backToCalendar();
                        }
               // } 
        //}, false);

})();
it works for me.
 

The Following User Says Thank You to Kozzi For This Useful Post:
Posts: 540 | Thanked: 387 times | Joined on May 2009
#6
Just change 123 (F12) to 117 (F5) and press the full-screen key on the N810 and it works. I have tested it.

EDIT: I haven't tried their methods yet. This one is a little buggy. I have a short video showing it in use (must click calendar column before full-screen or microb gets confused)

http://pastebin.com/f19ac8b24

&

http://p7230.homelinux.com/os2008/F5gCalendar.avi

Last edited by linuxeventually; 2009-11-04 at 09:22.
 

The Following User Says Thank You to linuxeventually For This Useful Post:
Addison's Avatar
Posts: 3,811 | Thanked: 1,151 times | Joined on Oct 2007 @ East Lansing, MI
#7
Thanks guys!

I'm completely new to trying out Google Calendar.

Basically what I was hoping for was something like this without the two blue arrows (a different user script I found that had weird results).


I'll run each of your suggestions tomorrow but wanted to thank you all ahead of time.
 
Addison's Avatar
Posts: 3,811 | Thanked: 1,151 times | Joined on Oct 2007 @ East Lansing, MI
#8
I went with Kozzi's script and it works to perfection! Many thanks!

Using his script along with Google Calendar Textwrap Events makes viewing and using Google Calendar so much easier!

One last question.

How can I make it so that MicroB opens in full screen without needing to toggle?

I'm sure it's been asked before but searching the forums has proven to be too exhausting.
 
Reply


 
Forum Jump


All times are GMT. The time now is 17:30.