Ticket #198 (closed enhancement: fixed)

Opened 5 years ago

Last modified 5 years ago

show image after video end

Reported by: jeroen Owned by:
Priority: Milestone: Flash 4.2
Component: Keywords:
Cc: Forum thread:

Description

--- C:\mediaplayer-4-0\source.orig\com\jeroenwijering\player\Model.as 2008-07-10 14:34:04.000000000 -0600 +++ C:\mediaplayer-4-0\source\com\jeroenwijering\player\Model.as 2008-07-17 13:23:27.000000000 -0600 @@ -145,14 +145,14 @@ / Send an idle with new playlist. / private function playlistHandler(evt:ControllerEvent) { if(currentModel) { stopHandler(); } else { sendEvent(ModelEvent.STATE,{newstate:ModelStates.IDLE}); + thumbLoader(); }

  • thumbLoader();

};

/ Toggle the playback quality. / private function qualityHandler(evt:ControllerEvent) { if(currentModel) { @@ -181,12 +181,13 @@ if(currentModel) { models[currentModel].stop(); } Draw.clear(skin.display.media); sendEvent(ModelEvent.LOADED,{loaded:0,total:0}); sendEvent(ModelEvent.STATE,{newstate:ModelStates.IDLE}); + thumbLoader(); };

/ Dispatch events. State switch is saved. / public function sendEvent(typ:String,dat:Object) { if(typ == ModelEvent.STATE && dat.newstate != configstate?) {

Change History

comment:1 Changed 5 years ago by jeroen

  • Milestone changed from Flash 4.1 to Flash 4.2

comment:2 Changed 5 years ago by jeroen

Perhaps extend this to an 'oncomplete' flashvar?

  • oncomplete=none
  • oncomplete=link
  • oncomplete=image
  • ...

comment:3 Changed 5 years ago by jeroen

  • Status changed from new to closed
  • Resolution set to worksforme

comment:4 Changed 5 years ago by jeroen

  • Status changed from closed to reopened
  • Resolution worksforme deleted

Now, when the video ends, the image is indeed seen again.

comment:5 Changed 5 years ago by jeroen

  • Status changed from reopened to closed
  • Resolution set to fixed
Note: See TracTickets for help on using tickets.