Components | All | New | MacOS | Windows | Linux | iOS | ||||
Examples | Mac & Win | Server | Client | Guides | Statistic | FMM | Blog | Deprecated | Old |
CURL.SetFinishedScript
Sets which script to call when a transfer finished.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
CURL | 5.2 | ✅ Yes | ✅ Yes | ✅ Yes | ❌ No | ✅ Yes |
MBS( "CURL.SetFinishedScript"; curl; Filename; ScriptName ) More
Parameters
Parameter | Description | Example |
---|---|---|
curl | The CURL session handle. | $curl |
Filename | The database file name where the script is located. | "test.fmp12" |
ScriptName | The script name. | "MyScript" |
Result
Returns OK or error.
Description
Sets which script to call when a transfer finished.Works with CURL.Perform, CURL.PerformAsync and CURL.PerformInBackground.
Does not work on server due to missing capability to trigger scripts in the plugin SDK with FileMaker Server.
The finish script and evaluate run after failed/succeed scripts and evaluates.
With plugin version 6.0 or newer the script name can be a script ID number. In that case the plugin queries the script name for the given script ID. This allows to call scripts by ID and avoid problems if scripts are later renamed.
Notice: FileMaker 19.2 adds a fmplugin extended privileges. If you have such an extended privileges to allow the plugin to trigger scripts, you need to grant permissions for it. If such a privilege is not defined, the plugin is allowed to trigger scripts. See FileMaker product documentation for details.
Examples
Start a curl session and setup a few scripts:
Set Variable [$curl; Value:MBS("CURL.New")]
Set Variable [$r; Value:MBS("CURL.SetFinishedScript"; $curl; Get(FileName); "DownloadFinished")]
Set Variable [$r; Value:MBS("CURL.SetProgressScript"; $curl; Get(FileName); "ProgressScript")]
See also
- CURL.GetFinishedScriptName
- CURL.New
- CURL.Perform
- CURL.PerformAsync
- CURL.PerformInBackground
- CURL.SetFailedScript
- CURL.SetProgressScript
- CURL.SetTag
Example Databases
- ChatGPT
- CURL/CURL and OnWindowTransaction
- CURL/CURL Download in Background
- CURL/Download Async
- CURL/MQTT
Blog Entries
- Using ChatGPT in FileMaker
- MQTT in FileMaker
- Background Log Custom function
- Send Audit Log via CURL in background
- How long do you wait for Insert From URL to finish?
FileMaker Magazin
This function is free to use.
Created 12nd July 2015, last changed 27th December 2023