Skip to main content
Participant
December 22, 2015
Question

hide conditional text

  • December 22, 2015
  • 1 reply
  • 403 views

How can I hide a conditional text in multiple files?

Marco

This topic has been closed for replies.

1 reply

Stefan Rakete
Inspiring
December 22, 2015

Hi Marco,

this JavaScript snippet hides a condition with the name "JavaScript":

var curDocument = app.activeDocumnt;

var curCondition = curDocument.conditions.itemByName("JavaScript");

curCondition.visible=false;

Participant
December 22, 2015

many thanks, I will try immediately.

cheers