src/jdk.jpackager/macosx/classes/jdk/jpackager/internal/resources/mac/DMGsetup.scpt
branchJDK-8200758-branch
changeset 57038 b0f09e7c4680
parent 57032 a42d0a8e0916
child 57039 98d3963b0b7b
equal deleted inserted replaced
57032:a42d0a8e0916 57038:b0f09e7c4680
     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