El principal Problema es que Apple Editor de secuencias de Comandos no conozco a ninguno de los Nombres de "App" ni "App 2" de modo que si se ejecuta la secuencia de comandos se le pide que seleccione donde la Aplicación se almacenan y, a continuación, reemplaza "App" con el Nombre Real de la Aplicación. Esto también ocurre para "App 2".
Así que si usted dos veces, seleccione la misma Aplicación (que es lo que estamos tratando de hacer, de acuerdo a sus menciones) es dos veces quitar los Nombres de "Aplicación" y "App 2" con el mismo Nombre de la Aplicación Real.
O si el uso de la Aplicación como una Abreviación para el Nombre Real de la Aplicación, se sabe que la Aplicación en la Primera Declaración, pero no en el Segundo, así que Pregunte solo una vez y basta con sustituir el "anexo 2".
Para hacer lo que quieres te recomiendo cambiar la secuencia de Comandos para algo como esto y tratar de hacerlo de esa manera (no probado):
tell application "<Name of Application>" to activate --open first Window
tell application "<Name of Application>" to activate --open second Window
tell application "System Events" to tell application process "<Name of Application>"
set position of window 1 to {8, 22}
set position of window 2 to {914, 22}
end tell
si esto no funciona, tal vez usted puede adoptar esta secuencia de Comandos que se mueve dos abrir el Buscador de Windows al Lado del otro.
property monitor_width : 980
property monitor_height : 768
set the startup_disk to (path to startup disk)
tell application "Finder" activate
set visible of (every process whose visible is true and frontmost is false) to false
-- BOTTOM WINDOW
set this_window to make new Finder window
set the target of this_window to the startup_disk
set the bounds of this_window to {0, (monitor_height * 0.55) div 1, monitor_width, monitor_height}
set the current view of this_window to column view
-- TOP WINDOW
set this_window to make new Finder window
set the target of this_window to the startup_disk
set the bounds of this_window to {0, (monitor_height * 0.06) div 1, monitor_width, (monitor_height * 0.53) div 1}
set the current view of this_window to column view
end tell
Fuente: http://hints.macworld.com/article.php?story=20011127022706921