Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 9.5   10.0   10.1   10.2   10.3   10.4   10.5   11.0   11.1   11.2    Statistic    FMM    Blog  

UNNotification.SetActionScript

Sets which script to call when a notification’s action is triggered.

Component Version macOS Windows Linux Server iOS SDK
UNNotification 7.2 ✅ Yes ❌ No ❌ No ❌ No ✅ Yes
MBS( "UNNotification.SetActionScript"; Filename; ScriptName )   More

Parameters

Parameter Description Example
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 notification’s action is triggered.
Called for both local and remote notifications.
Parameter to the script is a list with first the ID of the notification and second the action identifier.

Use UNNotification.AddUserInfo to associate your own values with the notifications, which you can then use in the triggered script.

Examples

Sets action script:

MBS( "UNNotification.SetActionScript"; Get(Filename); "NotificationActionTriggered" )

See also

Example Databases

Created 15th April 2017, last changed 13th December 2019


UNNotification.Schedule - UNNotification.SetBadge

Feedback: Report problem or ask question.