panache Posted October 21, 2004 Posted October 21, 2004 Hello. I can't for the life of me get this, and I'm hoping you can help me out. I simply want an applescript to write a text string into the second repetition of a repeating field? Any ideas? I don't have much hair left to pull out (plus, I guess it's time to acquire some familiarity with applescript). TIA.
Fitch Posted October 22, 2004 Posted October 22, 2004 Is there some compelling reason to do this with AppleScript? If so, I believe this thread tells you what you want to know.
transpower Posted October 22, 2004 Posted October 22, 2004 Use the Status(CurrentRepetitionNumber) function; when that is 2, set the field.
Søren Dyhr Posted October 22, 2004 Posted October 22, 2004 Despite repeating fields are the trademark of the seasoned developer <g> could you do it like this: tell application "Filemaker Pro" set _aVar to display dialog "Enter a value for 2nd repetition" default answer "" set _aVar to text returned of _aVar set _bVar to cell 1 set item 2 of _bVar to _aVar set cell 1 to _bVar end tell ...Where cell 1 is the repeating field in question, remember that the field should have it's repetitions visible on the layout in question. --sd
panache Posted October 22, 2004 Author Posted October 22, 2004 Soren: Bingo! Exactly what I needed. Thanks.
Recommended Posts
This topic is 7336 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now