1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
tell application "Finder"
tell disk "SoundScape Renderer @PACKAGE_VERSION@"
open
set current view of container window to icon view
set toolbar visible of container window to false
set statusbar visible of container window to false
set the bounds of container window to {400, 100, 820, 500}
set theViewOptions to the icon view options of container window
set arrangement of theViewOptions to not arranged
set label position of theViewOptions to right
set icon size of theViewOptions to 60
set background picture of theViewOptions to file ".background:background.png"
set position of item "Jack.webloc" of container window to {285, 60}
set position of item "SoundScapeRenderer-@PACKAGE_VERSION@" of container window to {115, 135}
set position of item "Applications" of container window to {115, 230}
set position of item "Getting-Started.txt" of container window to {215, 320}
end tell
end tell
|