Skip to main content

Save Input

Octory PRO
Element type: Dictionary

Save user inputs into the specified file. For a list of all possible input types, check the Input components.

Keys

NameTypePossible valuesRequired
TypeStringSaveInputsRequired
ConditionDictionary (Condition)-

Detail

Type Required

Type: String
Explanation: The type of the component has to be SaveInputs.

Condition

Type: Dictionary (Condition)
Explanation: Allows launch the action only based on a boolean expression.

Example

Save user inputs when the Next button is clicked.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<!-- ... -->
<key>ActionSets</key>
<array>
<dict>
<key>Type</key>
<string>Parallel</string>
<key>Triggers</key>
<array>
<string>NextButtonClick</string>
</array>
<key>Actions</key>
<array>
<dict>
<key>Type</key>
<string>SaveInputs</string>
</dict>
</array>
</dict>
</array>
<!-- ... -->
</dict>
</plist>