08.08.14, 15:24
Hi there
Is it possible to access the x and y values for items in a getItems array? I’d like to do something like:
var found = document.getItems({selected: true});
for(i = 0; i < found.length; i++){
var myX = found[i].x;
var myY = found[i].Y;
…
}
I’d appreciate any insights.