Skip to content

Instantly share code, notes, and snippets.

@sttk3
sttk3 / sttk3_convert_japanese.json
Created April 1, 2025 11:45
IllustratorでF7のカタカナ変換などを有効にするKarabiner-ElementsのComplex Modifications設定
{
"title": "Convert Japanese",
"rules": [
{
"description": "F6 Hiragana",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "f6"
@sttk3
sttk3 / isExpanded.psjs
Created February 5, 2025 11:25
Photoshop UXP Script: layerSectionExpanded sample
/**
* @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') ;
@sttk3
sttk3 / getXMPTitle.jsx
Created January 31, 2025 03:21
Illustrator script sample for getting document name and XMP title
/**
* @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] ;
@sttk3
sttk3 / executeCloudScript.jsx
Created January 14, 2025 07:36
Illustrator script to execute ExtendScript saved in cloud document. Proof-of-concept
/**
* @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'
@sttk3
sttk3 / documentFontNames.jsx
Last active December 31, 2024 04:29
ai/epsファイルに使用されているフォント名一覧を取得し、テキストとして保存する。合成フォントの構成フォント名も含む
/**
* @file ai/epsファイルに使用されているフォント名一覧を取得し、テキストとして保存する。
* 合成フォントの構成フォント名も含む
* @version 1.0.0
* @author sttk3.com
* @copyright © 2024 sttk3.com
*/
//@target 'illustrator'
$.localize = true ;
@sttk3
sttk3 / makePDFPresentation.jsx
Last active November 16, 2024 03:41
Export a multi-page PDF with PDF Presentation. Disable "Advance Every 5 seconds" and use desired PDF preset
/**
* @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'
@sttk3
sttk3 / showICC.jsx
Last active April 22, 2024 04:39
ExtendScript: Display ICC profile name of the selected linked image in dialog by Illustrator
/**
* @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 ;}
@sttk3
sttk3 / compositeFont.jsx
Last active March 7, 2024 01:09
Illustratorの合成フォントの内訳PostScript Nameを取得し、alertで表示するサンプル用ExtendScript
/**
* @file Illustratorの合成フォントの内訳PostScript Nameを取得し、alertで表示するサンプル用ExtendScript
* @version 1.0.1
* @author sttk3.com
* @copyright © 2024 sttk3.com
*/
//@target 'illustrator'
(function() {
@sttk3
sttk3 / ContextualTaskBarEnabled.jsx
Last active November 11, 2024 13:07
Sample script to enable/disable the contextual task bar in Adobe Illustrator
/**
* @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' ;
@sttk3
sttk3 / pasteFont.jsx
Last active October 18, 2024 08:12
記憶したフォントを選択しているテキストに適用するIllustrator用スクリプト。captureFont.jsxとセットで利用する
/**
* @file captureFont.jsxで記憶したフォントを選択しているテキストに適用する
* @version 1.1.0
* @author sttk3.com
* @copyright © 2023 sttk3.com
*/
//@target 'illustrator'
//@targetengine 'com.sttk3.attributes'