Hi all,
I'm currently building a prototype for training content, using the JW media player.
I'm building 2 learning components. The first is a flash movie that students will watch to learn about a feature or concept.
The second component is a software simulation that will let the student try the software as if they actually had it installed (Adobe Captivate presentation)
This second component will be on its own URL because i can not display it through the JW Media player (at least, i don't think that is possible)
So, what I would like to do is have a training video displayed in the player.
At the last frame, I want to have a single image with the text "Let Me Try".
If the student clicks in the player window, over that text, i want them to jump to the URL that contains the software simulation.
Is this possible?
Can someone suggest a good way to manage this linking so that it's easy (and elegant) to get back to the JW Player to keep watching more training movies?
many thanks in advance,
-jeremy


If you had a playlist with two tracks (or more if you have other videos) the first one being your video, the second one being an image with your text "Let Me Try", then when the video is finished, the image would start "playing".
Then the user could click on the image and go to the other page.
The following flashvars will be needed:
so.addVariable('file', 'playlist.xml')so.addVariable('repeat', list'); // so the player advances to the next track
so.addVariable('shuffle', 'false'); // so the playlist doesn't get shuffled
so.addVariable('linkfromdisplay', 'true');
so.addvariable('linktarget', '_self');
so.addVariable('rotatetime', '99'); // so the player deosn't rotate to the next item on the playlist too soon.
so.addVariable('enablejs', 'true'); // JavaScript so the magic happens
so.addVariable('javascriptid', 'mpl');
Then a little JavaScript to stop the player and open the new window:
function newPage(url){
sendEvent('stop');
window.open(url, 'LetMeTry');
}
The track with the image needs to have an <info> element for the link.
<track><creator>Jeremy</creator>
<location>LetMeTry.jpg</location>
<info><![CDATA[javascript:newPage('LetMeTry-2.html');]]></info>
</track>
Getting back will be handled in the new window with a "Close This Window" image.
Since this gets a little complicated, I made two sample windows, two sample playlists, and two sample images for each (one jpg & one png). Get it here: [url=http://willswonders.myip.org:8085/downloads/LetMeTry.zip]LetMeTry.zip[/url]
Demo: [url=http://willswonders.myip.org:8085/php/LetMeTry-1.html]Let Me Try[/url]