avatar
B급 서고

VSCode Setup for ExtendScript ✨

ExtendScript을 위한 VSCode 설정
ExtendScriptvscode개발환경AdobeAEAfterEffects
Oct 4
·
2 min read

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");

결과


- 컬렉션 아티클






프로그래밍에 대한 것들을, 무작정 써 내려가요! 🌀