• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

statictext control in script UI

New Here ,
May 19, 2011 May 19, 2011

Copy link to clipboard

Copied

how to change the statictext text value during run time??

for eg, if my dialog box (which contains a static text n a button) is being displayed, so i want the statictext text value to change whn i click on the button...

TOPICS
Scripting

Views

2.5K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Contributor , May 19, 2011 May 19, 2011

Hi. try this snippet.

var w = new Window('dialog',"test");

var t = w.add('statictext', undefined, "1");

var b = w.add('button', undefined, "+1");

t.characters = 3;

b.onClick = function() {

  t.text = (t.text-0)+1;

}

w.show();

And then

You should refer <a href="http://www.kahrel.plus.com/indesign/scriptui.html">ScriptUI for dummies | Peter Kahrel</a>

This PDF contains many many helps for coding ScriptUI.

thankyou

mg.

Votes

Translate

Translate
Contributor ,
May 19, 2011 May 19, 2011

Copy link to clipboard

Copied

Hi. try this snippet.

var w = new Window('dialog',"test");

var t = w.add('statictext', undefined, "1");

var b = w.add('button', undefined, "+1");

t.characters = 3;

b.onClick = function() {

  t.text = (t.text-0)+1;

}

w.show();

And then

You should refer <a href="http://www.kahrel.plus.com/indesign/scriptui.html">ScriptUI for dummies | Peter Kahrel</a>

This PDF contains many many helps for coding ScriptUI.

thankyou

mg.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 20, 2011 May 20, 2011

Copy link to clipboard

Copied

LATEST

thanks..it worked!!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines