Your source for indispensable Apple and Macintosh news, reviews, tips, and commentary since 1990.

 

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

 
 

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).
Previous Article
Previous Article
Recommend This Article
-
Next Article
Top Articles in this Section
ConceptDraw Office adds real business power to Microsoft Office
and 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>