I have 4 WMP Objects all set to the same Grid position. All must be hidden upon Page.Show and in turn, Page.ShowObject > Play
I am to hide approx. 18 Objects [total] on Page.Show.
If I create a list hiding each Object individually, it works well. However, I find Page.HideAllObjects is not working as I expect it to. I am getting a black box where WMP is instead of the page background and then receive an error msg saying MediaPlayer1 cannot be found on the page.
Actions are thus:
(Page - OnShow)
Page.HideAllObjects
Application.Sleep ["2"]
Page.ShowObject ["MediaPlayer1"]
Application.Sleep [".25"]
MediaPlayerObject["MediaPlayer1"].Play
Perhaps someone can point out what I can't see!
I am to hide approx. 18 Objects [total] on Page.Show.
If I create a list hiding each Object individually, it works well. However, I find Page.HideAllObjects is not working as I expect it to. I am getting a black box where WMP is instead of the page background and then receive an error msg saying MediaPlayer1 cannot be found on the page.
Actions are thus:
(Page - OnShow)
Page.HideAllObjects
Application.Sleep ["2"]
Page.ShowObject ["MediaPlayer1"]
Application.Sleep [".25"]
MediaPlayerObject["MediaPlayer1"].Play
Perhaps someone can point out what I can't see!
Comment