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.
Juggernaut

Featured Replies

  • Newbies

Hi all,

I'm having a bit of a problem here with getting data into the correct DataBase. I have two DataBase Files open and I'm using the script below which states to use this DataBase "weather.fp5" but for some reason if the second DataBase is the front most window it tries to use that one.

Any thoughts or work arounds?

tell application "FileMaker"

activate

try

activate database "Macintosh HD:Users:dalejmartin:Desktop:weather.fp5"

on error

open "Macintosh HD:Users:dalejmartin:Desktop:weather.fp5"

end try

set theRecord to create new record

try

Thanks,

Dale

Edited by Guest

I'm using Filemaker Developer 7.

This works for me with multiple databases open

tell application "FileMaker Developer"

tell document "YourDatabaseFileNameHere"

tell layout "YourReferencedLayoutNameHere"

set therecord to create new record

end tell

end tell

end tell

Edited by Guest

  • Author
  • Newbies

Thanks for the reply.

But can anyone confirms this for FileMake 6? I tried what was suggested above but it still doesn't work

Thanks,

Dale

Hi all,

I'm having a bit of a problem here with getting data into the correct DataBase. I have two DataBase Files open and I'm using the script below which states to use this DataBase "weather.fp5" but for some reason if the second DataBase is the front most window it tries to use that one.

No workarounds required, but you do need to write your script properly. There is no "activate database" command. You need to use "go to window". If the correct file is not open you can use open database to open the file.

tell application "FileMaker"

activate

try

go to window "weather.fp5"

on error

open "Macintosh HD:Users:dalejmartin:Desktop:weather.fp5"

end try

set theRecord to create new record

Edited by Guest

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.