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
| try | |
| set myBridge to application id "com.adobe.bridge" | |
| set myBridgeName to name of myBridge | |
| on error | |
| display alert "Adobe Bridgeが見つかりません。" | |
| return | |
| end try | |
| tell application "Finder" | |
| set mySel to selection |
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
| (function () { | |
| if (app.documents.length === 0) return; | |
| if (app.selection && app.selection.length > 1) { | |
| alert("複数のオブジェクトが選択されています。1つだけ選択して実行してください。"); | |
| return; | |
| } | |
| var base = []; | |
| if (app.selection) for (var i = 0; i < app.selection.length; i++) base.push(app.selection[i]); |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <array> | |
| <dict> | |
| <key>Activate</key> | |
| <string>OnceWithPalette</string> | |
| <key>AddToMacroPalette</key> | |
| <true/> | |
| <key>AddToStatusMenu</key> |
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
| /* | |
| <javascriptresource> | |
| <name>マスクカラー変更</name> | |
| <category>YPresets</category> | |
| </javascriptresource> | |
| */ | |
| // クイックマスク、レイヤーマスクがオーバーレイ表示されているとき、実行する度に色相環を60度ずつ変更 | |
| var regKey = "myMaskColor"; // 実行内容を記録するキー |
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
| /* | |
| <javascriptresource> | |
| <category>YPresets</category> | |
| </javascriptresource> | |
| */ | |
| // ファイル名を変えることで、 | |
| // ブラシ不透明度、流量を直接指定したりプラス、マイナスするスクリプト | |
| // OpacityFlowExposure_F-.jsx Flow(流量)をマイナス | |
| // OpacityFlowExposure_O+.jsx Opacity(不透明度)をプラス |
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
| /* | |
| <javascriptresource> | |
| <name>クリッピング表示</name> | |
| <category>YPresets</category> | |
| </javascriptresource> | |
| */ | |
| //Ver 1.0 (2025/10/01) | |
| #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
| #target illustrator | |
| var YamoScriptVersion = "Ver 1.3.1 (2025-11-19)"; | |
| // CMYK値をCMYのうち1〜2版+Kに変換するスクリプト | |
| // CMYKオブジェクトを選択して実行する。彩度調整オプションオフでは、ほぼ色を変えない | |
| // 配布gist | |
| // https://gist.github.com/Yamonov/3a90a9a50389c68095c5f14577ad09d5 | |
| // 2025-11-19:不必要な機能を無効化(ありがとう @Creold) |
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
| /* | |
| <javascriptresource> | |
| <name>InDesignに合わせてリサイズ</name> | |
| <category>YPresets</category> | |
| </javascriptresource> | |
| */ | |
| // Ver 1.3 (2025/10/27) | |
| // InDesignのリンク配置サイズに合わせてPhotoshop画像を指定ppiへ非破壊リサイズするユーティリティ(BridgeTalk + ScriptUI) |
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
| /* | |
| <javascriptresource> | |
| <name>Illustratorに合わせてリサイズ</name> | |
| <category>YPresets</category> | |
| </javascriptresource> | |
| */ | |
| var SCRIPT_VERSION = "Ver.1.5.1(2025-11-14)"; | |
| // ==== 拡大・縮小の警告しきい値 ==== |
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
| #!/bin/zsh | |
| lsreg="/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister" | |
| apps=( | |
| "/Applications/Adobe Photoshop (Beta)/Adobe Photoshop (Beta).app,フォトショップベータ" | |
| "/Applications/Adobe Illustrator (Beta)/Adobe Illustrator.app,いられベータ" | |
| "/Applications/Adobe InDesign 2025 (Beta)/Adobe InDesign 2025 (Beta).app,いんででベータ" | |
| ) |
NewerOlder