Performs an operation on a chunk, such as modifying, deleting, or clearing items.
Name of the chunk.
In chunk modules, the chunk name is case sensitive. This means that MYCHUNK is not equivalent to mychunk or MyChunk.
Names of the items to retrieve or on which the operation is performed, expressed as a comma-text.
In chunk modules, the item names are case sensitive. This means that item1 is not equivalent to Item1 or ITEM1.
To avoid mismatch between names and RegEx ^, ., $, *, +, ?, (, ), [, ], {, }, \, | are not allowed in the names.
can be a RegEx (Regular Expression)
see regular expression.
^a.* match any string starting by "a" (?i)^a match any string starting by "a" or "A" (case insensitive).*a$ match any string ending by "a".*\d$ match any string ending by a number "1","2","3", etc..at matches any three-character string ending with "at", including "hat", "cat", "bat", "4at", "#at" and " at" (starting with a space).[hc]at matches "hat" and "cat".[^b]at matches all strings matched by .at except "bat".[^hc]at matches all strings matched by .at other than "hat" and "cat".^[hc]at matches "hat" and "cat", but only at the beginning of the string or line.[hc]at$ matches "hat" and "cat", but only at the end of the string or line.\[.\] matches any single character surrounded by "[" and "]" since the brackets are escaped, for example: "[a]", "[b]", "[7]", "[@]", "[]]", and "[ ]" (bracket space bracket).s.* matches s followed by zero or more characters, for example: "s", "saw", "seed", "s3w96.7", and "s6#h%(>>>m n mQ".[hc]?at matches "at", "hat", and "cat".[hc]*at matches "at", "hat", "cat", "hhat", "chat", "hcat", "cchchat", and so on.[hc]+at matches "hat", "cat", "hhat", "chat", "hcat", "cchchat", and so on, but not "at".cat|dog matches "cat" or "dog".\\ to search the \ char (backslash)Type of operation to perform on the chunk:
0 or the string to NULL.Executes the selected operation immediately.
If the operation is set to auto add or modify item, the operation is performed automatically.
Determines the type of the payload: float, integer, string, or color.
Index of the payload array on which the operation is performed. Set to -1 for the entire content of the payload.
For floats, integers, and colors, it is the nth element of the array. For strings, it is the nth element of the comma-text.
In chunk modules, the item names are case sensitive. This means that item1 is not equivalent to Item1 or ITEM1.
To avoid mismatch between names and RegEx ^, ., $, *, +, ?, (, ), [, ], {, }, \, | are not allowed in the names.
The content of the chunk item to modify or add.
Displays various errors that may occur during chunk operations.
Type mismatch between payload and stored item If an item already exists as a float and you overwrite it with a different type (e.g., string), the item's type changes silently. Any other module reading that item with the original type assumption will get unexpected values. Keep the type consistent across all modules that read and write the same item.
"Auto add or modify" triggers on every payload change In auto add or modify item mode, the chunk is written every time the payload input changes — including during patch initialization or preset loading. This can cause unintended writes. Use add or modify item with an explicit perform trigger if you need precise control over when writes happen.
"Clear chunk" and "destroy chunk" are global operations Clear chunk deletes all items but the chunk still exists. Destroy chunk removes the chunk entirely. Both operations affect every module in Usine that references this chunk. Use with caution in complex setups.
"Delete item" vs "clear item" Clear item resets the item's content (array size to 0 or string to NULL) but the item still exists in the chunk. Delete item removes the item entirely — any chunk-item-get reading it will report it as invalid. Choose based on whether you want to preserve the item's existence or remove it.
Opens the web browser to display information or help about the selected object, if it exists.
For more details about information/help creation, see create-help-file.
Description of the module for internal help purposes only. The description is not displayed in the interface.
visible only in god mode, see setup-panel-tab-expert.
Current private ID for this control used to identify the object.
Current private preset ID for this control used for presets.
If you experience difficulties in Polyphonic mode, try to recreate new id(s) with this button.
Each Patch shared on the local network uses its own ID (identification number). If you experience issues of Patches that don't send information to the good target, this button will rebuild all these id's.
Absolute remote address. see objects-address.
Local to the current patch remote address. see objects-address.
User defined remote address. see objects-address.
version 7.0.250121
Edit All Pages