Push/Pull Objects Around Null
Hello all,
I'm trying to create a target reticule effect where four separate objects converge on a central point. To do this, I've parented them to a null object and set up a script to work off the null's scale property.

The script I use is:
pSc = parent.scale;
x = value[1]*100/pSc[1];
y = value[0]*100/pSc[0];
[x,y];
I also use a separate script to maintain the child layers' scale, but that doesn't seem relevant to my struggle.
The problem occures when I change the parent scale and the entire array moves in a uniform direction. Instead of converging on the center, I wind up displacing the array.

As far as I can tell, the object in the upper left is moving as I wish. It's the other three that need some kind of inversion, but I'm not sure how to modify the script to accomplish this.
Any suggestions?
