Export Alt-Texts + Import Alt-Texts
Hello Script Masters, there is this Scripts that allows you to export your Custom Alt Text to a Text File, not sure if its possible to import it back after, incase you needed to make changes to any Alt text.
Orignal
AltText-Export.jsx
//DESCRIPTION: This script will export all all text into single txt document on your desktop.
#target indesign
var images = app.activeDocument.allGraphics; // .itemLink.name
var altTextFilePath = "~/Desktop/AltText.txt";
var file = new File(altTextFilePath);
file.open('w');
for(var i=0; i < images.length; i++){
file.write( images.itemLink.name + "\n" + images.parent.objectExportOptions.customAltText + "\n\n" );
}
file.close();
alert('You can find "AltText.txt" file on your desktop', "Done");
