Skip to main content
This topic has been closed for replies.
Correct answer tom attix

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.

2 replies

Stephen Marsh
Community Expert
Community Expert
November 24, 2024

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, "");

 

tom attix
Adobe Employee
tom attixCorrect answer
Adobe Employee
October 3, 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.