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

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

Participant ,
Mar 13, 2018 Mar 13, 2018

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

589
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

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.

Translate
Adobe
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.

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 Expert ,
Nov 23, 2024 Nov 23, 2024
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, "");

 

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