Oldest known version of this page was edited on 2008-01-24 22:47:58 by BradEllis []
Page view:
Copy Backlinks
This
AppleScript will copy all currently visible backlinks to the clipboard. To load the backlinks for a particular page, open the page and hit Shift-Command-B. It may take Voodoopad a few moments to find all of the backlinks for your page. Wait for the progress <br />
indicator to disappear before using this script.
tell application "System Events"
set theBacklinks to value of text field of every row of table of scroll area of tab group of drawer of window of process "VoodooPad" as list
set AppleScript's text item delimiters to return
set the clipboard to theBacklinks as text
set AppleScript's text item delimiters to ""
end tell