Copy link to clipboard
Copied
Hi,
i need to select particular range from the selection.
app.select(myElement.texts);
form this, i need select as b/m:
for applying hypherlink
myDocument.hyperlinkTextSources.add(app.selection[0], {name:Math.random().toString()});
--
Thanks
Bala
Guess your searching for item by range
app.selection[0].texts[0].characters.itemByRange(2,-2).select();//should select 'the new text' ...
Copy link to clipboard
Copied
Guess your searching for item by range
app.selection[0].texts[0].characters.itemByRange(2,-2).select();//should select 'the new text' ...
Copy link to clipboard
Copied
Thanks hans....