Hello
Has anyone else sucessfully resized video playback on fullscreen view to exact dimensions???
Im using the Kontx.mediaplayer and according to the guide resizing should be able to be done using the following..
CODE
_resetViewport: function() {
var bounds = {
x: 820,
y: 100,
width: 880,
height: 860
};
KONtx.mediaplayer.setViewportBounds(bounds);
I have a background image that I want to be displayed, so I have a background image to display with a transparent part cut out.
This is according to the guidelines that the video lies behind the background image.
Problem I have is that Im trying to make the video to exactly fit through the transparent part but it never quite works correctly. For example if I shift the y part 5 pixels up I expect the vertical off set to move 5 pixels but it behaves weirdly and doesnt seem to resize properly???!!??
Anyone help??