0
Participant
,
/t5/illustrator-discussions/selection-index-to-pageitem-index/td-p/13792611
May 15, 2023
May 15, 2023
Copy link to clipboard
Copied
Hi,
Is it possible to convert a selection index to a pageItem index?
For instance, if my selection is sel[0] what corresponding pageItem[?] is that selection?
Javascript has a getIndex function but it doesn't work in ExtendScript it seems.
Thanks!
TOPICS
Scripting
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
1 Correct answer
Guide
,
May 15, 2023
May 15, 2023
I think you have to iterate all the top level pageItems and check each pageItems[i] as to whether it references the same selected object.
Explore related tutorials & articles
Guide
,
/t5/illustrator-discussions/selection-index-to-pageitem-index/m-p/13792660#M367081
May 15, 2023
May 15, 2023
Copy link to clipboard
Copied
I think you have to iterate all the top level pageItems and check each pageItems[i] as to whether it references the same selected object.
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
iLLMonkey
AUTHOR
Participant
,
LATEST
/t5/illustrator-discussions/selection-index-to-pageitem-index/m-p/13793127#M367090
May 15, 2023
May 15, 2023
Copy link to clipboard
Copied
Hi,
Yes that did work thank you. I've created a simple function for this if anyone is interrested:
function findIndexInSelection(pageItems, selectionIndex){
var doc = app.activeDocument;
var sel = doc.selection;
for (i=0;i<pageItems.length;i++){
if (pageItems[i] == sel[selectionIndex])
return i;
}
}
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

