FLVPlayback component has null properties
When I try to access the subcomponents of an FLVPlayback component, I just get null properties:
| flv = new FLVPlayback(); | ||||
| trace(flv.skin, flv.stopButton, flv.playButton); // null null null |
I suppose that just means they're the defaults. But what do I do if I need to access them?
I specifically want to try adding an event listener to the stopButton component. I want to do this because the stop button just seems to be pausing playback rather than resetting the time to zero.
