Some options:
s1->assignProperty(splashScreen, "visible", true);
s2->assignProperty(warningWindow, "visible", true);
// and a transition that triggers s1 -> s2 when the slash closes/times out.
s1->assignProperty(splashScreen, "visible", true);
s2->assignProperty(warningWindow, "visible", true);
// and a transition that triggers s1 -> s2 when the slash closes/times out.
To copy to clipboard, switch view to plain text mode
connect(s1, SIGNAL(entered()), someReceiver, SLOT(showSplash()));
connect(s2, SIGNAL(entered()), someReceiver, SLOT(showWarning()));
connect(s1, SIGNAL(entered()), someReceiver, SLOT(showSplash()));
connect(s2, SIGNAL(entered()), someReceiver, SLOT(showWarning()));
To copy to clipboard, switch view to plain text mode
Cheers,
_
Bookmarks