I need to create a splashscreen while my FMX program is launching.
The following code from VCL does not works anymore:
SplashScreen := TSplashScreen.Create(Application);
SplashScreen.Show;
Application.Initialize;
SplashScreen.Update; //No such function in FMX
Application.Run;
Problem is that in FMX forms are not created/repainted until Application.Run
executed, as they use some FMX magic to repaint. Using VCL splashscreen is not an option since I need OSX support.
How do I create a splashscreen in Delphi XE2 FireMonkey project?
delphi
tag so that more people see it. :) I've removed it before when the question was extremely specific, and he's put it back in. I finally quit disagreeing with him. ;) - Ken Whitedelphi
. Also thefiremonkey
tag had only 49 followers and the tagdelphi-xe2
80, but thedelphi
tag has 1839, so if you uses thedelphi
tag you have more chances to get an answer to from a delphi developer. - RRUZ