Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

FMP8 returns the error "Object not found" for every variation of this simple AppleScript:

tell application "FileMaker Pro Advanced"

set MyText to "Cryptonomicon"

set data cell "Book" of current record to MyText

end tell

The current table is named "Global", and the current record contains the global field "Book". I've tried "Global:Book" and everything I can think of, but get the same error no matter what.

Any ideas?

It works for me, IF the field is on the current layout; otherwise not. It might be better to include the table (table occurrence) name. Then it doesn't care if the field's not on the current layout, or even table. Also, global fields do not need the "current record", as they are the same for all records; easier.

tell application "FileMaker Pro Advanced"

set MyText to "Cryptonomicon"

set cell "Book" of table "Global" to MyText

end tell

  • Author

I solved it. The script was asking FM to change the value of a field in a record. But there was no record.

I was using a simple layout populated with just 2 fields, but... they were both global. If there is no non-global field on a layout, FM doesn't recognize it as a record EVEN IF VALUES ARE RECORDED for the fields on that layout! Even "new record" fails. You can't create a record if you don't have at least one non-global field.

Create an account or sign in to comment

Important Information

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

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.