Hi Guys,
A small update on this. I did a good deal of trial and error today in IE 9 using the artisteer31-green skin.
What I found was that if wmode="window" (which it was set to from code) then the player controls were not visible in IE 9 once you go to full screen, so you cannot pause or go back to normal size without refreshing the page.
For now I've added a config setting to make it easier to try different settings:
<add key="KDMediaPlayer:VideoWindowMode" value="opaque" />
possible values are : window, transparent, opaque, direct, gpu
I when using opaque or transparent the controls were visible but also content on the page is visible on top of the video and the controls were not clickable because of this. After much trial and error chopping things out of the artisteer css and putting them back a little at a time I found 2 selectors that I could override in style-artisteer-overridesd.css and then the controls become clickable as follows:
.cleared{
/* was */
/* height:0;
overflow:hidden;
*/
height:auto;
overflow:visible;
}
div.art-header
{
/* was */
/*
width:100%;
height: 150px;
*/
width:auto;
height: auto;
}
but this messes up the layout and the problem still remains of the page header and other content shows on top of the video. It also results in the controls not being visible in Chrome when I add the above to style-artisteer-overrides.css.
So, I have not yet found a good workable solution, but at least getting an idea of some of the factors involved. I wish there was an easy fix but I have not found one so far.
Best,
Joe