Question
ISODRAW7.3 MACRO GET POSITION OF TEXT
Hi, using ISODROW7.3
i need to get in messagebox the position X,Y of text.
I tried this but it 's not running, please can you help me
DEFINE el AS Element
Select IF Type is equal to "Text"
el = activeDoc.firstSelectedElement
WHILE (Exists (el) = true )
define a as string
define b as string
a = el.position.x.string
b= el.position.y.string
message a + b

