Do you want to copy all elements in the list. So, for example, if your list is:
- Element 1
- Element 2
- Element 3
Then you expect your clipboard to contain "Element 1 Element 2 Element 3"?
If this is the case, then do this:
List: On clicked
>> Local string textToCopy = ""
>> System: Repeat List.ItemCount times:
>> System: Add List.ItemTextAt(LoopIndex)&newline to textToCopy
then, at the end of the loop, copy the whole text:
Clipboard: Copy text textToCopy