forked from ff6347/mpolauncherJSRes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Tint-2-Swatch.jsx
185 lines (157 loc) · 3.99 KB
/
Tint-2-Swatch.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
// color_XXX.jsx
// this script changes the color of the selection to the disered swatch color
// Copyright (C) 2011 Fabian "fabiantheblind" Morón Zirfas
// http://www.the-moron.net
// info [at] the - moron . net
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/.
main();
function main (){
var doc;
try {
var doc = app.activeDocument;
} catch(e){
alert("No no no, you have no document.\nMaybe you should drink some coffee");
return;
}
// Create a list of swatches
var list_of_swatches = doc.swatches.everyItem().name;
// Make dialog box for selecting the swatch
var dlg = app.dialogs.add({name:"Colorize", canCancel:true});
with(dlg) {
with(dialogColumns.add()){
with(dialogRows.add()){
staticTexts.add({staticLabel:"Swatches:"});
var selected_swatch = dropdowns.add({stringList:list_of_swatches, selectedIndex:0});
}
}
}
//Display the dialog box.
if(dlg.show() == true){
// the color
// the selected colorswatch
var c = doc.swatches.item(selected_swatch.selectedIndex);
for (var i = 0; i< app.selection.length; i++) {
// check for bitmaps
try { var myImg = app.selection[i].images.item(0); } catch (e) {}
try { myImg.fillColor = c; } catch (e) {}
// polygons
if( app.selection[i] instanceof Polygon ){
try { app.selection[i].fillColor = c; } catch (e) {}
} // end polygon
// textframes
if( app.selection[i] instanceof TextFrame ){
//alert("got a textframe");
// if there is text in there
if(app.selection[i].contents.length > 0){
// alert("I have some text");
try { var chrs = app.selection[i].characters.everyItem(); } catch (e) {}
try { var prs = app.selection[i].paragraphs.everyItem(); } catch (e) {}
try { chrs.fillColor = c; } catch (e) {}
try { prs.ruleAboveColor = c; } catch (e) {}
try { prs.ruleBelowColor = c;} catch (e) {}
}else{
app.selection[i].fillColor = c;
}
} // end textframes
// check for rectangles
if( app.selection[i] instanceof Rectangle ){
// alert("Juhu i have a rectangle");
app.selection[i].fillColor = c;
}
// check for ovals
if( app.selection[i] instanceof Oval ){
// alert("Juhu i have a rectangle");
app.selection[i].fillColor = c;
}
}
alert("done");
//
//
// for (var i = 0; i< app.selection.length; i++) {
//
// try {
// var myImg = app.selection[i].images.item(0);
//
// } catch (e) {
//
// }
// try {
// myImg.fillColor = doc.swatches.item(selected_swatch.selectedIndex);
//
// } catch (e) {
//
// }
//
// if( app.selection[i] instanceof Polygon ){
//
// try {
// app.selection[i].fillColor = doc.swatches.item(selected_swatch.selectedIndex);
//
// } catch (e) {
//
// }
//
//
// }
//
// // if(app.selection[i] instanceof TextFrame){
//
// try {
// var myChars = app.selection[i].characters.everyItem();
//
// } catch (e) {
//
// }
//
//
// try {
// var myPars = app.selection[i].paragraphs.everyItem();
//
// } catch (e) {
//
// }
//
//
// try {
// myChars.fillColor = doc.swatches.item(selected_swatch.selectedIndex);
//
// } catch (e) {
//
// }
//
//
// try {
// myPars.ruleAboveColor = doc.swatches.item(selected_swatch.selectedIndex);
//
// } catch (e) {
//
// }
//
//
// try {
// myPars.ruleBelowColor = doc.swatches.item(selected_swatch.selectedIndex);
//
// } catch (e) {
//
// }
//
//
//
//
// }
//
// alert("done");
//
}else{
dlg.destroy();
}
}