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

I think I have found a way to get at my data for the header - export field contents - but can I append a file ---- write to the same file over and over - appending without overwriting ---- how do I do that?

Troi File plugin can do that, or possibly AppleScript.

Here is an example to prepend a line of text to a text file. It will create the file (on your desktop) if it does not yet exist; otherwise it will add the line at the beginning. You would get that line from a FileMaker field. I've written this so that it will work if you don't have FileMaker set up to do it yet. So, normally you'd run it within a FileMaker Perform AppleScript, but you can run it with Script Editor to see.


ttell application "FileMaker Pro Advanced"

	try

		set new_line to cell "New Line" of current record

	on error

		set new_line to "new line "

	end try

end tell

set file_spec to open for access file ((path to desktop as Unicode text) & "test_insert.txt") with write permission

try

	set txt to read file_spec

on error

	set txt to ""

end try

write (new_line & return & txt) to file_spec starting at 0

close access file_spec

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.