Help can anybody help a novice to tell how I should write an FileMaker Pro Advanced Calculated Applescript if I have an Applescript that looks like this....
tell application "Leitz Icon Software"
set pathToScriptFolder to POSIX path of ((path to me as rich text) & "::")
open label pathToScriptFolder & "BlankLabel.LeitzLbl"
delete label objects
make new address object with properties {x position:0.3, y position:0.3, width:8.2, height:3}
tell first address object
set content to "Alex Smith
Smith inc.
NY 12345-4568"
set horizontal alignment to Center
set vertical alignment to Bottom
set scaling mode to AutoFit
end tell
save label in pathToScriptFolder & "LabelWithAddress.LeitzLbl"
end tell