How to add a movie link in html

Hi,
I have a CD about history of our company(Movie) I am developing a web page for our company. In this web page, i need to include one link. If user clicks on that link, user shuold be able to view the running movie in Media player.
Can anyone please guide me how to do it ? which tag i should use ?
Please help
Regards
Ashvini

Hai
U just try this
<jsp:plugin type="applet" code="<here u put ur JMF class" codebase="/URPackdir" width="300" height="200">
<jsp:params>
<jsp:param name="file" value="<%=UrURL%>" />
</jsp:params>
<jsp:fallback>
<p> Unable to start Plug-in. </p>
</jsp:fallback>
</jsp:plugin>Regards
K.Suresh

Similar Messages

  • How to add an internal link on pages 5.0.1?

    Could anyone please tell me how to add an internal link on pages 5.0.1.
    I am making FAQ list, and I would like to make the first page of the document as a list of questions and when a user click on each question, it jumps to the answer (in the same document).
    I found "Add link" tool but it allows you to jump URL or email only.
    I was able to  set the list of questions as an index page of "Table of contents" tool and jump to a question page by clicking each page number, however, it fails when I put a question in a table (I would like to place each question and answer in tables for a visual purpose).
    It seems a jump by using "Table of contents" become invalid when the contents are placed in a chart.  WHy?
    Are there any way to solve this problem?
    any advise will be appreciated.

    Bookmarks have been removed from Pages 5 along with 90+ other features.
    http://www.freeforum101.com/iworktipsntrick/viewforum.php?f=22&sid=bb95ac0944151 2bc797f0c2dbd918f4c&mforum=iworktipsntrick
    You may have Pages '09 still in your Applications/iWork folder.
    The T.O.C. does not index text inside objects which includes Tables.
    Peter

  • How to add a website link into a final cut video

    Does anyone know how to add a website link that someone can click on that I can add to a video I might be creating in Final Cut Express? I am looking for an easy way to do this and I cannot find one. Thanks.

    I believe Media100 is the only application that can do this. Or at least it used to, don't know if it still does. There is a company called VideoClix that can create hot spots on QuickTime files. The technology is in QuickTime, who'd just have to learn how to do it.

  • How to add a movie from dvd to ipad?

    how to add a movie from dvd to ipad?

    Ripping commercial DVDs is against the DMCA in the US, we can't tell you how to do it.
    Use handbrake for DVDs with your home movies on it.

  • How to add a .mov file to i tunes

    how to add a .mov file to i tunes

    Export to master file. Use H.264 and in the When Done selection pick iTunes library or whatever.

  • How to add an orange link arrow on a report

    Hi forumers !
    I added an orange link arrow on a simple report (just to know how to add the orange drill down link). My report displays the following fields: CardCode, CardName and Balance taken from OCRD table.
    I want to add a link arrow on CardCode such that if I click on it, I can see the BP card. For this, i added the image of an orange arow, then create a hyperlink on it. The query I used is  'http://$b1$/link?table=OCRD&key='+{OCRD.CardCode}.
    When I run the report and click on the link, IE opens and I get the following error message :"unable to open the page".
    I've tried several ideas found on this forum , but I still getting the same error message.
    My questions are:
    How can I do to correctly see the BP card using the link arrow?
    Is there any security settings in IE I must do in order to display the BP card?
    Thanks !

    Hi Yves
    try to type at the end of your query the following
    select cardcode,cardname,balance from ocrd
    for browse
    and execute it again
    Edited by: Fasolis Vasilios on Nov 30, 2011 12:10 PM

  • How to add a download link in a report directed by a navigation link?

    I have searched the net but could not find the solution.
    I added a link in a dashboard page. The link is connected to a request. When the link is clicked, the page goes to a report, which is not placed in a section region.
    Now, how to configure the report so that a download link is displayed right under the navigated report?
    I know that if a report is placed under a section in a dashboard design page, use the "Request Link..." to add the download link. But such a "Request Link..." feature is not available for a navigate-link directed report.
    Many thanks in advance.
    Quin

    I haven't seen this done, but it may be possible. As a workaround why not create a new hidden dashboard page and put your request on that page with the appropriate 'Download' report link?

  • How to add a movie to Itunes 11.0.1

    I currently have itunes 11.0.1. I have a file saved as m4v. When i attempt to add this nothing happens. When I try to add a movie created through imovie it only submits the 'stills' not the movie itself. I find this strange since I have imported this movie without trouble to the previous version. Any suggestions, I am getting very aggrevated with it. Not impressed with itunes 11

    I currently have itunes 11.0.1. I have a file saved as m4v. When i attempt to add this nothing happens. When I try to add a movie created through imovie it only submits the 'stills' not the movie itself. I find this strange since I have imported this movie without trouble to the previous version. Any suggestions, I am getting very aggrevated with it. Not impressed with itunes 11

  • How to add a URL link to text

    I need t add a URL link to a word but have not bee able to locate this option, and the usual CTRL + K isn't working. Thanks!

    Hi experts,
    I findout that there is no option in the standard text to add a url link and i findout the solution also we can create text module sepreatly ,here we can add a url link and then add in the smartfrom.In this way the user only can edit the text contents of the samrtfrom without seeing ht settings.
    Thanks everyone for help.

  • How can i get all links from html file ?

    I tried some code:
    List<string> metas = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    HtmlWeb web = new HtmlWeb();
    HtmlAgilityPack.HtmlDocument doc = new HtmlAgilityPack.HtmlDocument();
    doc.Load(filename, Encoding.UTF8);
    var metaTags = doc.DocumentNode.SelectNodes("//meta");
    if (metaTags != null)
    foreach (var tag in metaTags)
    if (tag.Attributes["name"] != null && tag.Attributes["content"] != null)
    text = tag.Attributes["name"].Value;
    mys = tag.Attributes["content"].Value;
    var linksOnPage = from lnks in doc.DocumentNode.Descendants()
    where lnks.Name == "a" &&
    lnks.Attributes["href"] != null &&
    lnks.InnerText.Trim().Length > 0
    select new
    Url = lnks.Attributes["href"].Value,
    Text = lnks.InnerText
    foreach (HtmlNode node in doc.DocumentNode
    .SelectNodes("//a/@href | //img/@src"))
    metas.Add(node.Name);
    In the var linksOnPage i'm getting all the links but some of them not only links for example the first item i see:
    [0] = { Url = "/", Text = "&nbsp;&nbsp;&nbsp;&nbsp;" }
    Then the second item:
    [1] = { Url = "http://rotter.net/cgi-bin/forum/dcboard.cgi?az=login", Text = "התחבר" }
    Next i want to add another loop or variable that will contain only the links after im src for example:
    <img
    src="http://mysite.com"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    So to get only http://mysite.com
    So in the end i will have two Lists:
    First List will contain all links from the html file.
    Second List only links that are in img src

    Ok i'm using regex now and i can get the links i need:
    List<string> metas = new List<string>();
    List<string> metas1 = new List<string>();
    string text = "";
    string mys = "";
    public List<string> LockedThreads(string filename)
    string[] fall = File.ReadAllLines(filename);
    foreach (string hh in fall)
    if (hh.Contains("http://rotter.net") && hh.Contains("locked")||
    hh.Contains("locked_icon_general") ||
    hh.Contains("locked_icon_anchor") ||
    hh.Contains("icon_anchor") ||
    hh.Contains("locked_icon_fire") ||
    hh.Contains("locked_icon_sport")||
    hh.Contains("locked_icon_camera")||
    hh.Contains("locked_icon_movie"))
    Regex linkParser = new Regex(@"\b(?:https?://|www\.)\S+\b", RegexOptions.Compiled | RegexOptions.IgnoreCase);
    foreach (Match m in linkParser.Matches(hh))
    metas.Add(m.Value);
    So now in the metas i have in this case two links.
    For example the first link is from this block in the file:
    The link i got is : http://rotter.net/forum/Images/hot_icon_anchor.gif
    And this is the right link from this block but now how do i get the text from this block and how i connect how do i know that this text belong to the link ? I need to add this text from this block to a new List. Before all that i counted on my own lines
    and got the text but that's a bad idea.
    I need somehow to get: שרשור תשדירי בחירות מרוכז:
    To get the text between the ToolTip',' and the second ',' but not from all the html file only in places of this two links i extracted.
    <TD ALIGN="RIGHT"
    VALIGN="TOP">
    <body onmousemove="overhere()">
    <a onmouseover="EnterContent('ToolTip','שרשור תשדירי בחירות מרוכז:','<u><span style=color:#000099;>כתב: menahem בתאריך: 03.03.15
    שעה: 08:51</span></u><br>1.<br>http://youtu.be/utUaqyiRkJ8<br><br><br>...'); Activate();"
    onmouseout="deActivate()"
    href="javascript:void(0)">
    <img src="http://rotter.net/forum/Images/hot_icon_anchor.gif"
    border="0"></a></TD><TD
    ALIGN="right"
    VALIGN="TOP"
    WIDTH="55%">
    <FONT CLASS='text15bn'><FONT
    FACE="Arial">
    <a href="http://rotter.net/cgi-bin/forum/dcboard.cgi?az=read_count&om=187966&forum=scoops1"><b>
    <font color="red">שרשור תשדירי בחירות מרוכז:</b>
    </a></font></TD>

  • Anyone know how to add a hyperlink to the HTML Gallery template?

    In previous versions, I created a modified HTML template which included a link back to a specific page. This placed the link on ALL of the Index pages. Now I must modify HUNDREDS of indices to accomplish the same thing. There has GOT to be a better way!

    With iOS 5 in the Autumn (from http://www.apple.com/ios/ios5/features.html#more) :
    Even add and delete mailbox folders on the fly.

  • How to add a "custom" link to a report column

    I have a "Tasks" report that is based on a view. the view is a union of 2 tables: "Project tasks" and "Non-project tasks", each one of them has its own form to enter the data.
    I need to add a link from my report to to either form of the mentioned tables. So, if the task is project related, it should go to the "Projects Task" form, but if the task is no related to projects, the link should point to the second form.
    How can I accomplish that in Apex 4.0 ?
    Thanks

    The view has a column for project name, if it was a non-project task, the column is defaulted to "Non-Project"Add another column to the report query (or to the view if it's a Wizard report), based on that column:
    case project_name
      when 'Non-Project' then '201' /* Page ID of non-project task form */
      else '202' /* Page ID of project task form */
    end form_page
    ...Then add a link to the required report column as described above by Alan, setting the target Page attribute to <tt>#FORM_PAGE#</tt>, the Name attribute of the task ID parameter to <tt>P#FORM_PAGE#_TASK_ID</tt> (the form pages will need to take task ID parameters following this naming convention), and the Value attribute to the task ID column from the view.

  • How to fix CSS sheet linked to HTML? Pic Included!

    http://i48.tinypic.com/300z8dz.jpg
    As you can see in that picture above, I move all my styles to a new sheet away from my HTML <head> and I linked it to the HTML file. The background went away so I relinked the background and for some reasons it made the css for my background in my <head> tab instead of my CSS stylesheet. Any help??

    Open your external CSS file in code view.
    Re-link the background-image.  Save.
    This should correct the path to your image file.
    Nancy O.

  • How to add buttons with links to different pages in my flash document?

    Hi I created a template for my flash animation which is a simple content box and a scroll bar beside it.. Anyway at the top I also have 3 pages (they are currently just part of the png background image so they are not buttons of any sort).. My question is how can I make links to these different pages so when clicked in the flash animation they will just open normally like they would in like a website..
    I am a flash beginner so I'm not too technical with it... I don't know if I would have to create 3 seperate documents for my 3 pages or something else?
    Thanks!

    Do you expect the loaded SWF to load "into" the SWF that contains the buttons or are you expecting it to overwrite the existing SWF you're already in (similar to a web page)?
    Loading a SWF inside is pretty straight forward, as long as the SWF is on the same domain or the domain you're loading from has a crossdomain.xml policy allowing it and the SWF is set to publish with the networking sandbox:
    import flash.display.Loader;
    import flash.net.URLRequest; 
    import flash.events.Event;
    var myLoader:Loader = new Loader();
    // listen for completion
    myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, handleCompleteF);
    // usually add some IOErrorEvent or SecurityErrorEvent handlers here
    // button hook here
    myButtonInstanceName.addEventListener(MouseEvent.CLICK, loadPageF);
    function loadPageF(e:MouseEvent):void
         // try to load
         try
              myLoader.load(new URLRequest('another.swf'));
         catch (e:*)
              // catch any error, trace it to flash IDE for debugging
              trace("Error loading SWF: " + e);
    function handleCompleteF(e:Event):void
         // success, add to display list
         addChild(myLoader);
    Season to taste, like moving the position of the Loader object. The Loader will contain the SWF in the .content property (e.g. myLoader.content) and is a display object so you can just add it directly to the display list.
    If you add a second button you can re-use the myLoader to .load() a different SWF, just point it to a new function. You could re-use the same function but you'd need to detect the different buttons (possibly via the .name property). I presume you might want to do "different things" when different pages are loaded so I'm assuming you'd probably use a different function rather than make a huge reused branching function.
    More info on Loader with sample code here:
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/Loader.ht ml#includeExamplesSummary

  • How to add "create subsite link" on my site home page?

    We are using SharePoint 2013 online for our intranet application. One of the requirements is to  add a "create sub-site link" on the home page. Are there any available webparts I can use to add this functionality on the home page? I remember
    seeing this on one of our users home page but not able to remember how it was setup? The home page will be a custom template.

    Hi,
    Let me if I understood your requirement, and based on my understanding you can simple use the Link webpart (App) which is OOTB in SharePont 2013 and use this url
    http://yourSite/_layouts/15/newsbweb.aspx to the link webpart (App).
    This one is a simple solution, since its OOTB you would not have any overhead in maintaining it.
    Hope this helps!
    Ram - SharePoint Architect
    Blog - SharePointDeveloper.in
    Please vote or mark your question answered, if my reply helps you

Maybe you are looking for

  • Error while running InstallOracleProfile script

    good evening every one, i have installed odac for VS 2010,while running the InstallOracleProfile script the following error occurs can any one help me in solving this problem.im using windows os. the error as follows Connected. ------ Running 'C:\Use

  • Lion 10.7.4 Console: Could not find image named 'ForwardArrow'.

    I found following message presented in syslog since today evening, however, the system is running fine so far. 12-5-22 下午10:25:44.345 Console: Could not find image named 'BackArrow'. 12-5-22 下午10:25:44.345 Console: Could not find image named 'Forward

  • Is the rMBP extra sensitive to scratches?

    Hello everybody, When I bought my rMBP all was fine and dandy. Within a week I bought the Crumpler 15" Slip, hoping it would protect my screen from any scratches and stuff. After I bought and started using the slip I suddenly found some scratches on

  • Change Desktop picture every 5 seconds?

    What is the opinion of the learned on setting the desktop picture in "Desktop and Screensaver" System Prefs to change the picture every 5 seconds? Is this a bad idea, and if so why? I cannot find anything from Apple that discourages doing it and obvi

  • Applets and server scripts

    Hi, I'm trying to run a java applet with a web application I'm developing, but I'm having some trouble running it. I have a dll which generates html pages dynamically, and in one of the pages i want to call an applet, but I keep getting an error that