Jump to content
Server Maintenance This Week. ×

placing text into a repeating field


This topic is 7125 days old. Please don't post here. Open a new topic instead.

Recommended Posts

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.

Link to comment
Share on other sites

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

Link to comment
Share on other sites

This topic is 7125 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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

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