src/jdk.packager/macosx/classes/jdk/packager/internal/resources/mac/DMGsetup.scpt
branchJDK-8200758-branch
changeset 57017 1b08af362a30
parent 57016 f63f13da91c0
child 57018 9d782e357916
equal deleted inserted replaced
57016:f63f13da91c0 57017:1b08af362a30
     1 tell application "Finder"
       
     2   tell disk "DEPLOY_ACTUAL_VOLUME_NAME"
       
     3     open
       
     4     set current view of container window to icon view
       
     5     set toolbar visible of container window to false
       
     6     set statusbar visible of container window to false
       
     7 
       
     8     set the bounds of container window to {400, 100, 917, 370}
       
     9 
       
    10     set theViewOptions to the icon view options of container window
       
    11     set arrangement of theViewOptions to not arranged
       
    12     set icon size of theViewOptions to 128
       
    13   end tell
       
    14 end tell
       
    15