You are so on my blacklist
by Volker Weber

This email is being sent to you as a Nikon customer. To ensure your email filter does not block messages from us, please add our 'From' address (nikon@nikon.net) to your Address Book. Please do not reply to this email; for support or questions visit www.nikonusa.com
"Dear customers, your feedback will be disregarded. But we are happy to stuff your mailbox." Where do they teach that? Marketing 101, a.k.a. lobotomy?
Comments
Well deserved plonk :-)
BTW, is that flock? The UI is certainly GRASPING for attention.
Yes, it is Flock. Don't like the interface either, but it is faster than Firefox (at least here). Would use Safari 2 if I knew how to switch off printing from Javascript.
please add our 'From' address
I wonder how many poor suckers do that...
GreaseKit should be able to switch off that annoying printing dialog.
It's Greasemonkey for Webkit:
It might. But I have no idea how.
Web pages that try to print when body.onload occurs (which are most of them, I presume), can be beaten with this simple GreaseMonkey user script:
// ==UserScript==
// @name NoPrint
// @namespace global
// @description Diables the JavaScript window.print() function.
// @include *
// ==/UserScript==
var _print = unsafeWindow.print;
var firstCall = true;
unsafeWindow.print = function()
{
if (firstCall)
{
firstCall = false;
return false;
}
_print();
};
This is just a very quick script I hacked together without much research. Here are some thoughts:
When the call to window.print() is made in a element within the body, this does not work. GreaseMonkey executes just after DOM parsing and just before body.onload, but inline scripts are part of DOM parsing and execute right away.
The script blocks just the first call to window.print(). Subsequent calls (e.g. user clicks on javascript link that says "Print") are actually working.
Post a comment
Recent comments
Kevan Emmott
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 20:57
Sudeep Reddy Sama
on N70 drops off the network in dual mode at 20:09
Volker Weber
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 17:37
Paul Mooney
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 17:26
Kevin Pettitt
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 16:36
Victor Toal
on Bluehouse does not support my browser at 16:33
Vince Schuurman
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 15:32
michel platoche
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 14:21
Ben Poole
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 13:11
Volker Weber
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 12:34
Ben Poole
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 12:27
Paul Mooney
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 12:12
Gregory Engels
on Lotus Vista? at 09:00
Bruce Elgort
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 03:24
Volker Weber
on Nokia E71 is currently winning at 23:31
Alejandro Aguilar
on Nokia E71 is currently winning at 23:29
Vince Schuurman
on Confirmed: new Apple notebooks next Tuesday at 10am PDT at 23:11
Bob Balaban
on Urban Myth: Microsoft is good at marketing at 22:01
Bob Balaban
on The Job at 21:55
Julian Woodward
on Black Ice prematurely escaped at 20:37
Arthur Fontaine
on Black Ice prematurely escaped at 17:39
Chris Linfoot
on Urban Myth: Microsoft is good at marketing at 16:58
Mathias Ziolo
on Urban Myth: Microsoft is good at marketing at 16:15
Ben Rose
on Black Ice prematurely escaped at 16:10
Paul Mooney
on Urban Myth: Microsoft is good at marketing at 15:22



