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

non-modal dialog box in FrameScript possible?

Explorer ,
Oct 23, 2015 Oct 23, 2015

Copy link to clipboard

Copied

Hi,

I need a non-modal dialog box. Unfortunately, I couldn't find a useful approach to it yet and fear that it doesn't work with FrameScript. Can anybody confirm this or give me some advice how it works?

Thank you very much in advance!

Regards,

Apollo102

TOPICS
Scripting

Views

375

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
Explorer ,
Oct 23, 2015 Oct 23, 2015

Copy link to clipboard

Copied

I found something as a good starting point:

Adobe FrameMaker-12 Object Model JS: Window (SUI)

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
Explorer ,
Oct 23, 2015 Oct 23, 2015

Copy link to clipboard

Copied

var ItemListSelectDialog = new Window("palette", DialogTitel , {x: window_xpos, y: window_ypos , width: window_width, height: window_height}, { resizeable: true, borderless: false});

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
Community Expert ,
Oct 23, 2015 Oct 23, 2015

Copy link to clipboard

Copied

Non-modal dialog boxes are possible in both FrameScript and ExtendScript. Which language are you using?

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
Explorer ,
Oct 23, 2015 Oct 23, 2015

Copy link to clipboard

Copied

LATEST

Hi Rick,

I use ExtendScript. It works with the code which I have previously posted.

var ItemListSelectDialog = new Window("palette", DialogTitel , {x: window_xpos, y: window_ypos , width: window_width, height: window_height}, { resizeable: true, borderless: false});

I have found the information here:

Adobe FrameMaker-12 Object Model JS: Window (SUI)

Or is there another better way?

Thank you.

Regards

Apollo102

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