Sonntag, 30. November 2014

MacBook Air Trackpad - Tippen & Ziehen aktivieren

Die Möglichkeit Doppeltap/Ziehen ist neu komischerweise nicht unter «Trackpad», sondern unter «Bedienungshilfen» > «Maus & Trackpad» > «Trackpad-Optionen». Dort «Bewegen» aktivieren.

Samstag, 24. Mai 2014

How to remove “Powered by Google Docs” in Google Forms?

http://shibulijack.wordpress.com/2012/03/02/how-to-remove-powered-by-google-docs/

Google forms are very powerful, yet simple to create and edit. But, many people don’t like the footer text “Powered by Google Docs”. Wouldn’t it be awesome if you could remove that text alone and customize the appearance of the form according to your website’s theme?
I have found a simple solution to whitelabel Google Docs footer text. Just follow these simple steps:

STEP #1

1. Go to Google Docs
2. Open the custom form which you have created using Google Docs.
3. Select Form->Go to live form
[A webpage containing your custom form opens]

STEP #2

1. View the source code of the webpage which you have just opened.
2. Look for something like this:
* YOURFORMKEY is an unique key generated for your form.
3. Copy the entire form code,i.e the code between
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<input type="submit" name="submit" value="Submit"></div></div></form>
<script type="text/javascript">
 
      (function() {
var divs = document.getElementById('ss-form').
getElementsByTagName('div');
var numDivs = divs.length;
for (var j = 0; j < numDivs; j++) {
if (divs[j].className == 'errorbox-bad') {
divs[j].lastChild.firstChild.lastChild.focus();
return;
}
}
for (var i = 0; i < numDivs; i++) {
var div = divs[i];
if (div.className == 'ss-form-entry' &&
div.firstChild &&
div.firstChild.className == 'ss-q-title') {
div.lastChild.focus();
return;
}
}
})();
      
</div>
Paste the copied code into a HTML file. When you open this HTML document, you will find your Google Doc Form but without “Powered by Google Docs” text.
Cheers!