How to center window ?

Hello,

I just checked the trial version of FlashOnDesktop.
I have one question:

How do I center the projector window ?

regards
Alex

There are two ways to center a window.

1. When creating window, you can assign true to the center property of WindowInitOptions.

import com.asyncria.windowsystem.WindowInitOptions;
var initOptions:WindowInitOptions = new WindowInitOptions;
initOptions.center = true;
var window:Window = new Window(initOptions);

2. After window creation, just call center method of Window object.

window.center();