Question
Order of Property Selection in After Effects 2024 24.2
Are the properties within the same layer not arrayed in the order they are manually selected? For instance, I selected position, scale, and rotation in a text layer. However, after executing this script in After Effects 20204 24.2,
------------
var comp = app.project.activeItem;
var selectedProps = comp.selectedProperties;
alert(selectedProps[0].name);
------------
the [0] part is scale instead of position.
This is also the happen when box selecting .

