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

Disable File Name Prefix Auto-Fill in Export Artboards to Files

Participant ,
Mar 13, 2018 Mar 13, 2018

Copy link to clipboard

Copied

File Name Prefix is automatically filled in this process, how do I disable this feature?

Views

458

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

correct answers 1 Correct answer

Adobe Employee , Oct 03, 2018 Oct 03, 2018

Other than rewriting the script, there is no way to do this in the UI. You can write over the existing name but there's no way to make it come up blank.

Votes

Translate

Translate
Adobe
Adobe Employee ,
Oct 03, 2018 Oct 03, 2018

Copy link to clipboard

Copied

Other than rewriting the script, there is no way to do this in the UI. You can write over the existing name but there's no way to make it come up blank.

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
Community Expert ,
Nov 23, 2024 Nov 23, 2024

Copy link to clipboard

Copied

LATEST

Make a backup of the "ArtboardExport.inc" file in the application's Presets/Scripts folder so that you can easily recover it.

 

Here are examples of code lines 502-503, where the "File Name Prefix" is populated:

 

  // File Name prefix.
  dlgMain.etFileNamePrefix = dlgMain.grpTopLeft.add('edittext', undefined, exportInfo.fileNamePrefix.toString())

 

Change line 503 to:

 

  dlgMain.etFileNamePrefix = dlgMain.grpTopLeft.add("edittext", undefined, "");

 

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