forlano Messages: 1207 Registered: March 2006 Location: Italy
Senior Contributor
Hello Andrei,
thank you for the code snippet. I needed it too. I've modified it slightly to see it in action
GUI_APP_MAIN
{ TopWindow app;
HelloWorld hw;//Examples: AnimatedHello
hw.PopUp(NULL,false,false,true,true);
hw.Title("Hello world example");
hw.Text(Nvl(Join(CommandLine(), " "), "Hello world !"));
Ctrl::ProcessEvent();
Ctrl::EventLoop(); //to run animation
app.Run();
}
where this block should substitude the one in AnimatedHello package.
Now next problem is to let appear some static image for a given amount of time. Have you another code snippet with the solution?