Starta (Din hårddisk) > Program > Applescript > Manusredigeraren.app
Välj Arkiv > Öppna ordlista > Standard additions.app
Välj Arkiv > Öppna ordlista >URL Access Scripting.app
Välj Arkiv > Öppna ordlista >Finder
I Ordlistorna ser du vilka kommandon som de olika programmen kan förstå.
Här är ett exempel på hur det skulle kunna se ut. Detta skapar en texfil full med HTML-kod, men det går att konvertera detta på olika sätt. Tex med hjälp av en webbläsare eller med hjälp av Textredigeraren.
Lycka till!
(*
----------------------------------------------------------------
Download RSS to File with Applescript
----------------------------------------------------------------
By: O l a @intelligentmammals.se, 2007-01-31
http://www.intelligentmammals.se/
*)
tell application "Finder"
-- Set a download folder
set pathToFile to desktop as text
set pathToFile to pathToFile & "FM RSS-file.txt"
end tell
tell application "URL Access Scripting"
-- Download the RSS-file to that location as a textfile
download "http://www.filemaker.com/news/news.xml" to pathToFile with progress
end tell