Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 540095
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T10:12:17+00:00 2026-05-13T10:12:17+00:00

I have an Embed object that shows a video stream, how to setup a

  • 0

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"> ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T10:12:17+00:00Added an answer on May 13, 2026 at 10:12 am

    Create another page that all it has in the body is that embedded video. Create an anchor tag to that page. Profit.

    Edit:

    You cannot do it as you are wishing. If you have server side processing, or you want to do cheesy javascript, you can change the look of the same page by adding query parameters as part of the link and changing the size of your embed tag to fill the page, based on those parameters. This is not recommended though.

    The recommended way is a new html page. If your worry is duplicating code between the two pages, you can encapsulating the embed tag into a javascript file and dynamically add it where you need it on each of the pages, or use some sort of preprocessor to join pages much as Dreamweaver does.

    Edit 2:

    var params = window.location.search.substring(1);
    var splitParams = params.split('&');
    
    var targetKey = "fullscreen";
    var targetValue = null;
    
    var keys = new Array();
    var values = new Array();
    
    for (i = 0; i < splitParams.length; i++) {
        var keyValue = splitParams[i].split('=');
    
        keys.push(keyValue[0]);
        values.push(keyValue[1]);
    }
    
    for (i = 0; i < keys.length; i++) {
        if (keys[i] == targetKey) {
            targetValue = values[i];
            break;
        }
    }
    
    if (targetValue != null) {
        // Do something different with your embed object
    } else {
        // Do what you're doing now with your embed object
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.