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:
12.2
12.3
12.4
12.5
13.0
13.1
13.2
13.3
13.4
13.5
Statistic
FMM
Blog
Installs feature which can rename dialog elements in FileMaker.
Component | Version | macOS | Windows | Linux | Server | iOS SDK |
DialogModifications | 4.3 | ✅ Yes | ❌ No | ❌ No | ❌ No | ✅ Yes |
none
Returns OK or error.
Install with setup:
MBS( "DialogModifications.Install" )
MBS( "DialogModifications.Clear" )
MBS( "DialogModifications.Set"; "Import", "Import of Contacts" )
Change stop script dialog on iOS:
# Install it
Set Variable [ $r ; Value: MBS( "DialogModifications.Install" ) ]
# Reset all replacements
Set Variable [ $r ; Value: MBS( "DialogModifications.Clear" ) ]
# Set our replacements
Set Variable [ $r ; Value: MBS( "DialogModifications.Set"; "Yes"; "Continue" ) ]
Set Variable [ $r ; Value: MBS( "DialogModifications.Set"; "No"; "Stop" ) ]
Set Variable [ $r ; Value: MBS( "DialogModifications.Set"; "Stop execution of the current script?"; "Do you like to stop the export?" ) ]
# do some important work
Set Variable [ $endTime ; Value: Get(CurrentTimestamp)+10 ]
Loop
Set Field [ Sharing::counter ; $index ]
# next
Exit Loop If [ Get(CurrentTimestamp)> $endTime ]
End Loop
# stop for next script
Set Variable [ $r ; Value: MBS( "DialogModifications.Clear" ) ]
This function checks for a license.
Created 18th August 2014, last changed 20th April 2022