Re: Filemaker text formatting [slightly off topic]
Re: Filemaker text formatting [slightly off topic]
- Subject: Re: Filemaker text formatting [slightly off topic]
- From: David Crowe <email@hidden>
- Date: Tue, 6 Aug 2002 23:49:11 -0700
I agree that you don't need AppleScript to get rid of formatting in FileMaker.
I've discovered that Set field["this field"] = this field doesn't always work.
I usually set the field to Trim(this field) & " ". This works well
assuming that you don't have blanks at the beginning or end you want
to preserve.
Left(this field&" ",Length(this field)-1)
would be more general.
- David Crowe
_______________________________________________
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.