1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| set F1 to "Users:ton_user:Desktop:test1"
tell application "Finder"
set W1 to make new Finder window
set target of W1 to (F1 as alias)
set current view of W1 to column view
set toolbar visible of W1 to false
set bounds of W1 to {150, 450, 600, 1000} -- bord gauche, bord haut, largeur, bord bas
end tell
set F2 to "Users:ton_user:Desktop:test2"
tell application "Finder"
set W2 to make new Finder window
set target of W2 to (F2 as alias)
set current view of W2 to column view
set toolbar visible of W2 to false
set bounds of W2 to {600, 450, 1050, 1000} -- bord gauche, bord haut, bord droit, bord bas
end tell |
Partager