Wow. This is exactly what I was hoping to achieve. I linked up all my adjustments layers and created a new ‘checkbox’ so now users of the MoGrT can choose to have their lwr 3rd on the left, or right side of the screen. Works great!
One thing i noticed:
When I put it through testing (random ‘Line 1’ 1st letters and overall lengths combined with random ‘Line 2’ 1st letters and overall lengths), ‘Line 1’ and ‘Line 2’ get out of sync with certain 1st characters and overall lengths.
To pseudo rectify this, i tweaked the first expression to include “+5” in the lower line expression:
…
x = Math.min( l1, l2 ) + rect1.width +5 ;
This seems to be a good fix for most instances, but there are still some combinations where an OCD person like me, with guides up…staring 2 inches from the screen, will notice that the lines aren’t perfectly in alignment.
Is that just based off of character type/size throwing off the expression and there isn’t much else to do about it? Any ideas?
Thanks again.