This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"title": "Convert Japanese", | |
"rules": [ | |
{ | |
"description": "F6 Hiragana", | |
"manipulators": [ | |
{ | |
"type": "basic", | |
"from": { | |
"key_code": "f6" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file layerSectionExpanded sample | |
* https://community.adobe.com/t5/photoshop-ecosystem-discussions/check-if-a-group-is-open-or-closed/m-p/15134165 | |
* @version 1.0.0 | |
* @author sttk3.com | |
* @copyright © 2025 sttk3.com | |
*/ | |
const { app, action } = require('photoshop') ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Sample for getting document name and XMP title. | |
* https://community.adobe.com/t5/illustrator-discussions/illustrator-read-xmp-title/td-p/15122774 | |
* @version 1.0.0 | |
* @author sttk3.com | |
*/ | |
(function() { | |
if(app.documents.length <= 0) {return ;} | |
var doc = app.documents[0] ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Illustrator script to execute ExtendScript saved in cloud document. Proof-of-concept. | |
* Assuming json2.jsx is in the same folder as this script | |
* @version 1.0.0 | |
* @author sttk3.com | |
* @copyright © 2025 sttk3.com | |
*/ | |
//@target 'illustrator' | |
//@include 'json2.jsx' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file ai/epsファイルに使用されているフォント名一覧を取得し、テキストとして保存する。 | |
* 合成フォントの構成フォント名も含む | |
* @version 1.0.0 | |
* @author sttk3.com | |
* @copyright © 2024 sttk3.com | |
*/ | |
//@target 'illustrator' | |
$.localize = true ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Make PDF presentation. | |
* [Is it possible to make a script that creates a PDF out of images in a folder?](https://community.adobe.com/t5/photoshop-ecosystem-discussions/is-it-possible-to-make-a-script-that-creates-a-pdf-out-of-images-in-a-folder/td-p/14984011) | |
* @version 1.0.0 | |
* @author sttk3.com | |
* @copyright © 2024 sttk3.com | |
*/ | |
//#target 'photoshop' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Display ICC profile name of the selected linked image in dialog by Illustrator | |
* [Getting Placed Image's ICC Profile with Illustrator ExtendScript](https://community.adobe.com/t5/illustrator-discussions/getting-placed-image-s-icc-profile-with-illustrator-extendscript/td-p/14569584) | |
* @version 1.0.0 | |
* @author sttk3.com | |
* @copyright © 2024 sttk3.com | |
*/ | |
(function() { | |
if(app.documents.length <= 0) {return ;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Illustratorの合成フォントの内訳PostScript Nameを取得し、alertで表示するサンプル用ExtendScript | |
* @version 1.0.1 | |
* @author sttk3.com | |
* @copyright © 2024 sttk3.com | |
*/ | |
//@target 'illustrator' | |
(function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file Sample script to enable/disable the contextual task bar in Illustrator. | |
* Requires Illustrator 2024(28) or later | |
* @version 1.0.1 | |
* @author sttk3.com | |
* @copyright © 2024 sttk3.com | |
*/ | |
(function() { | |
var key = 'ContextualTaskBarEnabled' ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file captureFont.jsxで記憶したフォントを選択しているテキストに適用する | |
* @version 1.1.0 | |
* @author sttk3.com | |
* @copyright © 2023 sttk3.com | |
*/ | |
//@target 'illustrator' | |
//@targetengine 'com.sttk3.attributes' |
NewerOlder