@@ -21,6 +21,9 @@ tell application "Finder"
21
21
22
22
set allTheFiles to the name of every item of theWindow
23
23
set xpos to 120
24
+ set ypos to 290
25
+ set i to 1
26
+ set j to 0
24
27
repeat with theFile in allTheFiles
25
28
set theFilePath to POSIX path of theFile
26
29
set appFilePath to POSIX path of " /DEPLOY_TARGET"
@@ -31,12 +34,34 @@ tell application "Finder"
31
34
-- Position application or runtime
32
35
set position of item theFile of theWindow to {120 , 130 }
33
36
else
34
- -- Position all other items in a second row.
35
- set position of item theFile of theWindow to {xpos, 290 }
36
- set xpos to xpos + 150
37
+ -- Position all other items in rows by 3 item
38
+ set position of item theFile of theWindow to {xpos, ypos}
39
+ set xpos to xpos + 135
40
+ if (i mod 3 ) is equal to 0
41
+ set i to 1
42
+ set ypos to ypos + 150
43
+ set xpos to 120
44
+ else
45
+ set i to i + 1
46
+ end if
47
+ set j to j + 1
37
48
end if
38
49
end repeat
39
50
51
+ -- Reduce icon size to 96 if we have additional content
52
+ if j is not equal to 0
53
+ set icon size of theViewOptions to 96
54
+ end if
55
+
56
+ -- Resize window to fit 1 or 2 extra raws with additional content
57
+ -- 6 additional content will be displayed to user without scrolling
58
+ -- for anything more then 6 scrolling will be required
59
+ if j is greater than 0 and j is less than or equal to 3
60
+ set the bounds of theWindow to {400 , 100 , 920 , 525 }
61
+ end if
62
+ if j is greater than 3
63
+ set the bounds of theWindow to {400 , 100 , 920 , 673 }
64
+ end if
40
65
41
66
update theDisk without registering applications
42
67
delay 5
0 commit comments