I did some searching on the forums and didn't find any references to using LaunchedWindowParameters, is it safe to use them? In our SageTV app we are using them to pass data between windows and I want to make sure we're not asking for trouble.
In the calling window we have:
In some places we use:Code:params = mc.Parameters() params['FavoriteID'] = FavID mc.GetApp().ActivateWindow(14031, params)
And then in the called window we have:Code:params = mc.GetApp().GetLaunchedWindowParameters() params['FavoriteID'] = FavID mc.GetApp().ActivateWindow(14031, params)
Code:params = mc.GetApp().GetLaunchedWindowParameters() mc.LogDebug("SageBoxee: Favorite ID = " + params['FavoriteID'])


Reply With Quote

Bookmarks