Contacts Plug-In Update

Another beta version of the Address Book plug–in for RapidWeaver

Here is a new beta of the Contacts plug-in. This release simply corrects a problem running under 10.5 and extends the preview date. No work has been done to enhance the plug-in for use in RapidWeaver 4 or use the new API features.

'List view' will give more reliable results than 'Cards view' but please test thoroughly before using on a public site. Most of the 'display issues' still occur in Internet Explorer 6 and vary depending on the RapidWeaver theme used. Clicking on telephone numbers still gives unpredictable results in Internet Explorer.

Many of the issues with the first version still remain. Public Beta 2 will expire on 25th June 2009.

Download Contacts Public Beta 3.

|

Safari Kiosk Tabs

An AppleScript to ensure that new Safari windows are opened in a tab

In the Watershed Café/Bar there are a number of ‘Slacker Tables’—public web browser kiosks set in glass tables. Oliver asked about a way to ensure that the instances of Safari running on the tables would open a new tab and not a new window. This is a simple AppleScript, to be saved as an Application and run, in a loop in the background.

This was only a quick, five minute hack but the results are surprisingly usable. Running the script as an application in the background doesn't appear to affect performance or stability over longer periods of time.

Note: this script has only been tested with Safari 3.2.1 in MacOS X 10.5.5

  1. repeat
  2. delay 1
  3. tell application "Safari"
  4. if the (count of documents) > 1 then
  5. set theURL to the URL of the front document
  6. if theURL is not "" then
  7. close front document
  8. tell front window
  9. -- Safari appears to only let the front window create tabs
  10. set theTab to make new tab
  11. set current tab to theTab
  12. set the URL of theTab to theURL
  13. end tell
  14. end if
  15. end if
  16. end tell
  17. end repeat
|

odds&ends…
Benjamin Miller