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

MBS FileMaker Plugin Example Databases

CURL Download Picture with Info

All examples are included with download of MBS FileMaker Plugin.

CURL Download Picture with Info.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
CURL Test
5 fields defined, 1 record
CURL Test

Fields

Table Name: CURL Test - 5 Fields
Field NameTypeOptionsCommentsOn LayoutsIn RelationshipsIn ScriptsIn Value Lists
ResultNormal, TextAuto-Enter:
  • Allow editing
Validation:
  • Only during data entry
Storage:
  • Repetitions: 1
  • Indexing: None
  • Automatically create indexes as needed
  • Index Language: German
      ImageNormal, BinaryAuto-Enter:
      • Allow editing
      Validation:
      • Only during data entry
      Storage:
      • Repetitions: 1
          headerNormal, TextAuto-Enter:
          • Allow editing
          Validation:
          • Only during data entry
          Storage:
          • Repetitions: 1
          • Indexing: None
          • Automatically create indexes as needed
          • Index Language: German
              debugNormal, TextAuto-Enter:
              • Allow editing
              Validation:
              • Only during data entry
              Storage:
              • Repetitions: 1
              • Indexing: None
              • Automatically create indexes as needed
              • Index Language: German
                    infoNormal, TextAuto-Enter:
                    • Allow editing
                    Validation:
                    • Only during data entry
                    Storage:
                    • Repetitions: 1
                    • Indexing: None
                    • Automatically create indexes as needed
                    • Index Language: German

                        Layout Objects: CURL Test

                        Regular Fields

                        Field Name: CURL Test::Result
                        Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                        • Top: 24 pt
                        • Left: 138 pt
                        • Bottom: 38 pt
                        • Right: 391 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
                        Yes

                        Field Name: CURL Test::Image
                        Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                        • Top: 42 pt
                        • Left: 138 pt
                        • Bottom: 170 pt
                        • Right: 391 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: CURL Test::header
                        Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                        • Top: 174 pt
                        • Left: 138 pt
                        • Bottom: 470 pt
                        • Right: 547 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
                        Yes

                        Field Name: CURL Test::info
                        Field PropertiesCoordinatesField FormatField BehaviorQuick Find
                        • Top: 48 pt
                        • Left: 576 pt
                        • Bottom: 524 pt
                        • Right: 1069 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
                        Yes

                        Group Buttons

                        Button PropertiesCoordinatesScript/Script Step
                          Type:
                        • Text: Download Image
                          Additional Properties:
                        • Change to hand cursor over button
                        • Rectangular
                        • Top: 24 pt
                        • Left: 408 pt
                        • Bottom: 49 pt
                        • Right: 541 pt
                        • Anchoring: Left, Top
                        Perform Script [ “Download” ]

                        Scripts:


                        Button PropertiesCoordinatesScript/Script Step
                          Type:
                        • Text: Trace on
                          Additional Properties:
                        • Change to hand cursor over button
                        • Rectangular
                        • Top: 480 pt
                        • Left: 12 pt
                        • Bottom: 505 pt
                        • Right: 145 pt
                        • Anchoring: Left, Top
                        Set Variable [ $result; Value:MBS("Trace") ]

                        Script Hierarchy

                        Download
                        Clear

                        Next Script: [Clear]
                        Script NameDownload
                        Run script with full access privilegesOff
                        Include In MenuYes
                        Layouts that use this script
                        Scripts that use this script
                          Script Definition
                          Script Steps
                          • Set Variable [ $curl; Value:MBS("CURL.New") ]
                          • #This URL is wrong, so we will be redirected. And to allow redirect we set FollowLocation to 1.
                          • Set Variable [ $result; Value:MBS("CURL.SetOptionURL"; $curl; "http://www.monkeybreadsoftware.de/images/mbss.jpg") ]
                          • Set Variable [ $result; Value:MBS("CURL.SetOptionFileTime"; $curl; 1) ]
                          • Set Variable [ $result; Value:MBS("CURL.SetOptionFollowLocation"; $curl; 1) ]
                          • Set Field [ CURL Test::Result; MBS("CURL.Perform"; $curl) ]
                          • Set Field [ CURL Test::Image; MBS("CURL.GetResultAsJPEG"; $curl) ]
                          • Set Field [ CURL Test::header; MBS("CURL.GetHeaders"; $curl) ]
                          • Set Field [ CURL Test::debug; MBS("CURL.GetDebugMessages"; $curl) ]
                          • Set Variable [ $info; Value:"" ]
                          • Set Variable [ $info; Value:$info & "GetFileTime: " & MBS("CURL.GetFileTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetFTPEntryPath: " & MBS("CURL.GetFTPEntryPath"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetCookieList: " & MBS("CURL.GetCookieList"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetLocalPort: " & MBS("CURL.GetLocalPort"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetLocalIP: " & MBS("CURL.GetLocalIP"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetPrimaryPort: " & MBS("CURL.GetPrimaryPort"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetPrimaryIP: " & MBS("CURL.GetPrimaryIP"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetNumConnects: " & MBS("CURL.GetNumConnects"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetOSErrNo: " & MBS("CURL.GetOSErrNo"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetProxyAuthAvail: " & MBS("CURL.GetProxyAuthAvail"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetHTTPAuthAvail: " & MBS("CURL.GetHTTPAuthAvail"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetContentType: " & MBS("CURL.GetContentType"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetContentLengthUpload: " & MBS("CURL.GetContentLengthUpload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetContentLengthDownload: " & MBS("CURL.GetContentLengthDownload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSSLEngines: " & Substitute ( MBS("CURL.GetSSLEngines"; $curl) ; "¶" ; ", " ) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSSLVerifyResult: " & MBS("CURL.GetSSLVerifyResult"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetRequestSize: " & MBS("CURL.GetRequestSize"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetHeaderSize: " & MBS("CURL.GetHeaderSize"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSpeedUpload: " & MBS("CURL.GetSpeedUpload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSpeedDownload: " & MBS("CURL.GetSpeedDownload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSizeDownload: " & MBS("CURL.GetSizeDownload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetSizeUpload: " & MBS("CURL.GetSizeUpload"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetRedirectURL: " & MBS("CURL.GetRedirectURL"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetRedirectCount: " & MBS("CURL.GetRedirectCount"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetRedirectTime: " & MBS("CURL.GetRedirectTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetStartTransferTime: " & MBS("CURL.GetStartTransferTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetPreTransferTime: " & MBS("CURL.GetPreTransferTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetAppConnectTime: " & MBS("CURL.GetAppConnectTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetConnectTime: " & MBS("CURL.GetConnectTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetNameLookupTime: " & MBS("CURL.GetNameLookupTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetTotalTime: " & MBS("CURL.GetTotalTime"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetResponseCode: " & MBS("CURL.GetResponseCode"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetHTTPConnectCode: " & MBS("CURL.GetHTTPConnectCode"; $curl) & "¶" ]
                          • Set Variable [ $info; Value:$info & "GetEffectiveURL: " & MBS("CURL.GetEffectiveURL"; $curl) & "¶" ]
                          • Set Field [ CURL Test::info; $info ]
                          • Set Variable [ $result; Value:MBS("CURL.Release"; $curl) ]
                          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: [Download]
                                  Script NameClear
                                  Run script with full access privilegesOff
                                  Include In MenuYes
                                  Layouts that use this script
                                    Scripts that use this script
                                      Script Definition
                                      Script Steps
                                      • Set Field [ CURL Test::Result; "" ]
                                      • Set Field [ CURL Test::Image; "" ]
                                      • Set Field [ CURL Test::header; "" ]
                                      • Set Field [ CURL Test::debug; "" ]
                                      • Set Field [ CURL Test::info; "" ]
                                      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: CURL Download Picture with Info

                                              Used functions: