Question
Why doesn't the setWindowTitle() function work for InDesign panel extensions?
Hello everyone, I am seeking help again.
/**
* Set the title of the extension window.
* This function works with modal and modeless extensions in all Adobe products, and panel extensions in Photoshop, InDesign, InCopy, Illustrator, Flash Pro and Dreamweaver.
*
* Since 6.1.0
*
* @9397041 title The window title.
*/
CSInterface.prototype.setWindowTitle = function(title)
{
window.__adobe_cep__.invokeSync("setWindowTitle", title);
};
This is the documentation for the ADOBE CEP plugin. It states that the setWindowTitle() function works with modal and modeless extensions in all Adobe products, and panel extensions in Photoshop, InDesign, InCopy, Illustrator, Flash Pro and Dreamweaver. However, I have found that I am unable to successfully change the title of the panel in InDesign, even though it works as expected in Photoshop and Illustrator.
What could be the reason for this discrepancy in InDesign?
Thank you!
