Mac Ios Filemaker Go With Different Apps

Mac Ios Filemaker Go With Different Apps Average ratng: 4,7/5 2890 reviews

It really depends on what you hope to do.

Speaking of iOS, FileMaker is releasing two entirely new mobile apps to coincide with the version 12 update. FileMaker Go 12, available in separate iPhone and iPad versions, will be able to record. Sync your FileMaker Go files anytime, anywhere, and use them offline. Update and deliver new builds without using cumbersome workarounds like email or iTunes. No matter where your users are, GoZync will protect the integrity of your data over nearly any connection. Therefore, Get (SystemNICAddress) is no longer a reliable method for obtaining the MAC Address on a iOS device running iOS 7. It is recommended to use Get (PersistentID) to uniquely identify a FileMaker Go user and/or an iOS device. Keep this behavior in mind when developing solutions for FileMaker Go.


Numbers is a spreadsheet application - not a database. The same is true of Microsoft Excel, people often assume that spreadsheets are databases, they are not – the fields are not really linked like in a database (you can sort each row independently). Pages is a word processor/ page layout, not even close to a DB.


You can see lists of similar apps at this site…

It might help you find a suitable database.

Just visit the 'Official site' as download like that one can bundle other junk in software downloads - get it from the source.

The mac App store also has several DB apps


You also need to consider how you can export the data, storing images in a DB can make it difficult to migrate to other database types.

Dec 7, 2016 4:19 PM

Introducing FileMaker Go

About FileMaker Go

Claris™ FileMaker Go® runs FileMaker® custom apps on iOS and iPadOS devices so you can easily manage and share information with other users anywhere you go. Build custom apps using Claris FileMaker Pro™, then use FileMaker Go to work with the data on an iOS or iPadOS device.

About this guide

This guide provides information about tailoring custom apps for FileMaker Go. To learn how to use FileMaker Go, see Help. For additional FileMaker documentation, visit Product Documentation Center.

The following terms are used:

  • Claris FileMaker Cloud® for AWS is a service that provides access in the cloud to custom apps that use FileMaker Pro, FileMaker Go, and Claris FileMaker WebDirect™. FileMaker Cloud for AWS runs on the Amazon Web Services (AWS) Cloud and is offered through AWS Marketplace.
  • Claris FileMaker Cloud is a service that provides access in the cloud to custom apps that use FileMaker Pro, FileMaker Go, and FileMaker WebDirect. FileMaker Cloud uses the Claris ID integrated sign-on system to authenticate users. FileMaker Cloud is offered directly from Claris International Inc.
  • FileMaker Cloud products refers to both FileMaker Cloud and FileMaker Cloud for AWS.

Setting up custom apps for FileMaker Go

Working with data in FileMaker Go

Use one of the following options to work with data in FileMaker Go:

  • Connect to a hosted file from an iOS or iPadOS device and work with data interactively. When you change data on the iOS or iPadOS device, the data is updated on the host computer, and vice versa. You can connect to files that are hosted by FileMaker Pro, Claris FileMaker Server™, FileMaker Cloud for AWS, or FileMaker Cloud.
  • Transfer a file to an iOS or iPadOS device, then work offline with a local copy of the file on the device. When you transfer a file to your iOS or iPadOS device, you create a copy of the file. When you make data changes to the local file on your iOS or iPadOS device, the original file on your computer is not updated. You must transfer the file back to your computer, then use FileMaker Pro to import and update data. See About file transfers.

To connect to hosted files or to transfer files to or from a device, see Help. To open files using a URL, see FileMaker Pro Help.

Sharing FileMaker Pro files with FileMaker Go clients

Enabling FileMaker network sharing

  1. In FileMaker Pro, open the file.
  2. Choose File menu > Sharing > Share with FileMaker Clients.
  3. Set Network Sharing to On.
  4. Select the file(s) to be hosted from the list of Currently open files.
  5. For Network access to file, choose All users or Specify users by privilege set.
  6. Note:The privilege set for accounts that FileMaker Go users will sign in with must have the fmapp extended privilege enabled. See FileMaker Pro Help.

