Skip to content

Commit e0ac8b8

Browse files
committed
Updated NamedItemsFinder
Added search modes, search scopes, column with human-readable item type. Minor improvements
1 parent ff88306 commit e0ac8b8

File tree

7 files changed

+765
-453
lines changed

7 files changed

+765
-453
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ Click the category name to learn more about the scripts in the selected category
189189
### [Select](md/Select.md)
190190

191191
* [CornersSelector](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#cornersselector) `v0.1 — 21.04.2023`
192-
* [NamedItemsFinder](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#named-items-finder) `v0.2.3 — upd, 09.02.2024`
192+
* [NamedItemsFinder](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#named-items-finder) `v0.3 — upd, 10.04.2025`
193193
* [SelectAllLayersAbove](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#selectalllayersabove) `v0.1 — 21.02.2022`
194194
* [SelectAllLayersBelow](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#selectalllayersabove) `v0.1 — 21.02.2022`
195195
* [SelectArtboardObjects](https://github.com/creold/illustrator-scripts/blob/master/md/Select.md#selectartboardobjects) `v0.1.1 — upd, 13.01.2025`

README.ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
Скрипты для выбора объектов в документе
199199

200200
* [CornersSelector](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#cornersselector) `v0.1 — 21.04.2023`
201-
* [NamedItemsFinder](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#named-items-finder) `v0.2.3 — upd, 09.02.2024`
201+
* [NamedItemsFinder](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#named-items-finder) `v0.3 — upd, 10.04.2025`
202202
* [SelectAllLayersAbove](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#selectalllayersabove) `v0.1 — 21.02.2022`
203203
* [SelectAllLayersBelow](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#selectalllayersabove) `v0.1 — 21.02.2022`
204204
* [SelectArtboardObjects](https://github.com/creold/illustrator-scripts/blob/master/md/Select.ru.md#selectartboardobjects) `v0.1.1 — upd, 13.01.2025`

jsx/DrawRectanglesByArtboards.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- via YooMoney https://yoomoney.ru/to/410011149615582
1919
2020
NOTICE:
21-
Tested with Adobe Illustrator CC 2019-2025 (Mac/Win).
21+
Tested with Adobe Illustrator CC 2018-2024 (Mac), 2024 (Win).
2222
This script is provided "as is" without warranty of any kind.
2323
Free to use, not for sale
2424
@@ -41,7 +41,7 @@ function main() {
4141
bleed: getBleed(), // Default document bleed
4242
isEqual: true, // Default same bleed values
4343
layer: 'Rectangles', // New layer name
44-
isLower: false, // Rectangles under the others objects
44+
isLower: true, // Rectangles under the others objects
4545
aiVers: parseFloat(app.version),
4646
units: getUnits(),
4747
isMac: /mac/i.test($.os),
@@ -86,7 +86,7 @@ function main() {
8686
isCstmAb.helpTip = 'Total arboards: ' + docAbs.length;
8787

8888
var rangeInp = srcPnl.add('edittext', undefined, '1-' + docAbs.length);
89-
rangeInp.helpTip = 'E.g. "1, 3-5" to export 1, 3, 4, 5';
89+
rangeInp.helpTip = 'E.g. "1, 3-5" > 1, 3, 4, 5';
9090
rangeInp.characters = 10;
9191
rangeInp.enabled = isCstmAb.value;
9292

jsx/MaskArtboards.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- via YooMoney https://yoomoney.ru/to/410011149615582
1818
1919
NOTICE:
20-
Tested with Adobe Illustrator CC 2019-2025 (Mac/Win).
20+
Tested with Adobe Illustrator CC 2018-2024 (Mac), 2024 (Win).
2121
This script is provided "as is" without warranty of any kind.
2222
Free to use, not for sale
2323
@@ -73,7 +73,7 @@ function main() {
7373
// SOURCE
7474
var srcPnl = win.add('panel', undefined, 'Source Artboards');
7575
srcPnl.orientation = 'row';
76-
srcPnl.alignChildren = ['left', 'top'];
76+
srcPnl.alignChildren = ['left', 'bottom'];
7777
srcPnl.margins = CFG.mgns;
7878

7979
var isCurrAb = srcPnl.add("radiobutton", undefined, 'Active #' + (currIdx + 1));
@@ -83,7 +83,7 @@ function main() {
8383
isCstmAb.helpTip = 'Total arboards: ' + docAbs.length;
8484

8585
var rangeInp = srcPnl.add('edittext', undefined, '1-' + docAbs.length);
86-
rangeInp.helpTip = 'E.g. "1, 3-5" to export 1, 3, 4, 5';
86+
rangeInp.helpTip = 'E.g. "1, 3-5" > 1, 3, 4, 5';
8787
rangeInp.characters = 10;
8888
rangeInp.enabled = isCstmAb.value;
8989

0 commit comments

Comments
 (0)