Skip to main content
cyriln53424740
Known Participant
September 10, 2021
Question

InDesign Server CC 2021 - Find color

  • September 10, 2021
  • 1 reply
  • 915 views

Hi everyone,

 

I'm facing a very strange issue on InDesign Server CC 2021.

 

I can't find color using app.findTextPreferences.findWhat...

I receive an error saying that "findWhat" is not part of object "findTextPreference"... but yes it is !

It works on InDesign CC 2021 on my computer but not on InDesign Server.

 

I think there are a lot of issues around colors because i can't remove colors too.

example : myOldColor.remove(myNewColor)

or 

myOldColor.remove


Error : Can't remove this color

 

Can you help me ?

 

Thanks.

 

Cyril

 

 

This topic has been closed for replies.

1 reply

Sunil Yadav
Brainiac
September 10, 2021

Can you be able to share the file on which you are getting this issue?

 

cyriln53424740
Known Participant
September 10, 2021

Hi,

 

Errors are visible on a new simple document.
With language VBScript, example :

 

Set ID = CreateObject("IndesignServer.Application.2021")

'New Document
Set CurDoc = ID.Documents.Add

'New color
Set NewColor1 = CurDoc.Colors.Add
NewColor1.Name = "Test"
NewColor1.ColorValue = Array(71, 20, 100, 10)

'Init Color FindWhat    ----> ERROR
ID.FindColorPreferences.FindWhat = NewColor1 

'Add textframe on the first page
Set CurItem = CurDoc.Pages.Item(1).TextFrames.Add

'Fill textframe with new color
CurItem.FillColor = NewColor1

'Delete color     ----> ERROR
NewColor1.Delete

 

cyriln53424740
Known Participant
September 10, 2021

I also tried with Javscript for the issue with findColorPreference.

Same error...