This almost gets me there, but I’m trying to simply get the number for the current shape group and I’m a bit confused.
When I pickwhip the relevant properties, it shows up as:
content(“Group 1”).transform.position
content(“Group 2”).transform.position
etc.
I just want to use a single expression that can be applied to all the groups, which therefore needs to reference the current group number.
I’ve tried copying in the expression from the solution above like so:
content(“Group” + (parseInt(thisProperty.propertyGroup(3).name.split(” “)[1],10))).transform.position
But I get a “syntax error”. Can you tell me what I’m doing wrong? Thanks!