Welcome to mirror list, hosted at ThFree Co, Russian Federation.

blender.applescript « darwin « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 130dc2eb64cd20338cab4d395b27cc9429985ad2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
tell application "Finder"
          tell disk "Blender"
               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 {100, 100, 640, 472}
               set theViewOptions to icon view options of container window
               set arrangement of theViewOptions to not arranged
               set icon size of theViewOptions to 128
               set background picture of theViewOptions to file ".background:background.tif"
               set position of item " " of container window to {400, 190}
               set position of item "blender.app" of container window to {135, 190}
               update without registering applications
               delay 5
               close
     end tell
end tell