I create a VideoDisplay Object and set its properties and event handlers
[EMAIL PROTECTED]; videoHolder_VdDisp.load(); videoHolder_VdDisp.addEventListener(VideoEvent.READY,onVideoLoaded); videoHolder_VdDisp.addEventListener(VideoEvent.COMPLETE ,onVideoComplete); videoHolder_VdDisp.addEventListener(IOErrorEvent.IO_ERROR ,videoFileNotFound); Then whenever I set the source to a different event using a click event on a button [EMAIL PROTECTED]; the onVideoLoaded function gets called but when I set the next video in the onVideoComplete function the onVideoLoaded function doesnt get called [EMAIL PROTECTED]; I event tried callin a different method from the onVideoComplete function but that didnt work either cheers :) firdosh
