ExtendScriptvscode개발환경AdobeAEAfterEffects
ExtendScript Debugger 확장 설치
https://marketplace.visualstudio.com/items?itemName=Adobe.extendscript-debug
M1을 사용하는 경우
Warning for Apple Silicon Users (e.g. M1): The extension does not run in native builds of VS Code but it does work with Intel/universal builds using Rosetta. Please see the Known Issues below for information on how to use the extension.
M1은 지원안함. 그래서 Rosetta 모드를 활성화해야함.
VSCode 애플리케이션에 정보 가져오기
에서 Rosett를 사용하여 열기
를 체크 후 다시 실행시켜야 함.
launch.json 파일 설정
{
"version": "0.2.0",
"configurations": [
{
"type": "extendscript-debug",
"request": "launch",
"name": "Run ExtendScript",
"script": "${file}"
},
]
}
디버깅
AfterEffects 실행 후, 디버깅 원하는 파일에서 F5
키를 누름.
그러면 아래와 같이 이미지 뜸. Adobe After Effects
선택하고 Enter
.
Example
코드
// alert.jsx
alert("hello");