blender.applescript 912 B

12345678910111213141516171819
  1. tell application "Finder"
  2. tell disk "Blender"
  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. set the bounds of container window to {100, 100, 640, 472}
  8. set theViewOptions to icon view options of container window
  9. set arrangement of theViewOptions to not arranged
  10. set icon size of theViewOptions to 128
  11. set background picture of theViewOptions to file ".background:background.tif"
  12. set position of item " " of container window to {400, 190}
  13. set position of item "blender.app" of container window to {135, 190}
  14. update without registering applications
  15. delay 5
  16. close
  17. end tell
  18. end tell