Hi.

In a AS2.0 project I'm using the FLVPlayback component for playing a video. There is a forwardButton in my playerskin and I'd like to apply a custom onPress-function to that button. This is my code:
PHP Code:
var mein_controller:mx.video.FLVPlayback;
mein_controller.autoPlay true;

mein_controller.forwardButton.onPress = function()
{
    
mein_controller.seekToNavCuePoint("endbild");
    
trace("go");
}; 
Unfortunately that doesnt work. The forwardButton of course makes the video jump to its endframe by default. Is it somehow possible to change this command inside of the component???


I'm using Flash CS3.