Hosting files with a FileMaker Cloud product or FileMaker Server

Before you share FileMaker Pro files, prepare the files for hosting.

  1. In FileMaker Pro, edit the accounts and privilege sets that clients will use for shared access (for example, Access via FileMaker Network).
  2. In FileMaker Pro, upload files to a FileMaker Cloud product or FileMaker Server (see FileMaker Pro Help).

Note:To set up accounts that authenticate users based on supported OAuth identity providers such as Amazon or Google, see FileMaker Pro Help.

Connecting to hosted files

After you share and host a file, you can connect to it as a client in FileMaker Go. See Help.

About file transfers

For information about transferring files to or from a device, see Help.

Notes

  • Make sure to back up your files before you transfer them.
  • Before you replace an existing file on a device, make sure the file is closed or removed. Otherwise, the file may not transfer properly and may become damaged.

Transferring a file with container fields that store data externally

To transfer a file with container fields that store data externally, you must first embed the container field data. In FileMaker Pro, use the Save a Copy As command and choose self-contained copy (single file). Then transfer the copy, not the original file.

Importing to and from a transferred file

You can use the Import Records script step to merge data from a local FileMaker Pro file on an iOS or iPadOS device to another FileMaker Pro file.

Set up the field mapping and import order before you import. You can:

  • import from a remote source into a local or remote file
  • import from a local source into a local or remote file

Example 1: Importing from a remote source (Remote.fmp12) into a local file (Local.fmp12)

In this example, the Local.fmp12 file is on an iOS or iPadOS device and needs a script that imports data from a remote source (Remote.fmp12). You need to use FileMaker Pro to create the script in the local file, then transfer the file to FileMaker Go. You can then run the script in FileMaker Go to import the data from the remote file.

  1. Open Local.fmp12 and Remote.fmp12 in FileMaker Pro.
  2. Create a script in Local.fmp12. For example:

    Import Records [ With dialog: Off ; Table: Local ; 'Remote.fmp12' ; Update ; Mac Roman ]

    and set up a path to the remote source file using your machine IP address. For example:

    fmnet:/192.168.10.10/Remote.fmp12

  3. Specify the import order.
  4. Close Local.fmp12.
  5. Transfer Local.fmp12 to FileMaker Go.
  6. Open Local.fmp12 in FileMaker Go, and run the script.

The local file is updated with data from the remote file.

Mac Ios Filemaker Go With Different Apps For Kids

Ios

Example 2: Importing from a local source (Local.fmp12) into a remote file (Remote.fmp12)

In this example, the remote file (Remote.fmp12) needs a script that imports data from a local file (Local.fmp12). You need to use FileMaker Pro to create the script in the remote file, then use FileMaker Go to open the hosted remote file on your iOS or iPadOS device and run the script to import the data from the local file.

  1. Transfer Local.fmp12 to FileMaker Go.
  2. Open Remote.fmp12 in FileMaker Pro.
  3. Use the Script Workspace to create a script in Remote.fmp12. For example:

    Set Variable [ $FilePath ; Value:Get(DocumentsPath) & 'Local.fmp12' ]

    Import Records [ With dialog: Off ; Table: Local ; '$FilePath' ; Add ; Mac Roman ]

    where the path to the source file on the device is file:$FilePath

  4. Select Specify import order.

    If the source fields do not appear in the Specify Import Order dialog box, in the Script Workspace, select Specify data source for the Import Records script step. In the Specify File dialog box, for File Type, select FileMaker Pro files. Then add another path to Local.fmp12 to the path list. For example:

    file:$FilePath

    file:Local.fmp12

  5. In FileMaker Go, open the hosted Remote.fmp12 file.
  6. Run the script from Remote.fmp12 in FileMaker Go.

The remote file is updated with data from the local file.

Running scripts through Shortcuts and Siri

You can run a FileMaker script through the Shortcuts app or by Siri voice commands. To do so, enable scripts to be donated to Shortcuts, and create a shortcut for the script. Then, run the shortcut to run the script.

