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
| -- Bridge2024以前はidにバージョン番号が付くので調べて書き換える | |
| set myBridge to application id "com.adobe.bridge" | |
| set myBridgeName to name of myBridge | |
| tell myBridge to activate | |
| tell application "System Events" | |
| set waitCount to 0 | |
| repeat until exists application process myBridgeName | |
| delay 0.1 |
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
| /* | |
| <javascriptresource> | |
| <name>CMYK値を整理</name> | |
| <category>Yamo/CMYKGCR100</category> | |
| </javascriptresource> | |
| */ | |
| // Ver 1.2 (2025/10/09) | |
| // グローバルスウォッチに対応(特色は維持) |
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