Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

MBS FileMaker Plugin Example Databases

Print PDF

All examples are included with download of MBS FileMaker Plugin.

Print PDF.fmp12

Overview
Tables1
Relationships0
Layouts1
Scripts2
Value Lists0
Custom Functions0
Custom Menus33
File Options
Default custom menu set[Standard FileMaker Menus]
When opening file
Minimum allowed version12.0
Login usingAccount Name; Account= Admin
Allow user to save passwordOff
Require iOS passcodeOff
Switch to layoutOff
Hide all toolbarsOff
Script triggers
OnFirstWindowOpenOff
OnLastWindowCloseOff
OnWindowOpenOff
OnWindowCloseOff
OnFileAVPlayerChangeOff
Thumbnail Settings
Generate ThumbnailsOn; Temporary

 

Tables

Table Name
Statistics
Occurrences in Relationship Graph
Print PDFs
3 fields defined, 1 record
Print PDFs

Fields

Table Name: Print PDFs - 3 Fields
Field NameTypeOptionsCommentsOn LayoutsIn RelationshipsIn ScriptsIn Value Lists
DynaPDF LicenseKeyNormal, TextAuto-Enter:
  • Allow editing
Validation:
  • Only during data entry
Storage:
  • Global
  • Repetitions: 1
  • Index Language: German
        InputPDFNormal, BinaryAuto-Enter:
        • Allow editing
        Validation:
        • Only during data entry
        Storage:
        • Repetitions: 1
            Printer NameNormal, TextAuto-Enter:
            • Allow editing
            Validation:
            • Only during data entry
            Storage:
            • Global
            • Repetitions: 1
            • Index Language: German

                Layout Objects: Print PDFs

                Regular Fields

                Field Name: Print PDFs::DynaPDF LicenseKey
                Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                • Top: 6 pt
                • Left: 132 pt
                • Bottom: 31 pt
                • Right: 385 pt
                • Anchoring: Left, Top
                Field Format:
                • Edit Box
                Field Behavior:
                • Allow field to be entered: In Find mode, In Browse mode
                • Touch keyboard type: System Default
                • Go to next field using: Tab key
                No

                Field Name: Print PDFs::InputPDF
                Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                • Top: 74 pt
                • Left: 132 pt
                • Bottom: 331 pt
                • Right: 385 pt
                • Anchoring: Left, Top
                Field Format:
                • Edit Box
                Field Behavior:
                • Allow field to be entered: In Find mode, In Browse mode
                • Touch keyboard type: System Default
                • Go to next field using: Tab key
                No

                Field Name: Print PDFs::Printer Name
                Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                • Top: 36 pt
                • Left: 132 pt
                • Bottom: 61 pt
                • Right: 385 pt
                • Anchoring: Left, Top
                Field Format:
                • Edit Box
                Field Behavior:
                • Allow field to be entered: In Find mode, In Browse mode
                • Touch keyboard type: System Default
                • Go to next field using: Tab key
                No

                Buttons

                Button PropertiesCoordinatesScript/Script Step
                  Type:
                • Text: Import PDF file...
                • Top: 74 pt
                • Left: 396 pt
                • Bottom: 107 pt
                • Right: 534 pt
                • Anchoring: Left, Top
                Insert File [ Print PDFs::InputPDF ] [ Custom title: "Insert PDF" ] [ Filters ] [ "PDF Files": ( *.pdf ) ] [ Storage method: Let user choose ] [ Display icon ] [ Compression: Let user choose ]

                Fields:


                Button PropertiesCoordinatesScript/Script Step
                  Type:
                • Text: Print
                • Top: 118 pt
                • Left: 396 pt
                • Bottom: 151 pt
                • Right: 534 pt
                • Anchoring: Left, Top
                Perform Script [ “Print Windows” ]

                Scripts:


                Script Hierarchy

                InitDynaPDF
                Print Windows

                Next Script: [Print Windows]
                Script NameInitDynaPDF
                Run script with full access privilegesOff
                Include In MenuYes
                Layouts that use this script
                  Scripts that use this script
                  Script Definition
                  Script Steps
                  • #Locate DynaPDF library
                  • #you can have libraries in container and export at runtime to folder of your choice.
                  • #Or install library somewhere and pass path.
                  • #If library is in same folder as plugin, you can only pass only file name.
                  • If [ MBS("IsServer") ]
                  • #Put the path you use for your server here:
                  • If [ Get(SystemPlatform) = -2 ]
                  • #Server on Windows
                  • Set Variable [ $path; Value:"C:\Programs\FileMaker Server\dynapdf.dll" ]
                  • Else If [ MBS("IsLinux") ]
                  • #Server on Linux for FileMaker Cloud
                  • Set Variable [ $path; Value:"/opt/FileMaker/FileMaker Server/dynapdf.linux.so" ]
                  • Else
                  • #Server on Mac
                  • Set Variable [ $path; Value: "/Library/FileMaker Server/dynapdf.dylib" ]
                  • End If
                  • Else
                  • #For desktop and our examples we look in same folder as database:
                  • Set Variable [ $databasePath; Value:Get(FilePath) ]
                  • Set Variable [ $databasePath; Value:MBS("Path.FilemakerPathToNativePath"; $databasePath) ]
                  • Set Variable [ $databasePath; Value:Substitute ( $databasePath ; ".fp7" ; ".fmp12") ]
                  • Set Variable [ $databaseName; Value:Get(FileName) & ".fmp12" ]
                  • If [ Get(SystemPlatform) = -2 ]
                  • Set Variable [ $path; Value:Substitute ( $databasePath ; $databaseName ; "dynapdf.dll" ) ]
                  • #plugin will look for dynapdf.dll and if not found also for dynapdf.dll (64-bit) and dynapdf32.dll (32-bit).
                  • Else
                  • Set Variable [ $path; Value:Substitute ( $databasePath ; $databaseName ; "dynapdf.dylib" ) ]
                  • #Mac dylib is usually 32 and 64 bit together.
                  • End If
                  • End If
                  • #You can test for free.
                  • #If you like to get a dynapdf license, please follow links on our pricing page:
                  • #https://www.monkeybreadsoftware.de/filemaker/pricing.shtml
                  • Set Variable [ $LicenseKey; Value:"" // put your key here or leave empty for demo. // Use e.g. "Lite", "Pro" or "Starter" to use demo mode for just that mode. ]
                  • Set Variable [ $r; Value:MBS( "DynaPDF.Initialize"; $path; $LicenseKey) ]
                  • If [ $r ≠ "OK" ]
                  • Show Custom Dialog [ Title: "Error"; Message: $r; Default Button: “OK”, Commit: “No”; Button 2: “Cancel”, Commit: “No” ]
                  • Halt Script
                  • End If
                  Fields used in this script
                    Scripts used in this script
                      Layouts used in this script
                        Tables used in this script
                          Table occurrences used by this script
                            Custom Functions used by this script
                              Custom menu set used by this script

                                Previous Script: [InitDynaPDF]
                                Script NamePrint Windows
                                Run script with full access privilegesOff
                                Include In MenuYes
                                Layouts that use this script
                                Scripts that use this script
                                  Script Definition
                                  Script Steps
                                  Fields used in this script
                                  Scripts used in this script
                                  Layouts used in this script
                                    Tables used in this script
                                    Table occurrences used by this script
                                    Custom Functions used by this script
                                      Custom menu set used by this script

                                        Download example: Print PDF

                                        Used functions: