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

Change Document Mode to RGB 32 bit Without Merge

Community Beginner ,
Sep 14, 2016 Sep 14, 2016

I'm trying to convert the document mode from RGB 16 bit to a 32 bit by using:

doc.bitsPerChannel = BitsPerChannelType.THIRTYTWO;

I want to make this conversion WITHOUT merging the layers. Is there a way I can accomplish this.

Thanks!

TOPICS
Actions and scripting
974
Translate
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
Adobe
Community Expert ,
Sep 14, 2016 Sep 14, 2016

Have you tried recording the Action Manger code for this with ScriptingListener.plugin?

Translate
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
Community Beginner ,
Sep 15, 2016 Sep 15, 2016

I have the Script Listener plugin however I'm not entirely sure what you mean about recording the action manager code.

Translate
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
Guide ,
Sep 15, 2016 Sep 15, 2016
LATEST

covertTo32Bit();

function covertTo32Bit() {

var desc6 = new ActionDescriptor();

desc6.putInteger( charIDToTypeID('Dpth'), 32 );

desc6.putBoolean( charIDToTypeID('Mrge'), false );

desc6.putBoolean( charIDToTypeID('Rstr'), false );

executeAction( charIDToTypeID('CnvM'), desc6, DialogModes.NO );

};

Translate
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