Can I spawn an MCML page via a thread Delegate and still have it safe?
The desired result is to Play the intro video while loading all the necessary data in the background...
So the logical step would be,
1.)Create delegate to GotoPage(PlayIntroPage)
2.) Subscribe to PlayState Events to goto main page
3.) on Main thread continue loading data
4.) Once intro video is complete GotoPage(DisplayFirstPage)
Do you think this is safe?