- Mark/Space, Inc.
- Readers Like You!
- Circus Ponies
- Microsoft
- Fetch Softworks
- Bare Bones Software
- CS Odessa
- Web Crossing
- MacSpeech
- VMware
Edit iCal Event Titles Directly
In the Leopard version of iCal, double-clicking an event shows a summary of the event, and to edit the name (or anything else), you must click the Edit button in the summary pop-up. To bypass the summary and edit pop-ups entirely, Option-double-click the event name. That selects the text for editing, and you can make any changes you want. Click outside the event to save your changes.
Written by Adam C. Engst
Recent TidBITS Talk Discussions
- How Safari 3.2's Anti-Phishing Does, and Doesn't, Work (1 message)
- Comparing Five iPhone File Transfer Apps (5 messages)
- iPhone Saves Weary Road Warrior (1 message)
- Improving the HTML Accessibility of Our Cart (4 messages)
Published in NetBITS 15. Subscribe today to receive TidBITS in email every Monday.
- Free Netscape
- And Who's Paying for This?
- Long File Names
- Bandwidth and Latency: It's the Latency, Stupid (Part 1)
- Question: How can I get multiple email addresses?
- Question: What's a Webring?
- Acrobatics
JavaScript Yourself Anonymous
JavaScript Yourself Anonymous -- In response to letters on hiding your email address on a Web page to avoid spammers sucking it down, Joseph McLean <flux@thecentre.com> wrote us with a nifty JavaScript-based solution, which he offers for free:
Brandon Munday mentioned how he removed all "clickable" mailto links from his Web site to thwart the evil address-collecting spiders. Making a site non-clickable is so counter to the Web's nature that I became convinced there had to be another way. And there is - if you turn to JavaScript for aid.
JavaScript is not ubiquitous technology, but this can also work in your favor, because spiders don't speak that language - and most of your human visitors have browsers that do. Here's an example I cooked up in five minutes.
<script language=javascript>
<!--
// SpamProof Mail Script 1.0
// by Joseph McLean <flux@thecentre.com> - freeware
// Linktext is the text you want folks to see and click upon.
// email1 & email2 are the text on either side of your
// email address's @ sign.
var linktext = "Email Me!"
var email1 = "jsmith"
var email2 = "where-ever.com"
document.write("<a href=" + "mail" + "to:" + email1 + "@" + email2 + ">" + linktext + "</a>")
//-->
</script>
This chunk of code can be pasted into your Web page's HTML at any point. Some old browsers don't support JavaScript, but they won't hit an error - the mail link will simply be invisible (as it is to spiders).
ConceptDraw Office adds real business power to Microsoft Officeand Apple's iWork. Whether you need project management, business
graphics, or mind mapping, it's all easily created on your Mac!
Buy today for only $499! <http://www.conceptdraw.com/tb>






