I have an Embed object that shows a video stream, how to setup a html link to it, so when user clicks on the link, it will open another window to show the video ?
<embed id="player" src="http://media2.wtnh.com/_local/livestreams/FMLPlayer.swf" align="center" width="588" height="351" wmode="opaque" allowfullscreen="true" flashvars="live=true&megastream=rtmpe://megastream.uvault.com/lbservice/&uniqueId=d733607a4ce559&shuffle=false&displayheight=425&autostart=true&frontcolor=0xFFFFFF&backcolor=0x000000&lightcolor=0xCCCCFF&overstretch=true&showicons=false&showvolume=false&volume=0&showdigits=false&showicons=false&showvolume=false&repeat=list"></embed>
Here's my html file :
<Html>
<Head><Title>TV Channels</Title></Head>
<Body BgColor=#D6D6D6 Link=#FFFFFF Vlink=#00FFFF>
<Center>
<Table Cellspacing=0 Cellpadding=0>
<Tr><Td Align=Center Valign=Bottom BgColor=#3366FF><A Href="" target="_blank"><Font Size=2 Color=white>AlJazeeraEnglish</Font></A></Td></Tr>
<Tr>
<Td>
<Object Width=588 Height=351>
<embed id="player" src="http://freetubetv.net/media/ftbe.swf" align="center" width="588" height="351" wmode="opaque" allowfullscreen="true" flashvars="image=http://i.imagehost.org/0103/aljazeera.gif&file=livestation/aljazeer_en_medium.sdp&streamer=rtmp://liveplay.simplecdn.net/aljazeerenhqf800/&displayheight=425&shuffle=true&autostart=true&overstretch=true&showicons=false&showvolume=false&volume=0&showdigits=false&showicons=false&showvolume=false&repeat=list&displayclick=fullscreen&controlbar=none&icons=false"></embed>
</Object>
</Td>
</Tr>
</Table>
</Center>
</Body>
</Html>
Right now if you click on the title "AlJazeeraEnglish" it opens an empty window, how to display the Embeded video feed in that empty window ? I know one way is to save the <embed>...</embed>
string into another html file, and link to that file. But I don't want to save it to another file, I wonder if I can pass the string to the link somehow, such as : <A Href="<embed>...</embed>" target="_blank">
?