I think this may have been asked before... I want to be able to label widgets dynamically from my Signal Flow scripts, as SSC does in the Index parameter of MultiSample etc.
For example, some code in an encapsulated class could extract marker names or filenames and label a widget accordingly
| names samplesFile |
samplesFile := 'tejadarom-monomarked.aif' asSamplesFile.
names :=
1 to: 14 collect: [ :i |
samplesFile markers keyAtValue: (samplesFile markers asSortedCollection at: i)
].
names
I wondered if this algorithmic naming is still not possible?