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

Can multiple lines of text in a pop-up window be automatically centered?

Guide ,
Aug 25, 2025 Aug 25, 2025

There are two situations here.

alert does not automatically center?

alert(“This is the first line\nAfter a line break, it cannot be centered and can only be spaced with spaces?”)

 

showDialog() cannot wrap lines? Only one line can be displayed.

showDialog(“Note: Please select an object. How to break lines here”, 1000);

//auto close dialog
showDialog(“Note: Please select an object. How to break lines here”, 1000);

function showDialog(message, duration) {
var win = new Window(“palette”, t, undefined, { closeButton: false });
win.add(“statictext”, undefined, message);
// Change font size It doesn't seem to work.
win.graphics.font = ScriptUI.newFont(“Heiti”, ScriptUI.FontStyle.BOLD, 20);

win.layout.layout(true); // Force layout before showing
win.show();
win.update(); // Force redraw before sleep
$.sleep(duration); // Wait for the specified duration
win.close(); // Then close the window
}

 

TOPICS
Bug , How to , Scripting
152
Translate
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

Community Expert , Aug 25, 2025 Aug 25, 2025
Translate
Community Expert ,
Aug 25, 2025 Aug 25, 2025
Translate
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
Guide ,
Aug 25, 2025 Aug 25, 2025

Hi Peter Kahrel

Thank you very much.
It's a great book, but it's not very easy to read.
Is there a PDF version available?

Translate
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 ,
Aug 25, 2025 Aug 25, 2025
LATEST

It is a PDF. You can't have read it in any other way.

Translate
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