Thanks for the quick reply.
I forgot to mention that I've already tried to set the background
color using "Application.get().setStyle("background-color",
"white");" : the result is that the background of the application will
be white, but the page that is displayed before the application with
the small "initializing ..." window in the center is not affected by
the setStyle above; moreover I did not found any method to localize
the "initializing" string that appear during page loading.
The test application I've compiled simply does the following into the
onModuleLoad():
FLEX.init(new FlexInitializationHandler() {
@Override
public void onInitialization() {
Application.get().setStyle("backgroundColor", "white");
SuperPanel superPanel = SuperPanel.newInstance("SuperPanel
Container Example");
Application.get().addElement(superPanel);
}
});
Is it correct, or I've to try something other method ?
Thanks in advance.
Fabrizio
On 27 Giu, 17:52, Alfredo Quiroga-Villamil <
laww...@gmail.com> wrote:
> 1. Customize background:
>
> If my memory serves me right try:
>
> Application.get().setStyle("background-color", "red");
>
> for example.
>
> 2. Loading time:
>
> Alain should be able to help you there.
>
> Regards,
>
> Alfredo
>