• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

How to use the aliasPath in ExtendScript Debugger when using symlinks?

Community Beginner ,
Aug 27, 2022 Aug 27, 2022

Copy link to clipboard

Copied

While the 2.0.3 release notes say there are improved docs for the `aliasPath` attribute, I still can't figure out how this is supposed to work or what the value should be. Google search for "aliasPath ExtendScript" isn't helping either...

 

I've tried using the path to where the CEP is loaded from, the local webroot path, and their parent paths... but I can't get anything to work. Also looks like this property isn't respecting the ${workspaceFolderBasename} variable...

 

An example scenario would go a LONG way like:

 

If your project is stored in `~/repos/myCepProject`, and you've created a symlink to it like `sudo ln -s ~/repos/myCepProject "/Library/Application Support/Adobe/CEP/extensions"`, you should set the value of `aliasPath` to the following: ?????

TOPICS
CEP , ExtendScript , ExtendScript Debugger

Views

170

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Sep 07, 2022 Sep 07, 2022

Copy link to clipboard

Copied

LATEST

That's great feedback! Thanks for providing it! To hopefully resolve all five of those question marks at once:

 

If your project is stored in:

    ~/repos/myCepProject

and you've created a simlink to it with a command like:

    sudo ln -s ~/repos/myCepProject "~/Library/Application Support/Adobe/CEP/extensions"

then you should set the aliasPath property to one of the following:

    "aliasPath": "/Users/{username}/Library/Application Support/Adobe/CEP/extensions/myCepProject"

    "aliasPath": "~/Library/Application Support/Adobe/CEP/extensions/myCepProject"

 

Please note that the commands and path examples above are formatted for macOS. The feature otherwise works identically on Windows.

 

Hope this helps!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines