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'd like to create a FM 11 script that backups the current open file. It would save the file to a specified folder, and the file name would include the name of the open file, the date and time created. Any suggestions on how I could do this?

The "Save a Copy" command lets you use a variable as the path, so in your script you would first define the variable and then use it to save. E.g.:

Set Variable( $path ; 

   Let( t = Get(CurrentTimestamp) ;

     Get(DesktopPath) & Get(FileName)& "_" & Year(t) & "-" & Month(t) & "-" & Day(t) & "_" & 

     Hour(t) & Right( "00" & minute(t) ; 2 ) & ".fp7" ) )

Save a Copy as( $path ; compacted )

Notice that we need to pretty up the timestamp, since slashes and colons are not generally permitted in file names. (And it's nicer to sort your backups when the year comes first.)

Be aware that you shouldn't do this with a shared file, only single-user.

You won't have the option to do it if you are the client of a shared file. Are you saying you shouldn't do it if you are the host? Why not?

You're right, Fitch, Save a Copy is an approved method to backup a hosted file (peer-to-peer, not FMS).

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.