Hi,
I want to move the group of highlighted text. The destination location by user picking i don't know how to move by group please anyone help me out from this.
Tried by below method but it works only single text but i want in group of heighted texts
event = axlEnterEvent(list('PICK), nil, t)
event ->xySnap
This three highlighted text simultaneously move together and want to place in user clicks location.
my code:
procedure(chk()
alist = '("A1" "A2" "A3")
axlClearSelSet()
axlSetFindFilter(?enabled '("NOALL", "TEXT"), ?onButtons "TEXT")
txtinp = axlGetSelSet(axlAddSelectAll())
axlClearSelSet()
foreach(txtinp_loop txtinp
txtinp_val = txtinp_loop->text
foreach(HighList_loop alist
if(HighList_loop == txtinp_val then
axlHighlightObject(txtinp_loop)
)
)
)
)