In order for plugin function to work on the server you have to create a config file on server and set the read permission to everyone:
| OS | Path |
|---|---|
| macOs: | /Library/FileMaker Server/Data/24U/24uPluginsAllowedFunctions.txt |
| win: | C:FilesServer\24U\24uPluginsAllowedFunctions.txt |
| linux: | /opt/FileMaker/FileMaker Server/Data/24U/24uPluginsAllowedFunctions.txt |
For webdirect you also need to create /opt/FileMaker/FileMaker Server/Data/Documents/ folder with appropriate permissions.
Toolbox plugin functions won’t work on server in these cases:
Toolbox plugin won’t work on secondary machine if /opt/FileMaker/FileMaker Server/Data/Documents/ folder doesn’t exist.
Every line represent one database, first is the name of the database (with suffix .fmp12) followed by tabulator and then function names separated by ‘|’ (vertical bar).
Or name of the database (with suffix .fmp12) followed by tabulator and then the word “any” if you want to allow all the plugin functions. You can find template of 24uPluginsAllowedFunctions.txt in Examples.
In following example: * Solution MyFileMakerDatabaseOnServer.fmp12 is allowed to use all the 24U plugin functions * Solution MyOtherFileMakerDatabaseOnServer.fmp12 is allowed to use functions Toolbox_Set, Toolbox_GetNameForIP and Toolbox_GetGlobal. Calling function other than those 3 will fail
MyFileMakerDatabaseOnServer.fmp12 any
MyOtherFileMakerDatabaseOnServer.fmp12 Toolbox_Set|Toolbox_GetNameForIP|Toolbox_GetGlobalReturns version string of the active 24U Toolbox Plug-In, formatted as requested by the parameter.
| versionFormat | Defines the format of the returned version. |
| “short” | To get just the version number. Default value. |
| “long” | To get the Plug-In name followed by its version number. |
| “platform” | To get the platform the code is currently running on. |
| “autoupdate” | To get autoupdate compatible (comparable) version number. |
This function is very important and its output format is uniform in all 24U Plug-Ins. You should call this function every time you need to check if the Plug-In is properly installed to the FileMaker Pro. Even if the Plug-In is not registered (or badly registered) this function should work. Calling this function in the startup script of your solution is recommended.
Returns requested version format or platform. If this function returns “?” then the Plug-In is not properly installed or FileMaker cannot load and activate it for some reason.
Toolbox_Version( "long" )This returns the Plug-In name and its version. In this case it is “24U Toolbox Plug-In 3.0”.
Toolbox_Version( "platform" )Returns “macOS”, “Linux” or “Windows” depending on the platform the Plug-In is currently running.
Toolbox_Version( "autoupdate" )Returns “01010300” for the Plug-In version 1.1.3.
Provides special functionality to operate with plugin serial numbers.
| SerialNumber | Register given SerialNumber and return an error code. |
| EmailAddress | Tries to activate with given email address and return an error code. Trial version is valid only after you confirm email |
| Hash | Activate a serial number with a hash received from 24U. Used for offline activation. |
| “Registration Window” | Show the “Registration window” and return 0. |
| “About Window” | Show the “About window” and return 0. |
| “Status” | Return the actual registration state of the plugin: Demo, Demo expired, Trial, Trial Expired, Registered or Dead. |
| “Unregister” | Unregister all serial numbers related to the product and return an error code. Note: after this trial version days wont come back. |
| “Info” | Returns current plugin status and its registered serial numbers. |
| “ActivationChallenge” | Returns generated challenge string. This string is sent to 24U. |
| “Purchase” ; webAddress | Opens web browser with given webAddress. Given webAddress should point to 24U Store. This functionality is not implemented for FileMaker Server and Linux. |
Use this function to register or unregister 24U Toolbox Plug-In, to get information about current registration state, or to invoke GUI providing basic registration information and purchase capabilities.
Returns zero or error code depending on the selector.
Toolbox_Register( "TBX25C016-BXMW-VNW7-L8AJ-3KGX-VWG8" )This function will register the Plug-In with client serial number TBX25C016-BXMW-VNW7-L8AJ-3KGX-VWG8 for 16 users.
Toolbox_Register( "user@mail.com" )In case you do not have a serial number, but you want to try the Plug-In out, use the string with your email address as selector.
Toolbox_Register( "unregister" )This function will unregister every serial number related to 24U Toolbox Plug-In.
Toolbox_Register( "About window" )Similar to opening FileMaker preferences, navigating to the Plug-Ins tab and double-clicking on 24U Toolbox Plug-In.
Note: All serial numbers here are only for demonstration purposes. They will not work in the Plug-In.
These functions do not need to be registered, because of the performance benefit:
Tells the Plug-In to execute SQL command and returns the result.
| SQLCommand | The SQL command which should be executed. |
| fieldSeparator | Optional field separator. Only the first character is used. The default field separator is a “Tab”. |
| recordSeparator | Optional record separator. Only the first character is used. The default record separator is a line break. |
This command tries to execute SQL command and returns the result. If an array of multiple records is a result of the command, it is returned as tab delimited text with records separated by returns, unless custom separators are specified.
The function returns the result of the SQL Command.
Toolbox_ExecuteSQL( "select * from FileMaker_Tables" )Returns a list of FileMaker tables.
Tells the Plug-In to launch the specified script in the system shell.
| scriptText | The text of the script that should be run. |
| scriptInterpreter | The interpreter that should run the script. |
| waitForResult | Choose if Plug-In should wait until script is finished or not before returning to FileMaker. Value “wait” is default. |
| timeout | Script timeout in seconds. It can be a decimal number. |
| scriptInterpreter | Script type | Platform |
|---|---|---|
| “APPLE” | Apple script | macOS |
| “BASH” | Bash script | macOS and Linux |
| “PHP” | PHP script | macOS |
| “BAT” | Bat script | Windows |
| “VBS” | Visual Basic script | Windows |
| waitForResult | Script type | Description and platform |
|---|---|---|
| “wait” | All | The script will execute synchronously. Plug-In will wait until the script is finished (or timed-out) and return the standard output. Use this option to call a simple script that takes little time to perform. |
| “dontWait” | All | The script will run on a separate thread. Plug-In will return scriptId immediately. Use Toolbox_Get(“scriptInfo” ; scriptId) to check the script status and read the output, or you can call Toolbox_Set(“scriptTerminate” ; scriptId) to terminate it. |
The function executes the script.
Returns either the standard output (and error) of the script (“wait”) or the scriptId (“dontWait”). In the case of Plug-In error (such as wrong parameters), the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain the error code.
Toolbox_DoSystemScript( "DIR C:" ; "BAT" )This executes specified BAT script that lists all directories and files in the root directory of disk C: on Windows.
Toolbox_DoSystemScript( "echo HELLO" ; "BASH" )This executes specified BASH script and returns “HELLO”.
Toolbox_DoSystemScript( "echo started; sleep 10; echo done" ; "BASH" ; "dontWait" )This runs a BASH script asynchronously and returns a process id. Remember this id to track output of the script with Toolbox_Get.
Toolbox_DoSystemScript( "echo started; sleep 10; echo done" ; "BASH" ; "wait" ; 2.5 ) & ¶ &
Toolbox_Get( "lastErrorMessage" )This will return “? ¶ Timeout Error” after 2.5 seconds. (Depending on the region of your FileMaker installation, you may need to write the decimal as 2,5 instead.)
Toolbox_DoSystemScript( "php C:\php.php" ; "BAT" )This executes BAT script that runs PHP script on Windows (only if PHP is correctly installed in the system).
Tells the Plug-In to launch the FileMaker script. Note: FileMaker scripts cannot be performed on FileMaker Server.
Note: Toolbox_DoFileMakerScript is not supported on Linux version.
| scriptName | The name of the script that should be executed. If the name is not valid, the function returns an error -50. |
| scriptParameter | Any data that should be sent to the script as a parameter. No parameter is default. |
| delayOrTime | The time interval after that the script should be executed, or TimeStamp value. In the first case use FileMaker number i.e. 1.8. Time is in [s]. Time must be a positive number. If the time delay for execution is longer than 1 day, a warning -1001 is generated, and the script is scheduled anyway. In the second case use FileMaker TimeStamp value. |
This command tries to schedule or launch the FileMaker script. If delayOrTime parameter is not specified, the script should run immediately.
The function returns 0 if it managed to execute or schedule the script. In the case of error, the function returns negative error code.
The Toolbox Plug-In cannot remember scheduled scripts if FileMaker is restarted.
Note: Scheduled FileMaker scripts are called only when FileMaker is in IDLE state. Therefore, FileMaker script execution can be further delayed if FileMaker is busy. Note: This function doesn’t work on FileMaker Server.
Toolbox_DoFileMakerScript( "Default Script" )This tries to execute the script named “Default Script” instantly.
Toolbox_DoFileMakerScript( "Default Script" ; "105" )This tries to execute the script named “Default Script” instantly. The script receives a parameter with value 105.
Toolbox_DoFileMakerScript( "Default Script" ; "230" ; 10.5 )This tries to schedule the script named “Default Script”. The script receives a parameter with value 230. The script will be executed 10.5 seconds after this command being executed.
Toolbox_DoFileMakerScript( "Default Script" ; "50" ; GetAsTimestamp( "3/10/2012 11:30 AM" ))This tries to schedule the script named “Default Script”. The script receives a parameter with value 50. The script will be executed 3/10/2012 at 11:30 AM.
Gets hostname for the given IP.
| hostIP | The source IP address. |
Uses DNS service of the operating system to obtain the name for the given IP.
The function returns a hostname. In the case of error, the function returns negative error code.
Toolbox_GetNameForIP( "209.85.149.99" )Returns DNS record for IP Address 209.85.149.99.
Gets IP for the given hostname.
| hostName | The source hostname. |
Uses DNS service of the operating system to obtain the IP for the given name.
The function returns host IP. In the case of error, the function returns negative error code.
Toolbox_GetIPforName( "www.24u.cz" )Returns an IP Address for hostname “www.24u.cz”.
Gets your public ip address.
This command tries to get your internet public ip address. If you are not behind NAT the returned address is the same as the address from your network interface. Otherwise, it returns the address of frontmost NAT in your network.
The function returns your public ip address. In the case of error, the function returns negative error code.
If this command does not work in your system it may be due wrong firewall setting. Please enable two-way communication for your FileMaker Pro in your firewall setting to get this command to work.
Toolbox_GetClientPublicIPAddressReturns your public ip address.
Gets a list of opened special FileMaker windows.
Note: Toolbox_GetSpecialWindows is disabled on server.
This command tries to get a list of special FileMaker windows such as “Data Viewer” and “Script Debugger” etc.
The function returns a value list of the special FileMaker windows delimited by the line break.
Toolbox_GetSpecialWindowsReturns “Data viewer” if it is opened.
Gets a list of installed printers.
Note: Toolbox_GetPrinterNames is not supported on Linux version.
This command tries to get a list of printers currently installed in the system.
The function returns the list of printers currently installed in the system. The printer names are delimited by line break.
Toolbox_GetPrinterNamesReturns the list of printers currently installed in the system.
Gets the default printer.
Note: Toolbox_GetDefaultPrinter is not supported on Linux version.
This command gets the name of default printer currently used in the system.
The function returns the name of default printer of the current session. If no printer is set as default, the function returns ““.
Toolbox_GetDefaultPrinterReturns the name of default printer of the current session.
Sets the specified printer as a default printer.
Note: Toolbox_SetDefaultPrinter is not supported on Linux.
| printerName | The identifier of the printer which should be set as default. |
This command sets the printer described in printerName parameter as a default printer in the system.
The function returns the name of the printer which was actually set. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain error code.
Use Toolbox_GetPrinterNames to obtain the list of printers and choose one line as a parameter for this function.
Toolbox_SetDefaultPrinter( "HP710" )Sets “HP710” as a new default printer for the system or returns “?” if “HP710” cannot be the default one.
Assigns a keyboard shortcut for script. Only one script can be assigned to a given shortcut. All keyboard shortcuts are forgotten when FileMaker quits.
Note: Toolbox_SetScriptShortcut cannot be used with FileMaker Server.
| key | The keyboard shortcut in format Modifier & ” ” & rawKey. Modifier can be: ““,”shift”, “ctrl”, “alt”, “super” or their combination like “shift alt” or “ctrl alt”. The “super” key means Command key on Mac or Windows key on Windows. RawKey can be any key from keyboard + some special keys: “F1” - “F13”, “enter”, “esc”, “pageup”, “pagedown”, “up”, “down”, “left”, “right”, “delete”, “backspace”, “space”, “tab”. RawKey parameter is case insensitive. |
| scriptName | The name of the script which should be triggered. |
| scriptParameter | The optional script parameter. |
| scriptControl | This optional parameter tells FileMaker how to handle another running scripts, when script specified in this command is triggered. Possible values are: “Halt”, “Exit”, “Resume”, “Pause”. |
Assigns a keyboard shortcut for script. All keyboard shortcuts are forgotten when FileMaker quits.
The function returns 0 if event is successfully installed or uninstalled. In case of error the function returns negative error code.
Keys “F8” - “F13” are usually reserved for system functions on macOS. Shortcuts will interfere with these functions.
Toolbox_SetScriptShortcut( "ctrl alt F1" ; "Default Script" )This installs the script named “Default Script” for a shortcut “ctrl+alt+F1”. When this shortcut is pressed, the script will be triggered.
Toolbox_SetScriptShortcut( "ctrl alt F1" ; "" )This uninstalls any script for a shortcut “ctrl+alt+F1”.
Toolbox_SetScriptShortcut( "" ; "" )This removes all installed scripts for all previously inserted shortcuts.
Finds a defined regular expression pattern in the text and returns the number of occurrences.
| text | The source text where to perform find. |
| searchPattern | Regular expression defining what to find. |
This function will find a defined regular expression pattern in the text and returns the number of occurrences. Text in “searchPattern” parameter can be styled. If so the function will become style sensitive.
The function return the number of occurrences found. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain error code.
Toolbox_RegExp_PatternCount( "I was born in the USA on 12/02/1973." ; "([0-9]{1,2})[./-]([0-9]{1,2})[./-]([0-9]{2}|[0-9]{4})" )Returns 1 because there is one date in the string.
Finds and replaces pattern in specified text.
| text | The source text where to perform find & replace. |
| searchPattern | Regular expression defining what to find. |
| replaceString1 | Text which will replace found string. |
| replaceString2 … | The next text to replace found string. The number of strings should be the same as the regular expression needs. |
This function finds and replaces found text. Text in “searchPattern” parameter can be styled. If so the function will become style sensitive.
The function returns text with replaced patterns. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain error code.
Toolbox_RegExp_Substitute( "I was born in the USA on 12/02/1973." ; "([0-9]{1,2})[./-]([0-9]{1,2})[./-]([0-9]{2}|[0-9]{4})" ; "10" ; "12" ; "2008" )Returns "I was born in the USA 10/12/2008.".
Provides a PCRE compatible regular expression match.
| text | The source text where to perform the match. |
| searchPattern | Regular expression defining what to find. |
| flag | Can be “matchFirst” (default) or “matchAll”. This specifies whether we search for first or every match. |
This function looks for regular expression matches using the provided search pattern.
For each match, it returns the match itself, plus every capturing
group for the given match (if any). The format depends on
flag:
| outputMode | format | example |
|---|---|---|
| matchFirst | A JSON array (match & groups of the first match) | [ "match1", "group11, group12 ] |
| matchAll | A JSON array of arrays (match & groups of every match) | [ [ "match1", group11, group12 ], [ match2, group21, group22 ] ] |
In case of error, the function returns “?”. Use
Toolbox_Get( "lastError" ) to obtain the error code.
Toolbox_RegExp_Match( "The answer is 42." ; "[0-9]{1,}")Returns
[
"42"
]Toolbox_RegExp_Match( "Hello world!" ; "(?i)[AEIOUY]" ; "matchAll")Here, we used the “(?i)” option to ignore case. This returns
[
[
"e"
],
[
"o"
],
[
"o"
]
]Toolbox_RegExp_Match(
"I was born in the USA on 12/02/1973. I moved to East Timor on 28-11-94." ;
"([0-9]{1,2})[./-]([0-9]{1,2})[./-]([0-9]{4}|[0-9]{2})" ;
"matchFirst"
)Returns
[
"12/02/1973",
"12",
"02",
"1973"
]Toolbox_RegExp_Match(
"I was born in the USA on 12/02/1973. I moved to East Timor on 28-11-94." ;
"([0-9]{1,2})[./-]([0-9]{1,2})[./-]([0-9]{4}|[0-9]{2})" ;
"matchAll"
)Returns
[
[
"12/02/1973",
"12",
"02",
"1973"
],
[
"28-11-94",
"28",
"11",
"94"
]
]This function finds values in the FileMaker text and replaces them by their values.
Note: Toolbox_MergeText is not supported on Linux version.
| text | Text which should be searched and merged. All < |
This function finds values in the FileMaker text and replaces them by their values. All values are calculated only once. If the value contains the style this style is used. Otherwise, the original style is preserved.
The function returns merged text. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain error code.
Toolbox_MergeText( "There are <<NumberField>> records." )If the field named NumberField contains number 5 it returns
"There are 5 records.".
This function returns the type of its parameter.
| value | FileMaker value which type you want to obtain. |
The function determines the type of its parameter. It can be FileMaker Text, Number, Date, Time, Timestamp or Container. This can be useful when you need precisely control script or custom function which is dependent on parameter type.
The function always return FileMaker text and never fails. It can return “Text”, “Number”, “Date”, “Time”, “Timestamp”, “Container” or “” for unknown type.
Toolbox_ValueType( "There are 5 records." )Returns “Text” because input value type is FM text.
This function returns Toolbox Plug-In internal parameters.
| selector | What parameter to get. |
| selector | Description |
|---|---|
| “lastError” | Returns the Plug-In last error. |
| “lastErrorMessage” | Returns the Plug-In last error message. |
| “registrationWarning” | The selector has been deprecated in favor of Toolbox_Register(“Status”). |
| “inlineDocumentation” | Returns “on” or “off” based on status of inlineDocumentation in Plug-In. This selector doesn’t work on FileMaker Server. |
| “scriptInfo” | Returns a JSON containing the status, standard output and error of a
script specified by scriptId. Works only for scripts called
via Toolbox_DoSystemScript with
“dontWait” parameter. |
Generic function to get various Plug-In parameters.
The function returns a value specified by the selector. In the case
of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to
obtain error code. Toolbox_Get( “lastError” ) never fails. In case of
Toolbox_Get( "scriptInfo" ; scriptId ), the return value is
a JSON object:
{
"error" : "[script error]",
"output" : "[script output]",
"status" : "[script status]"
}The following table lists every script status and explains its meaning.
| status | Description |
|---|---|
| “running” | The script is still running. You can either wait longer or terminate the script with Toolbox_Set(“scriptTerminate”; scriptId ). |
| “finished” | The script is finished. This could also mean it failed due to internal error (check if “error” is a non-empty string). |
| “timed-out” | The script was killed because it was running for too long, exceeding
the time specified by the timeout parameter when the script
process was created. |
| “terminated” | The script was terminated using the Plug-In function Toolbox_Set(“scriptTerminate”; scriptId ). |
Toolbox_Get( "lastError" )Returns the last function error code, or 0 if the last function was performed properly.
Suppose 18037 is a script Id which was returned by
Toolbox_DoSystemScript(
"echo foo; make sandwich; echo bar" ;
"bash" ;
"dontWait"
)Then calling
Toolbox_Get("scriptInfo" ; 18037)
will return an output such as:
{
"error": "make: *** No rule to make target `sandwich'. Stop.\n",
"output": "foo\nbar\n",
"status": "finished"
}To parse this JSON, you can use the native FileMaker function
JSONGetElement. For example:
Let ( [
info = Toolbox_Get("scriptInfo" ; 18037)
];
"STATUS¶======¶" & JSONGetElement(info ; "status") & "¶¶" &
"OUTPUT¶======¶" & JSONGetElement(info ; "output") & "¶¶" &
"ERROR¶======¶" & JSONGetElement(info ; "error")
)returns:
STATUS
======
finished
OUTPUT
======
foo
bar
ERROR
======
make: *** No rule to make target `sandwich'. Stop.This function sets Toolbox Plug-In internal parameters.
| selector | What parameter to set. |
| selector | Description |
|---|---|
| “globalDieInterval” | Global variable can be set to be automatically erased when their parent database file is closed. The Plug-In uses polling mechanism to determine if the file has been closed (evaluating function DatabaseNames). This interval specifies how often is should check the file is closed. The default value is 60 seconds and you can specify even fraction of seconds to be perfectly accurate. However try to keep it as long as possible (ones of seconds at least). The polling requires system resources and calling this often will slow down the FileMaker Pro application. |
| “inlineDocumentation” | Allows to turn off or on inlineDocumentation. Possible values are “on” or “off”. This selector doesn’t work on FileMaker Server. |
| “scriptTerminate” | Terminates a running script. Here, the second parameter specifies the Id of a script to be terminated. |
| “scriptClear” | Clears the temporary files generated by a script, freeing up the
memory. The second parameter specifies the Id of a script to be deleted.
Once deleted, the script output is lost forever and cannot be recovered. |
Generic function to get various Plug-In parameters.
The function returns state of required parameter. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain error code.
Toolbox_Set( "globalDieInterval" ; 9.5 )Sets parameter “globalDieInterval” to 9.5 seconds.
Stores global value which can be read on any database.
| key | Unique key to the dictionary of values. This key should be unique across all opened databases. |
| value | FileMaker field or variable. Field / variable type is also stored. |
| moreOptions | Options to specify some special behavior for previous key-value combination. |
| value | description |
|---|---|
| “dieOnClose” | The current key-value combination will be erased when you close the current database. |
Use this function to store global value which can be obtained by Toolbox_GetGlobal( key ) in any opened database. If “dieOnClose” is not specified the key-value combination will live until the FileMaker application is closed. Specifying the “dieOnClose” parameter will cause the Plug-In will periodically check if the database file is opened (the Plug-In will use Get( FileName ) and DatabaseNames functions from FileMaker calculation engine) and erase key-value combination if the database has been closed. The Plug-In is not able to distinguish between two different databases with the same name.
To manually delete value stored under a key call Toolbox_SetGlobal( key ; “” ). To manually delete all global values call Toolbox_SetGlobal( “” ; “” ).
The function returns the actual value which has been set under the key. In the case of error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain the error code.
Toolbox_SetGlobal( "g_UserContext" ; "user-defined-context-1" )This will set value “user-defined-context-1” under the key “g_UserContext”. It can be read by calling Toolbox_GetGlobal( “g_UserContext” ) in any opened solution.
Toolbox_SetGlobal( "g_UserContext" ; "user-defined-context-1" ; "dieOnClose" )This will set value “user-defined-context-1” under the key “g_UserContext”. It can be read by calling Toolbox_GetGlobal( “g_UserContext” ) in any opened solution. If the database file, where Toolbox_SetGlobal has been called, is closed, the value “user-defined-context-1” will be reset to ““. There is the maximum time interval between file closing and value erasing. This interval can be set by Toolbox_Set(”globalDieInterval” ; newInterval ) and by default it is set to 60 seconds.
Toolbox_SetGlobal( "g_Picture" ; PictureField )The Plug-In will store content of PictureField into the global dictionary under the key “g_Picture”. This container can be loaded any time from any opened solution until the FileMaker application is closed or value reset.
Loads global value previously stored by Toolbox_SetGlobal.
| key | Unique key to the dictionary of values. This key should be unique across all opened databases. |
Use this function to load global value previously stored by Toolbox_SetGlobal.
The function returns the actual value for key. If the key has not been specified the function returns ““. In the case of error, the function returns”?“. Use Toolbox_Get(”lastError” ) to obtain the error code.
Toolbox_GetGlobal( "g_UserContext" )The function returns actual value of global key “g_UserContext”.
Basic function for time measurement.
This function uses most precise functions of the operating system to
obtain current (local) time. It creates a FileMaker timestamp which
contains fractions of seconds so it can be used to measure time with
more accuracy than one second. The function is also very fast: its
execution time is approx. 30 µs long. **Note: Unlike all other Plug-In
functions, Toolbox_GetTimestamp does not set
lastError and lastErrorMessage (which can be
obtained with Toolbox_Get). This
is due to performance reasons.
FileMaker Timestamp with current (local) time.
Toolbox_GetTimestampReturns accurate timestamp in the following format:
14.10.2025 11:41:16,971122.
This function encodes text using a method specified by
encoding.
Note: Toolbox_Encode is not supported on Linux version.
| encoding | The encoding of the input text and the encoding of the result. |
| text | The input text to be encoded. |
| encoding | Description |
|---|---|
| “UTF-8 to Base64” | The encoding of the input text is assumed to be UTF-8 and the encoding of the result will be Base64. |
This function encodes given input text to specified encoding. For decoding see Toolbox_Decode.
The function returns encoded input text. In the case of an error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain the error code. Also note, that empty input text may not be well-defined for various encodings.
Toolbox_Encode("UTF-8 to Base64" ; "Text to be encoded.")Returns “VGV4dCB0byBiZSBlbmNvZGVkLg==”.
Toolbox_Encode("UTF-8 to Base64" ; "")Returns ““.
This function decodes text.
Note: Toolbox_Decode is not supported on Linux version.
| encoding | The encoding of the input text and the encoding of the result. |
| text | The input text to be decoded. |
| encoding | Description |
|---|---|
| “Base64 to UTF-8” | The encoding of the input text is assumed to be Base64 and the encoding of the result will be UTF-8. |
This function decodes given input text to specified encoding. For encoding see Toolbox_Encode.
The function returns decoded input text. In the case of an error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain the error code. Also note, that empty input text may not be well-defined for various encodings.
Toolbox_Decode("Base64 to UTF-8" ; "QmFzZTY0IGVuY29kZWQgdGV4dC4=")Returns "Base64 encoded text.".
This function converts rich-text to HTML with CSS. Converting works
in 4 stages: * First, the HTML tags are determined based on
tags parameter, * than the remaining unused formatting is
converted to CSS classes as defined in classes parameter, *
than the remaining unused formatting is converted to inline CSS styles
based on styles parameter, * other unused formatting is not
used for output styling.
Default values produce HTML tags compliant with HTML5 standard and CSS styles that are supported at least by Chrome, Firefox and Safari web browsers.
Two special characters < and > from input text are automatically replaced with HTML entities < and >
Text encoding remains unchanged.
Several special characters from input text are automatically replaced by HTML entities or HTML tags as described in the following table.
| Input | Replacement |
|---|---|
| < | < |
| > | > |
| & | & |
| non-breaking space - Char(160) | |
| line break - Char(8232) | <br/> |
| Parameter | Description | Delimiter character | Value for converting all supported | Value for no converting | Default value | Example |
|---|---|---|---|---|---|---|
| variableName | Name of variable (that contains formatted text) given as string.
Formatted text inserted directly will not support alignment of paragraphs. More about input formats. This is the only required parameter. |
n/a | n/a | n/a | n/a | Hello world2 |
| tags | List of all text formatting
that should be converted to HTML tags. For default value, these HTML tags will be used in this order: <p>,
<b>, <i>, <u>,
<s>, <mark>,
<sup>, <sub>. |
¶ | “all” | “” | “all” | “bold+underline=h1 underline=u bold=strong” |
| classes | List of all text formatting that should be converted to custom-named CSS classes. | ¶ | “all=somePrefix” | “” | “all=tbx” | “bold+italic=myImportantComments bold=myBoldClass italic=myCommentClass” |
| styles | List of all text formatting that should be converted into inline CSS styles. | ¶ | “all” | “” | “all” | “condense uppercase lowercase” |
| Basic | Lining* | Spacing | Letters | Paragraph alignment** | With value*** |
|---|---|---|---|---|---|
| bold | underline | condense | smallcaps | left | color |
| italic | wordunderline | extend | uppercase | center | font |
| highlight | doubleunderline | superscript | lowercase | right | size |
| strikethrough | subscript | titlecase | full |
Unsupported text formatting: line spacing, vertical alignment (top, center, bottom).
** Paragraph alignment can’t be combined with other text formatting in tags, classes or style parameters (using the + delimiter).
*** Color, font and size cannot be further parametrized, please see examples below on how to use them.
Toolbox_GetAsHTML("$myTextVariable")Toolbox_GetAsHTML(Let($ToolboxInput=solution::textField;"$ToolboxInput"))Toolbox_GetAsHTML("Hello world2")
The function returns decoded input text. In the case of an error, the function returns “?”. Use Toolbox_Get( “lastError” ) to obtain the error code.
Toolbox_GetAsHTML("$ToolboxInput")All transformations are enabled and as much as possible text formatting is preserved.
If variable $ToolboxInput contains “Bold and underlined text” than the result will be:
<p><b>Bold</b> and <u>underlined</u> text</p>That should look in web browser similarly to this:
Bold and underlined text
Toolbox_GetAsHTML("Hello world2" ; "all" ; "" ; "all")
All transformations are enabled except creating CSS classes. The result will be:
<span style="color:#ff2712;">Hello</span><b> world</b><b><sup>2</sup></b>That should look in web browser similarly to this:
Hello world2
Toolbox_GetAsHTML("Bold and underlined text" ; "all" ; "" ; "all")
Only the <strong> tag will be created (2nd parameter) and there will be only one class for underlined text (3rd parameter), all other text formatting is discarded because of forbidden inline styling in the last parameter. The result will be:
<style type="text/css">
.myClass { text-decoration:underline; }
</style>
<strong>Bold</strong> and <span class="myClass">underlined</span> textThat should look in web browser similarly to this:
.myClass { text-decoration:underline; }Bold and underlined text
Toolbox_GetAsHTML("Green italic and important text." ; "" ; "underline+bold=myImportantClass" ; "color")
No tag will be created (2nd parameter) and there will be only one class for both underlined and bold text (3rd parameter), color will be the only inlined css style, other formatting is discarded. The result will be:
<style type="text/css">
.myImportantClass { font-weight:bold;text-decoration:underline; }
</style>
<span style="color:#66b132;">Green italic</span> and <span class="myImportantClass">important</span> text.That should look in web browser similarly to this:
.myImportantClass { font-weight:bold;text-decoration:underline; }Green italic and important text.
Toolbox_GetAsHTML("Green italic and underlined text." ; "bold=i" ; "" ; "")
Italic HTML tag will be used for bold text and all other formatting is discarded. HTML tags are not styled to match the original appearance. The result will be:
Green italic and <i>important</i> textThat should look in web browser similarly to this:
Green italic and important text
Toolbox_GetAsHTML("Colors: red + blue = purple" ; "" ; "color=myColorClass" ; "")Toolbox_GetAsHTML("Colors: red + blue = purple" ; "bold=i" ; "" ; "")
Color, font and size text formatting is simplified so that it does not require any parameter. When some text formatting is used in tags parameter, the actual value of the style is discarded. You can preserve the value by using the classes or the styles parameter. Result of this example will be:
Colors: <u>red</u> + <u>blue</u> = <u>purple</u>That should look in web browser similarly to this:
Colors: red + blue = purple
Toolbox_GetAsHTML("Colors: red + blue = purple" ; "bold=i" ; "" ; "")
In this case, color will be styled using classes with given prefix. The result will be:
<style type="text/css">
.myColorClass { color: #ff0000; }
.myColorClass1 { color: #0000ff; }
.myColorClass2 { color: #800080; }
</style>
Colors: <span class="myColorClass">red</span> + <span class="myColorClass1">blue</span> = <span class="myColorClass2">purple</span>That should look in web browser similarly to this:
Colors: red + blue = purple
Toolbox_GetAsHTML("Colors: red + blue = purple" ; "" ; "" ; "all")
In this case, color will be styled using inline styles. The result will be:
Colors: <span style="color:#ff0000;">red</span> + <span style="color:#0000ff;">blue</span> = <span style="color:#800080;">purple</span>
That should look in web browser similarly to this:
Colors: red + blue = purple
Toolbox_GetAsHTML( "$ToolboxInput" ; "center=center" ; "right=myRightAlignClass")
Default HTML tag for paragraph is <p> and this one will be used for the first (left aligned) paragraph here.
Centered text is forced to use deprecated <center> tag and CSS class myRightAlignClass will be used for all right aligned text.
Inline css styles will be used for all other supported styling because of missing 4th parameter that defaults to “all”.
Assuming variable $ToolboxInput is containing this text:
First line with some formatted text.
Final line aligned to right.
Then the result will be:
<style type="text/css">
.myRightAlignClass { text-align:right; }
</style>
<p>First line with some <span style="font-weight:bold">formatted</span> text.</p>
<center>Centered line.</center>
<p class="myRightAlignClass">Final line aligned to right.</p>First line with some formatted text.
Final line aligned to right.
.myRightAlignClass { text-align:right; }
First line with some formatted text.
Centered line. Final line aligned to right.
Base64Decode (
Toolbox_Encode (
"UTF-8 to Base64" ;
"<!DOCTYPE html><html><head><meta charset=\"UTF-8\"><title>Hello world</title></head><body>" & Toolbox_GetAsHTML ( $myStyledText ) & "</body></html>"
) ;
"helloworld.html"
)This example produces complete HTML page from variable
$myStyledText and returns it as a container. You should see
a file named “helloworld.html” by setting the result of this example
into a container field.
You can save the file on a disk by selecting “Export Field Contents…” from field’s context menu, or you can set the container to be saved on a disk by making the field external in field’s storage options.
Here is the list of all error codes which can be returned from the
Plug-In. Whenever a function returns “?”, it signals an error. Use
Toolbox_Get( "lastError" ) to obtain the error code and
Toolbox_Get( "lastErrorMessage" ) to obtain additional
error description.
| Code | Description | Details |
|---|---|---|
| 0 | No error | All requested actions were successful. |
| -4 | Not implemented | The function is not implemented on this platform. |
| -10 | Still running | The result of a process (e.g. a system script) is not yet ready. (It makes sense to wait and retry.) |
| -50 | Parameter error | Wrong number, type, value or order of parameter(s). Please check parameters against the documentation again. |
| -80 | Timeout error | A script was running for too long and has been terminated. |
| 2400 | Unknown error | Unexpected (probably system related) error occurred. |
| 24001 | Demo mode expired | If you want to keep using the Plug-In, you must register it or buy it for particular environment. |
| 24002 | Product expired | Trial period is over. If you want to keep using the product, you must buy it for particular environment. |
| 24003 | SN limit was met | The serial number is already registered on too many computers. |
| 24004 | Product is dead | The product expired and cannot be used any more. Please download the new version from 24U Software. |
| 24005 | Invalid serial number | Serial number you entered is not valid. |
| 24006 | Activation failed | Activation failed probably due to some network error. Please, check your connection to the internet and try again later. |
| 24007 | Deactivation failed | Deactivation failed probably due to some network error. Please, check your connection to the internet and try again later. |
| 24008 | Unknown serial number | The given serial number cannot be used for the current product. It has been stored so that other product can try to use it. |
| 24009 | Blacklisted serial number | The given serial number has been blacklisted and cannot be used anymore. Please, contact 24U Support if you need more information. |
| 24010 | eSellerate engine not installed | This product uses eSellerate to validate user registration and purchases, but its installation failed. Please, reboot the computer or try again later. |