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.

Problems using a Applescript routine in FM 7 & 8 that works in FM 6

Featured Replies

  • Newbies

I applied a simple Applescript routine (included in the next paragraphs) to read the time code from a opened Quicktime movie and to insert it in a database field. This routine still works fine using Filemaker 6, MacOS 10.4.8 and Quicktime 7.1.3, but when I copy the routine to use it with Filemaker 7 or 8, it does not work. Any suggestions to translate it properly?.

tell application "QuickTime Player"

activate

global this_time

set this_time to the current time of movie 1

end tell

tell application "Filemaker Pro"

activate

set cell "G1" to this_time

end tell

I toyed with it, and if you embed this script in a Perform Applescript statement in filemaker:

tell application "QuickTime Player"

launch

set this_time to the current time of movie 1

end tell

set cell "G1" to this_time

... it works, there are apparently a conflict in a global declaration, which isn't needed anyway. Instead of the double activate use launch... to make filemaker the frontmost app at all times. But the returned value is an integer which in my case was approximately 300 units per minute???

--sd

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.