Open swf on certain frame using HTML link

Hi,
I have an HTML page which I want to link to a flash movie.
Within the HTML page there are 5 buttons, I want these 5 buttons to
point to the same flash movie but to different points throughout
the timeline of the movie.
Can anyone tell me how to do this? is there a simple way of
pointing to frame labels through the URL of the link?
Thanks,

I am quite new to this, the HTML for loading the SWF is as
follows:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','
http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','na me','menu','width','968','height','208','align','middle','id','menu','src','Header?theGoTo Frame=86','quality','high','bgcolor','#FFFFFF','allowscriptaccess','sameDomain','pluginspa ge','http://www.macromedia.com/go/getflashplayer','movie','Header?theGoToFrame=86'
); //end AC code
</script><noscript><object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
name="menu" width="968" height="208" align="middle" id="menu">
<param name="allowScriptAccess" value="sameDomain">
<param name="movie" value="Header.swf?theGoToFrame=86">
<param name="quality" value="high">
<param name="bgcolor" value="#FFFFFF">
<embed src="Header.swf?theGoToFrame=86" quality="high"
bgcolor="#FFFFFF" width="968" height="208" name="menu"
align="middle" allowScriptAccess="sameDomain"
type="application/x-shockwave-flash" pluginspage="
http://www.macromedia.com/go/getflashplayer">
</object>
Any help please :s

