Topics
All
Mac OS X
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Guides
Examples
New in version:
7.4
7.5
8.0
8.1
8.2
8.3
8.4
8.5
9.0
9.1
Statistic
CURL.SetProgressScript
Sets the progress script.
Component | Version | macOS | Windows | Server | FileMaker Cloud | FileMaker iOS SDK |
CURL | 5.2 | Yes | Yes | No | No | Yes |
Parameters
Parameter | Description | Example value |
---|---|---|
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 the progress script.This script is called for asynchronous transfers when percent value changed.
So you can update progress user interface.
Does not work on server due to missing capability to trigger scripts in the plugin SDK with FileMaker Server.
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.
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.GetProgressPercent
- CURL.GetProgressScriptName
- CURL.New
- CURL.PerformAsync
- CURL.SetFinishedScript
Example Databases
Created 12nd July 2015, last changed 22nd December 2016
CURL.SetProgressEvaluate - CURL.SetTag
Feedback: Report problem or ask question.
Links
MBS Xojo Chart Plugins