Hi Revnart,
the way you showed above is ok when I apply the 2 images together in a single process (manually). when I do action I have some problem to replicate "place" command as the action register "place a determined image" ( when I have a folder full of file, the command "place" pick always the same image in the folder rather than picking up the following file).
I had a look at the script you've done "Folder Magic", I saw that :
desc3.putUnitDouble( idHrzn, idPxl, 0.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc3.putUnitDouble( idVrtc, idPxl, 0.000000 );
as I said I have no knowledge about java script but with some logic I changed the values and I got the result I was looking for.
desc3.putUnitDouble( idHrzn, idPxl, -3.000000 );
var idVrtc = charIDToTypeID( "Vrtc" );
var idPxl = charIDToTypeID( "#Pxl" );
desc3.putUnitDouble( idVrtc, idPxl, -3.000000 );
what I've done is partially fine cause is not an absolute solution (sometimes the command place the image 3 pixel away along the two axix x and y, sometimes 4 pixel along the y asix and 0 pixel along the x... is a bit annoying)
if you can... would be nice to have a script that I can apply to any action and another one inserted in the previous script "Folder Magic" you've done... if is douable
[ATTACH=full]92693[/ATTACH]