Creating and running shortcuts

  1. Set up script donation: In FileMaker Pro, enable the fmurlscript extended privilege. Then in the Script Workspace, choose Enable Shortcuts Donations for each script to be donated.

    See FileMaker Pro Help.

  2. Donate scripts to Shortcuts: In FileMaker Go, open a file that contains a script or scripts enabled in step 1.

    Scripts are donated to Shortcuts when the file is opened.

  3. In Shortcuts, create a shortcut that uses the donated scripts.

    See Shortcuts documentation for more details.

  4. To run the shortcut created in step 3:
    • In Shortcuts, run the shortcut.
    • Using Siri, say the shortcut's name.
  5. FileMaker Go opens (if it's not already open), the file specified in the shortcut opens, and the scripts specified in the shortcut are run.

Mac Ios Filemaker Go With Different Apps 2017

Removing and disabling scripts

  1. In FileMaker Go, tap then tap Manage Shortcuts Donations .

    Enabled files have donated scripts that Shortcuts and Siri voice commands may use.

    Disabled files will not donate scripts for use by Shortcuts or Siri voice commands.

  2. Swipe a file and do one of the following:
    • To prevent a file from donating scripts to Shortcuts when it's opened again, tap Disable.
    • To remove an enabled file temporarily from the list, tap Remove. The file is added back to the list when the file is opened again.

Notes

  • To reenable a disabled file, swipe it and tap Enable.
  • If a file that no longer has scripts to be donated is opened or the fmurlscript extended privilege is disabled, the file is removed from Manage Shortcuts Donations.

Differences between FileMaker Go and FileMaker Pro

FileMaker Pro features not supported in FileMaker Go

  • creating and modifying database schema such as tables, fields, relationships, data sources, and privileges
  • creating and modifying database structure such as layouts, scripts, value lists, and custom menus
  • importing records from any formats other than FMP12
  • exporting records to FMP12 or XML format
  • text baselines
  • plug-ins
  • hosting files

Script steps not supported in FileMaker Go

FileMaker Go does not support some script steps. To identify the script steps that are not supported, use the FileMaker Pro Script Workspace. See FileMaker Pro Help.

FileMaker Go does not display an alert for unsupported script steps. Unsupported script steps are skipped and return error code 3 ('Command is unavailable'). Use Get(LastError) to check for this error code.

Important:Running unsupported script steps may lead to unintended behavior.

Behavior differences

Modes

Layout and Preview modes aren’t supported in FileMaker Go. However, you can preview records by saving records as PDF and viewing the PDF within FileMaker Go.

Layout design

In FileMaker Go, you can't:

  • remove views or layouts
  • add or remove fields
  • switch to layouts that aren’t displayed in the Layouts menu, unless you provide a navigation button
  • define and assign value lists, unless they are used for drop-down lists and pop-up menus that allow editing of value lists
  • display tooltips
  • display leader characters such as “..” in tab control names
  • display shadows on layout objects

Date and time selection

You can't select seconds or fractions of seconds in FileMaker Go. To enter seconds, tap on the editing toolbar until the keyboard appears, then enter the time.

Scripted or calculated times will display seconds on the device.

Custom menus

Note:Custom menus are available when the Use advanced tools general preference is selected in FileMaker Pro.

In FileMaker Go, you can't:

Here's what to look for in the best software to suit your needs.Features — Software That Does the JobAlthough the pool of software available for Mac OS X may not rival that of PCs, there are still plenty of industry-approved options to manage finances. Doing personal finances on a Mac doesn't mean you have to compromise. Personal finance software australia mac download. Applications for both computers are equally capable. The gold standard for personal finance software is. But in reality, this line blurred a long time ago.

  • remove the Close File menu item
  • add custom menu items that do not map to existing FileMaker Go menu items
  • override the Quick Find menu item with custom menus, though you can override the quick find behavior using the Edit Custom Menu dialog box in FileMaker Pro

Note:Removed menu items are displayed but unavailable.

The following keyboard shortcuts and the standard iOS and iPadOS keyboard shortcuts override those you define for custom menus. You can use keyboard shortcuts in FileMaker Go if you have an external keyboard connected to your iOS or iPadOS device or the Smart Keyboard connected to your iPad Pro.

Press To
⌘-.(period) or EscStop a running script
⌘-OOpen the Recents tab in the Launch Center
⌘-Shift-O Open the Hosts tab in the Launch Center
⌘-Option-OOpen the My Apps tab in the Launch Center
⌘-1 through ⌘-0Perform one of the first ten scripts listed in the Scripts menu
⌘-Option-E Delete a record without confirmation
⌘-Option-WClose all files and windows
⌘-QClose all files and windows
⌘-Option-PPrint records without the Print Setup dialog

Download Filemaker Mac

Printing

  • The print options that you set for a file in FileMaker Pro have no effect on the print options for the same file in FileMaker Go, and vice versa.
  • If you’re printing a layout where exact spacing is important, such as labels or a preprinted form, specify page margins.
Mac

Fonts and text styles

  • Fonts that aren't supported by iOS or iPadOS are converted to supported fonts.
  • You can view the following text styles in FileMaker Go: bold, italic, underline, word underline, double underline, title case, uppercase, lowercase, and strikeout. FileMaker Go doesn’t support highlight, condense, extend, small caps, superscript, or subscript.

Data entry

  • Only fields are supported in the tab order. You can set up Tab and Return, but not Enter, to go to the next field.
  • The Auto-Correction setting will not work in text fields that have script triggers set up to capture keystrokes.
  • Asian languages: Sideways text isn’t supported. Input method editors (IMEs) will not work in text fields that have script triggers set up to capture keystrokes.
  • If a text field is configured to display as a drop-down calendar in FileMaker Pro, it is displayed as an edit box in FileMaker Go.

Exporting

  • By default, all manual export operations except those from the XLSX format use UTF-8; XLSX uses UTF-16.
  • You must use the Export Records script step to:
    • select fields that are not on the current layout
    • configure the output file character set

Container fields

  • The Inspector Data Formatting options Images and Interactive content do not apply to container fields in FileMaker Go.
  • FileMaker Go doesn’t support storing container field data externally for local files.

You can use the Insert From Device script step to enter content into a container field from a music library, photo library, camera, video camera, microphone, or signature; or to enter content into a container field or text field from a barcode source. See FileMaker Pro Help.

Video and audio playback in container fields

You can use the following script steps, functions, and script triggers to work with media in FileMaker Go:

  • script steps: AVPlayer Play, AVPlayer Set Options, AVPlayer Set Playback State
  • script triggers: OnObjectAVPlayerChange, OnFileAVPlayerChange, OnExternalCommandReceived
  • functions: GetAVPlayerAttribute, Get(TriggerExternalEvent)

See FileMaker Pro Help.

Encrypted files

You can’t enable or disable file encryption in FileMaker Go. To enable or disable encryption, use FileMaker Pro. If you transfer an encrypted file to an iOS or iPadOS device, the file remains encrypted on the device.

Note:The encryption feature in FileMaker Pro is available when the Use advanced tools general preference is selected.

Zoom level

In FileMaker Go, you can enlarge the image on the screen up to 200%.

Keyboard shortcuts

You can use keyboard shortcuts in FileMaker Go if you have an external keyboard connected to your iOS device or the Smart Keyboard connected to your iPad Pro.

To see a list of shortcuts for common commands, press and hold the Command key ⌘ on the keyboard.

For a list of supported keyboard shortcuts in FileMaker Go, see Help.

Saved local files

By default, the files you save locally appear in the My Apps tab, under On My iPhone, On My iPad, or On My iPod, and are saved in the Documents folder. To save the files in a temporary folder, use the Set Variable script step to create a variable to specify the output file path and filename for the script step.

You can use the following example to create an email with the file as an attachment.

Set Variable [$Output; Value: Get( TemporaryPath ) & 'Sample.pdf']
Save Records as PDF [With dialog: Off; '$Output'; Records being browsed]
Send Mail [Send via E-mail Client; With dialog: Off;
To: '[email protected]'; Subject: 'Invoice';
Message: 'Test'; '$Output']

External keyboards

Some keystrokes behave differently on external keyboards.

KeyBehavior in FileMaker Go
Eject keyHides or shows the onscreen keyboard
Arrow keysNot supported for value lists or date, time, and timestamp lists

Scripts and functions behavior

  • To stop a running script, tap anywhere on the screen, and confirm that you want to stop the script. If you do not make a choice, the script will continue running.
  • When you switch to another app, FileMaker Go enters a suspended state unless there is an audio or video file playing. When you return to FileMaker Go, the app and scripts resume from where they left off. For hosted files, if the data or schema was modified while FileMaker Go was suspended, the script stops running; otherwise, the script continues.
  • If you've switched away from FileMaker Go for an extended period and iOS or iPadOS forces the app to quit, FileMaker Go attempts to generate a hibernation file. When you restart FileMaker Go, it uses the hibernation file to reopen files. A hibernation file is not generated when a script with Allow User Abort set to Off was running when you switched away from FileMaker Go.
  • By default, script steps that create output files will not overwrite an existing file. Instead, a number is added to the end of each filename. For example, the first time you run the Save Records as PDF script step for a file named Sample.fmp12, the output filename is Sample.pdf. The second time you run the script, the filename will be Sample 1.pdf.

    To replace the output file with the new one instead of keeping multiple copies, add the file path (file:fileName or filemac:fileName) to the script. For example, if you type file:Sample.pdf or filemac:Sample.pdf in the Specify Output File dialog box each time you run the script, the Sample.pdf file in the Documents folder will be replaced with the new one.

Protecting files in FileMaker Go

Mac Ios Filemaker Go With Different Apps For Computer

Opening files protected with passwords

When users try to open a protected file in FileMaker Go, a dialog prompts them to specify an account name and password. FileMaker Go checks the following settings in the specified order to determine how to open a protected file. If none of these settings are used, the user needs to enter the account credentials to open the file.

  1. Claris ID

    If the file is hosted by FileMaker Cloud, and the user is signed in to their Claris ID, the file opens automatically.

  2. File Options dialog box to log in automatically

    In FileMaker Pro, you can use the File Options dialog box to automatically log in using a specific account name and password when you open the file.

  3. User manual override

    In FileMaker Go, users can temporarily bypass the default login information when they open a file by touching and holding a filename in the files list. Tapping Sign In displays a dialog where users can enter a different account name and password.

  4. Accessing passwords saved in the keychain

    To save passwords in the keychain, use the File Options dialog box in FileMaker Pro to allow saving passwords, then make sure the Save Passwords in Keychain option in FileMaker Go is turned on. You can also require users to authenticate with iOS or iPadOS before FileMaker Go can access its keychain. See Help.

Returning to FileMaker Go

When FileMaker Go moves to the background, it saves the state of any open FileMaker apps. When you switch back to FileMaker Go, you return to where you left off.

Filemaker Go 17 App

Files can be configured to require reauthentication after being in the background for a specified period of time. See Using the fmreauthenticate extended privilege.

After FileMaker Go moves to the background, you must reenter your account name and password to return to the file, unless:

  • you are using the Guest account
  • your account name and password match the account name and password set in the File Options dialog box in FileMaker Pro
  • you have returned to the file before the time limit specified in the fmreauthenticate extended privilege
  • you are using an account that does not have the fmreauthenticate extended privilege
  • you saved the password in Keychain Access

Using the fmreauthenticate extended privilege

Use the fmreauthenticate extended privilege to require reauthentication after not using FileMaker Go for the specified number of minutes.

With this extended privilege, when FileMaker Go switches to the foreground, users must reenter the account name and password if the specified time limit has elapsed. Users can attempt to enter their account name and password five times before FileMaker Go closes the files.

New privilege sets created in FileMaker Pro include the fmreauthenticate10 (ten minutes) keyword by default.

Securing your files

SSL certificates

See Knowledge Base.

Legal information