Re: Script statement for Filemaker Font
Re: Script statement for Filemaker Font
- Subject: Re: Script statement for Filemaker Font
- From: Kai <email@hidden>
- Date: Wed, 16 Jul 2003 05:47:05 +0100
on Tue, 15 Jul 2003 12:10:19 -0700, Howard Sambol wrote:
>
I need an Applescript Statement that will allow me to control the
>
font and point size of text in a Filemaker Pro field. All help
>
appreciated.
A field's default text style is usually defined (in Layout mode) at the
design stage. If you want to override this for a particular cell, you can
use the 'do menu' command:
--================================
tell application "FileMaker Pro"
go to database "dbName"'s record 1's cell "fieldName" -- *
do menu menu "Edit"'s menu item "Select All"
do menu menu "Format"'s menu "Font"'s menu item "Geneva" -- *
do menu menu "Format"'s menu "Size"'s menu item "10 Point" -- *
go to database "dbName" -- * deselect (if required)
end tell
--================================
-- * = modify as required
--
Kai
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.