I need to be able to find the parant x y postion of a clone so I can draw a line from the clone to the parent.
I see reference to the getclone function but the docs are not clear to me of how to use it for various purposes.
I thought it might be used something like this:
lineto(getclone(myclonename)->Parent->xscreen, getclone(myclonename)->Parent->yscreen);
Anyway the above code does NOT work for drawing to parent but
moveto(getclone(myclonename)->xscreen, getclone(myclonename)->yscreen);
will move to my clone..
How can I get the position of a clones parent??