-
1. Re: Apply Alt text for all the images in the doc
AnshulJain19 Sep 27, 2013 3:56 AM (in response to Ramjivk)Hi Ramji,
Actually your script is trying to apply actual text property on graphic itself which is not possible in InDesign. If you select graphic not its container and try to apply Object Export options then they are disabled. So you will have to make change in your script to apply actual text on graphic container and not graphic. Below is modified script:
------------------------------------------------------------------------------------------ -------------
myRectangle = app.activeDocument.allGraphics;
myTotalImages = myRectangle.length;
for(var i=0; i<myTotalImages; i++)
{
myRectangle[i].parent.objectExportOptions.actualTextSourceType = SourceType.SOURCE_XMP_TITLE;
}
------------------------------------------------------------------------------------------ --------------
Thanks
-Anshul
-
2. Re: Apply Alt text for all the images in the doc
Ramjivk Oct 3, 2013 7:24 AM (in response to AnshulJain19)Hi Anshul,
Thank you so much for your response. It is working fine now with your script.
Regards
Ramji V K


