I'm trying to get the dimensions of the videosource in a VideoDisplay:
private function loadMovie () : void {
vid = new VideoDisplay();
vid.source = _item.itemLg;
vid.play();
vid.addEventListener ( MediaPlayerStateChangeEvent.MEDIA_PLAYER_STATE_CHANGE, onVideoPlay );
addElement(vid);
}
private function onVideoPlay ( event : MediaPlayerStateChangeEvent ) : void {
if ( event.state == MediaPlayerState.PLAYING ) {
trace (vid.videoObject.width + " " + vid.videoObject.height);
}
}
But the result is always 0.
I got the same result with:
trace (vid.videoObject.videoWidth + " " + vid.videoObject.videoHeight);
Any other idea?
Thanks
I found a solution but I don't know why this works:
I think it's a little bit dirty...