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

output module "Full Flat Path" not working as expected

Explorer ,
Aug 15, 2017 Aug 15, 2017

Copy link to clipboard

Copied

Hello,

My script contains this line:

var new_dataMOVIE = {"Output File Info": {"Full Flat Path": fullFlatPathMOVIE + myCompText}};

The path it creates is correct, but when AE makes the output module it's adding a duplicate volume and subdirectory to the beginning of the path.

For example, the script builds a path that reads:

"/Volumes/ourserver/PROJECTS/ourproject/user/shot/...etc"

Which is what the actual path should be.

But after it adds the output module, the output module path now reads:

"/Volumes/PROJECTS/Volumes/ourserver/PROJECTS/ourproject/user/shot...etc"

Am I using "Full Flat Path" incorrectly?

Thanks, all, for any help.

TOPICS
Scripting

Views

471

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
Advocate ,
Aug 18, 2017 Aug 18, 2017

Copy link to clipboard

Copied

LATEST

Hard to tell without seeing the context, but outputModule accepts File object, so you could try this:

renderQueue.items[0].outputModules[1].file = File(["Output File Info"]["Full Flat Path"]);

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