Hi Ken, here is a script that you can put in the "command" field of a shortcut key (Options > Shortcut keys) that will place the center of all background images at 0,0,0 .
script: /* Center background images */ var images = moi.view.getBackgroundImages(); for ( var i = 0; i < images.length; ++i ) { var img = images.item(i); var frame = img.frame; frame.origin.set(0,0,0); frame.origin = frame.evaluate(-img.width/2, -img.height/2); img.frame = frame; }
- Michael
|