- Edit parameter interface: How to populate a Detail array from a parameter field? Let me explain, I have a list of known numbers (1.1, 1.3, 2.0, etc.), ideally I'd be able to type them in a parameter field of my “Main Controls” node that drives those numbers into a detail attribute. At the present time I'm only able to write them directly in a wrangle node using , but my goal is to create a digital asset where the user can write down different series of numbers and have the array populated. In the “edit parameter interface” I cannot find any “array” type.
f[]@myarray = {1.1,1.3,etc};
- Wrangle node: I'm struggling with the creation of custom parameters inside the wrangle. For example, if I type and press the “create spare parm” button, the wrangle node is able to create the parm, but the node breaks and return “ambiguous call to function ch()….”, while typing
ch("parm");
works fine.f@parm= ch('parm');
Same behavior if I typeto create a ramp, the node just breaks but it's able to create the ramp; on the contrary typingchramp("parm")
work just fine for a parameter string creation.chs("parm");
- Bonus question,Object Merge Node: I need to use a detail function inside the Object field (obipath1 parm) in order to retrieve a string detail attribute from a wrangle node. My aim is to dynamically create the path in the wrangle node (I'm able to do this) and feed the string into the Object Merge node (I'm having problem with this last step). Typing doesn't work. I get an “invalid Sop specified” error.
`detail("../myWrangle/", "myAttribute", 0)`
Thanks for any help guys!
Andr

