Hi guys,
I tried to copy the labels node from a Token into a FlowItem to easily copy all labels at once:
treenode TokenLabels = Token.labels; treenode ItemLabels = item.labels; createcopy(TokenLabels, ItemLabels, 1,0,0,1);
with Token being a reference to a token and item being a reference to a FlowItem. Unfortunately this does not work. It works perfectly when copying from one FlowItem to another, but not, if the origin node is on a Token. This part of the user manual suggests, that the labels node on a Token works the same as in treenodes:
Token.labels
readonly labels
Description
Accesses a node's labels as nodes.
Works just like labels on treenodes.
So I would expect the createcopy() command to work. What am I doing wrong?
Thanks
Ralf