Similar Messages

  • How to pass request parameters using html:link in struts

    Hi All,
    I am trying to send parameters to action class using <html:link>.
    Can anybody give sample code how to do it?
    Thanks in advance.
    By
    K.Siva Prasad Reddy

    hi,
    you can pass the parameters in link like this
    http://www.xyz.com&username=someuserID&password=somePassword
    username and password are parameters which you want to pass as paramets to server..hope this will work for you...
    Thanks
    Surya

  • How to use html:link in Ajax

    Hi frnds,
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html" %>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean" %>
    <%@page import="java.sql.*" %>
    <html>
    <head>
    <script type="text/javascript">
    var xmlhttp;
    function loadXMLDoc()
    xmlhttp=null;
    alert(document.getElementById('country').value);
    alert(document.getElementById('url').value);
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    url=document.getElementById('url').value+"action=search&q="+document.getElementById('country').value+"&scope=tracker";
    xmlhttp.onreadystatechange=onResponse;
    xmlhttp.open("POST",url,true,"platts","platts1234");
    xmlhttp.send("");
    function onResponse()
    if(xmlhttp.readyState!=4) return;
    if(xmlhttp.status!=200)
    alert("Problem retrieving XML data: "+xmlhttp.statusText);
    return;
    y=xmlhttp.responseXML.documentElement.getElementsByTagName("response");
    alert(y.value);
    //alert(xmlhttp.statusText);
    txt="<div style='overflow:auto;height:400px;width=1200px' align='top'>";
    txt=txt+"<table border='1' style='border-collapse: collapse' bordercolor='#111111' width='100%'>";
    txt=txt+"<tr bgcolor='#D3D3D3'>";
    txt=txt+"<th width='5%'> </th>";
    txt=txt+"<th width='10%'>UID</th>";
    txt=txt+"<th width='7%'>PUBLICATION</th>";
    txt=txt+"<th width='10%'>INFRASTRUCTURE</th>";
    txt=txt+"<th width='10%'>PROJECT</th>";
    txt=txt+"<th width='10%'>STATUS</th>";
    txt=txt+"<th width='10%'>CAPACITY</th>";
    txt=txt+"<th width='10%'>STARTUP</th>";
    txt=txt+"<th width='28%'>NOTES</th>";
    txt=txt+"</tr>";
    x=xmlhttp.responseXML.documentElement.getElementsByTagName("tracked-item");
    for (i=0;i<x.length;i++)
    txt=txt + "<tr bgcolor='white'>";
    txt=txt+ '<td width="5%"><html:link action="Unpub" name="lng" property="uri"><img src="./images/Unpub.png" height="16" width="16" border="0" title="UnPublished Icon">';
    xx=x.getElementsByTagName("uri");
    document.getElementById('uri').value=xx[0].firstChild.nodeValue;
    try
    txt=txt + "<td width='10%'><input type='text' name='uri' value="+ xx[0].firstChild.nodeValue +">" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    txt=txt+'</html:link>';
    xx=x[i].getElementsByTagName("Publication");
    try
    txt=txt + "<td width='7%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='7%'> </td>";
    xx=x[i].getElementsByTagName("infraStructure");
    try
    txt=txt + "<td width='10%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    xx=x[i].getElementsByTagName("project");
    try
    txt=txt + "<td width='10%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    xx=x[i].getElementsByTagName("status");
    try
    txt=txt + "<td width='10%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    xx=x[i].getElementsByTagName("capacity");
    try
    txt=txt + "<td width='10%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    xx=x[i].getElementsByTagName("startup");
    try
    txt=txt + "<td width='10%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='10%'> </td>";
    xx=x[i].getElementsByTagName("notes");
    try
    txt=txt + "<td width='28%'>" + xx[0].firstChild.nodeValue + "</td>";
    catch (er)
    txt=txt + "<td width='28%'> </td>";
    txt=txt + "</tr>";
    txt=txt+ "</table>";
    txt=txt+ "</div>";
    document.getElementById('tab').innerHTML=txt;
    </script>
    </head>
    <body onload="loadXMLDoc()" bgcolor="#D8D8BF" >
    <html:form action="Unpub" styleId="searchForm">
    <%@ include file="header.jsp" %>
    <img src="./images/Unpub.png" height="16" width="16"/> --> Unpublished Data
    <br><br><br><br>
    <html:hidden property="country" name="lng"/>
    <html:hidden property="uri" name="lng"/>
    <html:text property="uri" name="lng"/>
    <input type="hidden" id="url" value='<%=application.getInitParameter("url")%>'>
    <div style="overflow:auto;height:400px" align="top">
    <div id="tab"></div>
    </div>
    </html:form>
    </body>
    </html>
    Here is my code.... my intension is ... when i click the <html:link> which is there in the script i want to get the corresponding rows 'uri'. and that uri i need to pass to the bean.
    Here in this case my problem is which ever icon i press i'm able to get the last uri
    for ex:- if there are 10 records displayed in tabular format. if i press any icon i'm getting only the 10th uri....
    So, kindly please help me to sort out this problem.

    Hi Gobinath,
    Please check the below similar links
    How to display a HTML Page in Webdynpro (without IFrame)?
    can i embed an html page in the webdynpro
    HTML Editor in WebDynpro
    How to connect to a html using webdynpro
    Hope that helps
    regards
    Anil
    Message was edited by:
            Armin Reichert

  • Load new swf & goto certain frame #

    I have 4 swf files. each file has 4 or 5 frames in it. I have
    a button inside swf1 and when clicked I want to go from swf1 to
    swf3 or from 3 back to 1. That is no problem with unloadmovie() but
    the problem I am having is that I need to go to a certain frame. So
    when I go from swf1 - swf3 and within swf 3 I need to go to frame
    3. That is where I'm having troubles. I can get the swf 3 to load
    but I can't get it to go to frame 3. Any help would be great.
    Thanks

    Insted of using container.loadMovie("whatever.swf"), use:
    container.loadMovieF("whatever.swf",F); where F is the frame number
    you want the movie to go to on load. Place the following code
    before all of your other code:
    MovieClip.prototype.loadMovieF = function(url, frame) {
    var obj = {f:frame};
    var my_mcl = new MovieClipLoader();
    my_mcl.addListener(obj);
    obj.onLoadInit = function(targ:MovieClip) {
    targ.gotoAndStop(this.f);
    my_mcl.loadClip(url, this);
    };

  • Open Page in new window using action link

    How do I open a page in a new window, using action link ?
    If I put javascript window.open in OnClick event, the action event ins�t called.

    Hi,
    The window.open method can be used with the hyperlink component. So please try it with a hyperlink component.
    Cheers
    Giri :-)
    Creator Team

  • Passing values to action form in struts using html:link tag in struts

    hi
    As we can post values to action form bean in struts using a <html:text> tag in side a form.
    Can the same be achieved by using a html:link attribute.
    If not then how can this be achieved (i.e. posting a form on click of a link and populating action form bean property for the same).
    thanx in advance.

    Crosspost:
    http://forum.java.sun.com/thread.jspa?threadID=5244035&tstart=0

  • Open email client and use HTML link

    How does one open an email client and embed a body with HTML, so links will work.
    I have tried:
    var request:URLRequest = new URLRequest("mailto:[email protected]?subject=some subject Results"+"&body="+"<A=href=3Dhttp://www.somelink.com</A>"
    navigateToURL(request, "_self");
    This is not to be sent to a php page, but load the user's Email Client.

    Using URL notation to specify an emails contents you can't force a user to use rich text. Some have their clients to default to plain text. Therefore it will just show the HTML. There is no guaranteed way to achieve this.
    If the user has rich text set as default a link being injected typically auto-links anyhow. You may not SEE it as a hyperlink but send the email and the receiving users computer should see it as a hyperlink.
    So try:
    var request:URLRequest = new URLRequest("mailto:[email protected]?subject=some subject Results&body=http://www.somelink.com");
    Then send that email to yourself. You should see it appear as a hyperlink automatically, as long as you have rich text mode enabled. Otherwise no matter what you send a plain text user will never see your hyperlink anyhow as it strips HTML out.

  • Open Page in new window using hyper link

    I put the window.open method on OnClick event of outputlink to open a page in new window, but the page is started in a old window.
    How do I start the page in a new window.
    My sintaxe of outputlink:
    <h:outputLink binding="#{P0110.hyperlink1}" id="hyperlink1"
    onclick="WindowObjectReference = window.open('about:blank', '','menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes');" value="http://www.sun.com/jscreator">
    </h:outputLink>

    Hi,
    Following are the steps to open a new window using the window.open method for the hyperlink component:
    1. Drag and drop a hyperlink component onto the page
    2. In the properties sheet go to the Value property and delete the value present there
    3. Click on the ... button next to the onclick property
    4. Enter the line of code given below:
    window.open("http://www.yahoo.com","New window");
    5. Save and run the project
    On clicking on the hyperlink a new window will open with the www.yahoo.com page.
    Hope this helps
    Cheers
    Giri :-)
    Creator Team

  • Unable to open movies in certain sites using Firefox 4, no problem with former versions

    As a almost daily visitor of the site Bigfun.be I got a crash every time I wanted to open a movie, since I started using Firefox 4.
    After some automatic updates, the crashes disappeared.
    But it's still unable to open movie files. There is a message which says that the file is being loaded, but it isn't.
    I've contacted the webmaster, he knows about the problem and suggested me to uninstall the version 4 and to go back to the 3.6 version.

    I went to that site and played a couple of movies without a problem. Cat & Budgie and Horse on the back seat of a car...lol.
    Have a look at your firewall logs. Is the firewall blocking '''plugin_container.exe''' by any chance? That utility is part of Firefox and acts like a kind of sandbox to isolate plugins which crash without crashing the whole browser. But it does need Internet access. Generally speaking, what often happens is the firewall throws up an alert to which the user doesn't respond. So the firewall 'assumes' it's a threat and blocks it.
    Can you go to this site: http://www.liveleak.com/ and click on any video. Is the player visible even if it doesn't play?

  • Is it possible to open 2 on-demand subreports using 1 link?

    I have a main report Customer Orders, with 3 on-demand subreports - PO Detail, Invoice Detail, Shipment Detail.
    Is it possible to build a command or a link to  open all 3 subreports with one click, rather than clicking to open each subreport tab separately?

    Not that I know of... Change them from on demand to not on demand so the data is there to view. They still have to click the Subreport link but no waiting.
    Possibly putting the subreports in the group header will make them run and show the data but that is very taxing on the DB server, the subreport runs each time a group is created on the page.
    You may want to rethink your report, if you can get the data into the main report, seems the info should be there anyways, and put those details in the detail section and/or group on each PO Detail, Invoice Detail, Shipment Detail.
    Don

  • How to stop the animation at a certain frame using action script 3.0 .

    How to stop on a frame to stop the animtion using adobe flash cc.

    Either put a stop(); command in the desired frame of the animation's timeline, or have an ENTER_FRAME event listener working who's event handler function constantly check the currentFrame value of the animation and issues an animation.stop(); command when the desired frame is reached

  • How to use the html:link with a arraylist

    Hi everyone:
    I want to display the data using struts html:link.
    I query the database and place all the data to javabean,later place all the javabean to ArrayList.In Action,I use the "request.setAttribute("lovetable",articlelist) to set request to jsp page.
    I want to pass a parameter "id" use the hyperlink so I can get the parameter when I click the hyperlink.
    But how to use html:link to display it?
    I use <html:link action="viewtopic.do" paramId="id" paramName="lovetable" paramProperty="id"/>,it can't work and Tomcat report error :
    org.apache.jasper.JasperException: No getter method for property id of bean lovetable
         at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:248)
         at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
         at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    The lovetable is a ArrayList and it don't have a getter or setter method.
    How to use it pass parameter? :( Thks

    Thank you.
    I use the bean:define successful.And display all the data to jsp.My jsp code is:
    <logic:iterate id="love" name="lovetable">
    <bean:define id="idbean" name="love"/>
    <tr bgcolor="<%=color%>">
    <td><bean:write name="love" property="id"/></td>
    <td><html:link forward="viewtopic" paramId="id" paramName="idbean" paramProperty="id"><bean:write name="love" property="title"/></html:link></td>
    <td><bean:write name="love" property="name"/></td>
    <td><bean:write name="love" property="time"/></td>
    </tr>
    </logic:iterate>
    In Action : request.setAttribute("lovetable",articlelist)
    ResutlSet rs=.............
    List articlelist=new ArrayList();
    while(rs.next()){
    articlebean bean=new articlebean();
    bean.setName(rs.getString("name"));
    bean.setTitle(rs.getString("title"));
    articlelist.add(bean);
    The above code will work property.
    The Tag "html:link" need bean to work other than arraylist so I iterate all the bean out.
    The Tag "logic:iterate" need collection to work so I make Action return a List.
    right?
    Any idea? :)

  • Colors of html:link is not consistent

    Hi,
    I am using html:link in jsp for showing the links.
    <html:link href="test.do" params="testParams" styleId="testlink" styleclass="testurl" />
    while running the application and the link is visited, color of the link gets changed from blue to black. But when I go to next screen and come back, link color changes back to blue or sometimes shows as black. Its not consistent.
    I thought of writing code in css. I am not sure how to do it.
    Please help me how to make the color of the link consistent. Once visited, it should be black or else blue.
    Thanks & Regards,
    Nasrin.N

    on your web page, if you click "View Source" does it show things in plain old HTML format as in Some Link Text ?
    If it does then the above code I posted should work.
    The selector "a" in the above code matches all anchor tags in the page, so there's no need to specify a class or an id , for the anchor tags.
    But if you want only some links to be colored a certain way then you would add a class , or an id (which ever is appropriate) to those links.
    If you assign a class then the CSS would have to include the class of that anchor tag.
    So it would be something like
    a.classname:link{
    CSS is very simple, it could be learned in just one to two days, here's a good tutorial: http://www.w3schools.com/css/default.asp

  • HTML Links to PDF Destinations not Working

    I've named three destinations in a PDF file using Acrobat X.  When I have the Destinations tab open with the local file they all resolve to the right location.  However when I use HTML links to go directly to these destinations (using file.pdf#nameddest=destination-name format) they resolve to the top of the following page.
    Any reccomendations on how to fix this?
    Thank you for all your help.
    my test files are located at www.kathrynswebpage.net/booklist.php

    Hi, I know the answer to the second question:
    - use Inspector
    - go to "link inspector"
    - choose "format"
    --> from here you can choose how your links appear

  • Send over HTML-Link an string to PDF with openparameters ?

    Hi,
    is it possible to open an 3D-PDF over an HTML-Link and commit the 3D-PDF any strings (I´m not mean a searchstring for the internal searchfunction)?
    Thanks for help !

    It's very difficult to explain by words.
    I need an help in this forum because I want to make my book(interactive pdf) opens an external application that is a sort of presentation with video and images created in director.
    If I try to create an hypertextual link between a button and this file  I don't have the chance to choose it. So I thought to write a script like - launch "start.app"- to make my presentation run ( it happens if I ask the script to run).
    But I wonder: - how can I make this event happen only  when I ask to my project to do it?-
    For example: I am reading my book on adobe digital edition and at the end of the third chapter, there is an image.  I mouse up and I understand it's a button. When I click on, it opens a new window with my presentation running and I watch it. At end I quit and I keep on reading my book on Adobe digital edition.
    Have you an idea?
    I hope I have explained it much better?!?!

Maybe you are looking for

  • How to move media and librar[ies] to external hard drive, when 'Keep organized' de-selcted

    Newbie to mac, sorry for being so dense. I am  nervous about my understanding of iTunes and from the many posts I've read realize how easily I could screw this up.  Can someone point me to step by step directions for moving the actual media 'files',

  • Make a disk bootable

    For the live of me, I cannot find an appropriate forum. Moderator: please move this question to an appropriate forum. I have a PC running Vista ( Win7 has same issue ) I have A USB to IDE converter. I place a Solid State Disk on the IDE converter. I

  • Events problem in Table Maintainance Generator.

    Hi, I had created the custom table having three field in it Namely (Pernr,Begda,Endda).Here Pernr is Primary key. So by using the TMG events '05' i had written the program as below 1) when pernr is intial Display the Error message. 2)When Begda is Gr

  • Show days in a calendar

    Hey! I have a table showing the amount of days needed to develop a project. Feature 1: 6 days Feature 2: 16 days Feature 3: 69 days Now I would like to show an calendar overview with a dynamic starting date... Any ideas on how I can do that?

  • Camera Flash Comes on and won't go off HELP!!!!!!!!

    The only way to turn the light off is to pull the battery. I've searched and haven't found any solutions.  Blackberry hasn't responded to any posts about this problem that I can find. My company has all BB Style phones and will be switching from BB i