Jump to content

LarsM

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by LarsM

  1. 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
  2. Fitch! It start from a FileMaker script?
  3. How do I get a value from FileMaker Pro Advance 17 variable as ( $$NAME ) into an Applescript that looks like; tell application "Leitz Icon Software" -- Store path to this script folder. set pathToScriptFolder to POSIX path of ((path to me as rich text) & "::") -- Open blank label. open label pathToScriptFolder & "LabelWithAddress.LeitzLbl" -- Delete all objects to make sure the label is blank. delete label objects -- Create new address object. make new address object with properties {x position:0.3, y position:0.3, width:8.2, height:3} -- Change address object properties. tell first address object -- Setting content. set content to $$NAME -- Setting content alignment set horizontal alignment to Center set vertical alignment to Bottom -- Set the object scaling to auto fit. set scaling mode to AutoFit end tell save label in pathToScriptFolder & "LabelWithAddress.LeitzLbl" end tell
  4. How do I do a Filemaker script that deletes a file in Filemaker Go ?
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.