Answered
How to switch off SuperScript in InDesign
Hi,
How can I switch off SuperScript in VB ?
AdobeInDesignApp.ChangeTextPreferences.Superscript = False is now working
Hi,
How can I switch off SuperScript in VB ?
AdobeInDesignApp.ChangeTextPreferences.Superscript = False is now working
The following code works for me
Set myInDesign = CreateObject("InDesign.Application")
myInDesign.FindTextPreferences = idNothingEnum.idNothing
myInDesign.ChangeTextPreferences = idNothingEnum.idNothing
myInDesign.FindTextPreferences.FindWhat = "0000"
myInDesign.ChangeTextPreferences.Underline = False
myInDesign.ChangeTextPreferences.Position = idPosition.idNormal
myInDesign.Documents.Item(1).ChangeText
myInDesign.FindTextPreferences = idNothingEnum.idNothing
myInDesign.ChangeTextPreferences = idNothingEnum.idNothing
myInDesign.FindTextPreferences = idNothingEnum.idNothing
myInDesign.ChangeTextPreferences = idNothingEnum.idNothing
The issue was that you were using the wrong enum for normal, it was popping an error for the same which i fixed and it worked.
-Manan
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.