Html Page Title

Dear all,
I am using Forms 10g and in the formsweb file i am using the current line
separateFrame=TRUE
so whever the form opens, it will open a java applet.
how i can change the title for the java applet which is"Oracle developer forms runtime - web'?
note i am using pageTitle=Test my application
and this is for the html page only.
so any idea?
Thanks in advance

You can set the title of the separate frame using set_window_property built in when-new-form-instance.

Similar Messages

  • Change HTML page title in Oracle Waveset 8.1.1

    Hi,
    Does anyone know which file/page to override if I want to change the HTML page title for Oracle Waveset?
    After the upgrade the title on every page is: "Waveset".
    This is what I would like to do:
    - Set the title to "Identity Manager Administration" on all pages under /idm (Admin pages)
    - Set the title to "Identity Manager User Pages" on all pages under /idm/user/
    Thanks for your help.
    Regards,
    Henrik

    Thank you,
    This was what I was looking for:
    http://download.oracle.com/docs/cd/E19225-01/821-0093/ahuhd/index.html#6nl5vc1ja
    It seems like the title change is only visible when the user is logged in.
    To override the title always, you can override this file and set the your title:
    WSHOME/includes/setStyleSheetsAndTitle.jsp
    Regards,
    Henrik

  • How to change the web page title of a web dynpro app?

    Hello,
    I would like to change the HTML page title of a web dynpro application without renaming the application component itself - but how?
    Thanks for your comments!

    Hi M Walter,
    Assuming you are using Web Dynpro Java, you can change the title of the Web Page for Web Dynpro App by adding the title to the main window of your app.
    Go to Windows and open the properties. There will be a field called 'title'. Give the title you want, save, build, DC->Build and deploy.
    The title you gave to this Window will be displayed as the title of your Web page.
    Regards,
    Ajay

  • Update page title

    Hi,
    I create a form that allows user to change the HTML page title. It works, but after the form is submitted with the new page title, the title does not change immediately. The user has to refresh the page or go to another page to see the changed title. Is there a way to completely refresh the page on form submit and immediately show the results (ie new title) to the user?

    Eleeist wrote:
    I have finally got to the root of the problem - the sequence in which code is executed.
    I have fixed this and now everything works just fine. Thanks everyone for help .
    Great. I'll just append what I ended up with, just in case it contains something you might want to use.
    <cfif isDefined("form.submit")>
              <cfset websiteTitle = form.websiteTitle>
    <cfelse>
              <cfset websiteTitle = "no_title">
    </cfif>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
              "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
              <link rel="stylesheet" type="text/css" href="/styles/stylesheet.css"/>
              <title>
                        <cfoutput>#websiteTitle#</cfoutput>
              </title>
    </head>
    <body>
    <cfform>
              <cfinput type="text" name="websiteTitle" required="yes" message="Supply the title">
              <cfinput type="submit" name="submit">
    </cfform>
    </body>

  • Is there any way to have the page title NOT be the name of the HTML file

    You might want a page title to be say "Digital Media Academy." You don't however really want the html file to be called "Digital%20Media%20Academy.html" Windows web browsers often have problem opening pages with spaces in the file name. On the other hand you don't really want the page title to be "DigitalMediaAcademy" because that looks kind of dumb. Any way around this.

    The page is already not included in the nav bar, but
    where do you set the page name to be different from
    the file name? How can I set the name of the page,
    such as the name of this page is "Apple - Support -
    Discussions - Post Message:Reply," to be different
    from the file name?
    I think I probably misunderstood your question. You want the html "title," which appears at the top of a browser, to be independent of the name of the html file, right? I don't think that is possible in this version without manually editing the html after publishing. iWeb uses the page name given in the inspector for both the navigation bar link and the file name, replacing spaces by %20 in the latter because web servers don't allow spaces in file names.

  • Escape HTML for Page Title

    Hi,
    We created a custom TLN.
    I would like to produce href tags but I face the problem of escaping HTML characters :
    <aa on_click="return EPCM.doNavigate('<%= currNavNode.getName()%>',0,'','null',1,'<%= *StringEscapeUtils.escapeHtml(*currNavNode2.getTitle(userLocale))%>','')" href="#"><%=currNavNode2.getTitle(userLocale)%></aa>
    The problem is that the org.apache.commons.lang.StringEscapeUtils is not available (or I do not know how to make it available...).
    How do you proceed for escaping :
    - HTML
    - URL
    - Javascript
    Thanks in advance for your help.
    Best regards,
    Guillaume

    Hi,
    After many tries, I found out that simply quotes and double-quotes is enough for the Javascript EPCM.doNavigate to work (almost) properly.
    Here is the code I use in the toplevelnavigation.jsp :
    <% String titlePage    = "";
       String escTitlePage = "";
       titlePage    = currNavNode2.getTitle(userLocale);
       escTitlePage = titlePage;
       escTitlePage = escTitlePage.replaceAll("\'","\\\\\'");
       escTitlePage = escTitlePage.replaceAll("\"","\\\\\"");
       //escTitlePage = escTitlePage.replaceAll("\\&amp;","\\&");
       //escTitlePage = escTitlePage.replaceAll("\\&amp;","\\%26");                             
    %>
    <a <%=level2Id%> oncclick="return EPCM.doNavigate('<%= currNavNode2.getName()%>',0,'','null',1,'<%= escTitlePage %>','')" href="#"><%= titlePage %></a>
    The last problem I have is with '&'. Whatever escaping I try, I have a truncated string in the page title at position of the '&'...
    Any idea ?
    Thanks in advance.
    Best regards,
    Guillaume

  • Error while invoking BPEL Process through HTML Page

    Hi ,
    I have created a HTML Page to invoke BPEL synchronous process .
    HTML Page contains :
    <html>
    <head>
    <title>Untitled Document</title>
    <h1>Add Macro Task Input Form </h1>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="cyan" text="#000000">
    <form name="form1" method="get" action="/httpbinding/default/AddMacroSync/process">
    EmployeeId :
    <input type="text" name="EmployeeId" ><br>
    <br>
    TaskName :
    <input type="text" name="MacroTaskName" >
    <button
    id="identifier"
    class="dialog"
    label="OK"
    accesskey="t"/>
    <br>
    </form>
    </body>
    </html>
    I am able to invoke my BPEL Process named as " AddMacroSync" .
    It also creating instance for this BPEL Process .
    But when I go BPEL Console and check my instance , it is always faulted .
    I am providing two inputs : Employee Id and Taskname through HTML Page .
    These inputs got assigned to their respective output variables .
    But when I click on audit link ..it shows error while invoking the Process .
    It Show error :
    when invoking endpointAddress 'http://152.69.248.232:8990/AddMacroTask-AddMacroTask-context-root/AddMacroTaskWebService', [java.lang.NumberFormatException]
    But this end point address is working when I put this address in URL .
    Please someone help me how to solve this problem .
    Thanks
    Prashant Dwivedi
    Message was edited by:
    Prashant Dwivedi

    Hi Clemens ,
    I changed My HTML ...Now it looks like as :
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="application/x-www-form-urlencoded; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" text="#000000">
    <form name="form1" method="post" action="/httpbinding/default/AddMacroSync">
    <input type="hidden" name="msg_part" value="payload">
    <input type="hidden" name="namespace" value="http://xmlns.oracle.com/AddMacroSync">
    EmployeeId:
    <input type="text" name="EmployeeId">
    TaskName :
    <input type="text" name="TaskName">
    <input type="submit" name="Submit" value="Submit">
    </form>
    </body>
    </html>
    After this when I try to incoke my BPEL Process through this HTML :
    I am gettign following error :
    500 Internal Server Error
    java.lang.IllegalStateException: IOException: Premature end of POST data
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.EvermindHttpServletRequest.getParameter(EvermindHttpServletRequest.java:2452)
         at com.collaxa.cube.ws.http.HttpBindingServlet.checkSecurity(HttpBindingServlet.java:281)
         at com.collaxa.cube.ws.http.HttpBindingServlet.doPost(HttpBindingServlet.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:824)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:330)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind[Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)

  • "Page Path" in HTML Page Skin

    Hey Guys,
    I was wondering if anyone knows how I could include the behavior that the "Page Path" Item provides, but I would like to do it in an HTML Pageskin. Seems like this would be fairly common for those people using page skins.
    Thanks
    -sean

    Hi,
    I insist : it is not possible with HTML to insert Page breaks. BUT, Tammie is right! You can use CSS (Cascade Style Sheet) to insert page breaks thanks to few lines of code in your HTML page.
    Follow this link to have a look at a very simple piece of code to illustrate this :
    http://www.codeave.com/css/code.asp?u_log=4016
    Here it the code if you don't have access to this URL :
    <html>
    <head>
    <title>CodeAve.com/CSS - Page Break</title>
    <body bgcolor="#FFFFFF">
    <center>
    Page 1
    <br style="page-break-before:always;">
    Page 2
    <br style="page-break-after:always;">
    Page 3
    <p>
    Use print preview on your browser to see how<br>
    this page would print out to three pages
    </center>
    </body>
    </html>
    Hope it helps.
    Don't forget to close the post if solved (so that search in the forum is easier), and reward points (so that SDN members are happy !) 

  • No Page title after migration from WSS 3.0 to SharePoint Foundation 2013

    Dear community,
    I have migrated serval sitecollections from WSS 3.0 (SharePoint 2007) to SharePoint 2010 Foundation and then to SharePoint Foundation 2013.
    Now in SharePoint 2013 no page titles appears, but under the title "Homepage" appears. I'dont know where "Homepage" is come from. The title of the page is "Test". Changing the title has no effect. In SharePoint 2010 Foundation
    the page titles appears correctly.
    Does anyone have a solution for this problem?
    Thank you very much and best regards,
    Lucian

    I compared the html code of the two sites.
    Migrated site:
    <h1 id="pageTitle" class="ms-core-pageTitle">
    <span id="DeltaPlaceHolderPageTitleInTitleArea">
    <label class="ms-hidden">Test Title</label>
    </span>
    <div id="DeltaPlaceHolderPageDescription" class="ms-displayInlineBlock ms-normalWrap">
    <a href="javascript:;" id="ms-pageDescriptionDiv" style="display:none;">
    <span id="ms-pageDescriptionImage">&#160;</span>
    </a>
    <span class="ms-accessible" id="ms-pageDescription">
    </span>
    <script type="text/javascript">// <![CDATA[
    _spBodyOnLoadFunctionNames.push("setupPageDescriptionCallout");
    // ]]>
    </script>
    </div>
    </h1>
    Standard site:
    <h1 id="pageTitle" class="ms-core-pageTitle">
    <span id="DeltaPlaceHolderPageTitleInTitleArea">
    Test Title
    </span>
    <div id="DeltaPlaceHolderPageDescription" class="ms-displayInlineBlock ms-normalWrap">
    <a href="javascript:;" id="ms-pageDescriptionDiv" style="display:none;">
    <span id="ms-pageDescriptionImage">&#160;</span>
    </a>
    <span class="ms-accessible" id="ms-pageDescription">
    </span>
    <script type="text/javascript">// <![CDATA[
    _spBodyOnLoadFunctionNames.push("setupPageDescriptionCallout");
    // ]]>
    </script>
    </div>
    </h1>
    There is a .NET Code in the HTML Code of the migrated site:
    <label class="ms-hidden">Test Title</label>

  • How to pass on variables while redirecting from BSP to HTML  page.

    Hi all,
    I have two BSP pages - BSP1, BSP2.  When I click a submit button on BSP1, it should call BSP2 wherein BSP2 will work silently behind the scenes and redirect some variable values through hidden form fields to BSP1 back. 
    User will not see BSP2 in fact.  He just deals with BSP1, but when he clicks the submit button on BSP1, it silently calls BSP2, and then BSP2 will process something behind the scenes and sends back values through hidden form fields to BSP1 by means of redirection. After redirection from BSP2 to BSP1, I am not getting the hidden fields in BSP1.  From the BSP1, I am trying to get the hidden fields of BSP1 using:
    Here is how my code in BSP2 (redirecting to BSP1) looks like:
    <b>BSP2 : Layout:</b>
    <input type="hidden" name="hf1" value="vicky">
    <b>BSP2 : OnInitialization:</b>
      response->redirect( url_BSP1 ).
      navigation->response_complete( ).
    But when I am doing this, the hidden form fields from BSP2 are not being passed to BSP1 back.
    I am trying to get the form values <b>in BSP1</b> as below:
    <b>BSP1 : Layout:</b>
       <%
       data:  hfield type string.
       hfield = request->get_form_field('hf1').
       %>
    I even tried the above code in onRequest, and onInitialization sections.  But I am getting nothing.
    Please give me some ideas on how to deal with the redirection and get the hidden values out of that.
    Thanks in advance.
    Cheers,
    Vicky.

    Hi,
    There are different ways to do it, but let's pick this one. It closes the popup. If you need additional things to be done, you can make a form with all hidden fields, submit that form, do the same close and do whatever you need in the inputprocessing
    <html>
      <head>
    <title>title</title>
          <script language="javascript">
              function init() {
              <%if count eq 1.%>
                  opener.document.form.F<%=field%>.value = '<%=value.%>';
              close();
             <%else.%>
          <%endif.%>
          </script>
      </head>
      <body onLoad="init();">
    </body>
    </html>

  • How to display a text file in a html page?

    I have written a servlet that executes a batch file whose output is saved to a txt file. I am attempting to display content of the text file as a html page from the servlet but am struggling I have attempted to read the file and output it as shown below but it is not displaying the correct data
    Appreciate some help
    Thanks in advance
    Amjad
    Runtime r = Runtime.getRuntime();
    Process p = r.exec("C:\\Condor\\test\\QueStatus.bat");
    PrintWriter out;
    String title = "Que Status";
    response.setContentType("text/html");
    out = response.getWriter();
    FileReader fr = new FileReader ("C:\\Condor\\test\\output.txt");
    for (int chr = fr.read(); chr != -1; chr = fr.read()){
         out.print(chr);
    }

    Couple of things. First you should search the forums for how to properly exec a dos batch file. There are some problems you may run into especially with io. I suspect you may not actually be running that batch file at all.
    I would test outputing a text file separately from execing the batch file.
    Here is some code so you don't have to output 1 char at a time. Setting the content length and closing the output stream might help.
    File downloadFile = new File("c:\\blah\\blah\\blah");
    response.setContentLength((int)downloadFile.length());
    response.setContentType("text/html");
    ServletOutputStream out = response.getOutputStream();
    FileInputStream fis = new FileInputStream(downloadFile);
    byte[] buffer = new byte[1024];
    int bytesRead;
    while ((bytesRead = fis.read(buffer)) != -1) {
    out.write(buffer, 0, bytesRead);
    fis.close();
    out.close();

  • PC's can't see all of my .html page but my mac does.

    RE: http://www.todaysipnchat.sipnchat.ca/table.html
    Can anyone help me figure out why my web page is only partially visible to PC's? I built the page with Site Studio 1.7 on my Linux Server and have a table page with the top and right bottom tables visible to PC's but the contents of the bottom right table (which is an embeded adobe.jpg/.html file) is only visible on my mac.
    {<embed src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width=850 height=1200></embed>}
    (is my HTML code correct for embeding a page within a table)?
    What throws me is why can I go to the URL with Safari on my mac and see the whole page, links and all but PC's can't see the .html file? And if I try to email myself the contents of the page it shows up blank even on my mac....below is the code to my page and my .html file> if that helps.....THANKS IN ADVANCE ANYONE!!!!
    http://www.todaysipnchat.sipnchat.ca/table.html >>>:(
    <!-- BOF: ./personal-templates/show.body -->
    <!-- BOF: ./personal-templates/simple/generic/show -->
    <!-- BOF: ./personal-templates/rtl.html -->
    <!-- Locale=enUS_ISO88591 -->
    <!-- EOF: ./personal-templates/rtl.html -->
    <!-- BOF: ./personal-templates/simple/generic/functions -->
    <!-- BOF: ./personal-templates/simple/generic/navbar --><!-- EOF: ./personal-templates/simple/generic/navbar -->
    <!-- EOF: ./personal-templates/simple/generic/functions -->
    <!-- EOF: ./personal-templates/simple/generic/show -->
    <!-- BOF: ./personal-templates/simple/generic/images -->
    <!-- EOF: ./personal-templates/simple/generic/images -->
    <!-- BOF: ./personal-templates/simple/personal/other/l15.settings.init -->
    <!-- EOF: ./personal-templates/simple/personal/other/l15.settings.init -->
    <!-- BOF: ./personal-templates/simple/personal/layout/l15.wait -->
    <!-- EOF: ./personal-templates/simple/personal/layout/l15.wait -->
    <html>
    <head>
    <meta name="description" content="">
    <meta name="Keywords" content="">
    <!-- personal -->
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <meta name="Generator" content="">
    <!-- BOF: ./personal-templates/simple/themes.show -->
    <!-- EOF: ./personal-templates/simple/themes.show -->
    <!--<BASE HREF="http://d8669406.he103.hostexcellence.com/table.html">-->
    <title>Page 1</title></head>
    <body bgcolor="#FFFFFF"
    text="#336633"
    leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0"
    onLoad=""
    link="#000000"
    vlink="#000000"
    alink="#000000"
    <div class="jive-quote">
    <!-- BOF: ./personal-templates/simple/personal/layout/l15.layout -->
    <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td height="101">
    <table dir="LTR" border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr>
    <td align="left" width="492"></td>
    <td align="right" valign="middle" width="100%" background="widgets/gen_1.1.gif" height="79"></td>
    </tr>
    <tr>
    <td colspan="2" width="100%" bgcolor="#336633" align="left" height="16">
    </td>
    </tr>
    <tr><td colspan="2" bgcolor="#FFFFFF" height="2"></td></tr>
    <tr><td colspan="2" bgcolor="#336633" height="4"></td></tr>
    </table>
    </td>
    </tr>
    <tr>
    <td valign="top" width="100%" height="80%">
    <!-- BOF: ./personal-templates/simple/personal/table/html -->
    <table align="left" cellspacing="0">
    <tr> <td colspan=2 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    Sorry Under Construction...Please return in a few [email protected]
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td>
    </tr>
    <tr> <td colspan=1 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    <embed src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width=850 height=1200></embed>
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td>
    <td colspan=1 rowspan=1 valign="top"><!-- BOF: ./personal-templates/simple/personal/table/cell/html -->
    <embed src="http://www.visionblazer.com/xp/users/mickey/movies/project1.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project2.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project3.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed><embed src="http://www.visionblazer.com/xp/users/mickey/movies/project4.swf"
    quality=high width=336 height=280
    swliveconnect = false TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1ProdVersion=ShockwaveFlash">
    </embed>
    <!-- EOF: ./personal-templates/simple/personal/table/cell/html -->
    </td> </tr>
    </table>
    <!-- EOF: ./personal-templates/simple/personal/table/html -->
    <center>
    <nobr>|Today's Sip'n'Chat Online!|</nobr>
    <nobr>|Page 1|</nobr>
    <nobr>|Page 2|</nobr>
    <nobr>|Page 3|</nobr>
    <nobr>|Page 4|</nobr>
    <nobr>|Page 5|</nobr>
    <nobr>|Page 6|</nobr>
    <nobr>|Page 7|</nobr>
    <nobr>|Page 8|</nobr>
    <nobr>|Page 9|</nobr>
    <nobr>|Page 10|</nobr>
    <nobr>|Page 11|</nobr>
    <nobr>|Page 12|</nobr>
    <nobr>|Home|</nobr>
    <nobr>|Archives|</nobr>
    </center>
    <center><table border="0" cellpadding="0" cellspacing="3"><tr><td align="center">
    MtM 2006
    </td></tr></table></center>
    </td>
    </tr>
    <tr>
    <td>
    <table border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr><td bgcolor="#336633" height="3"></td></tr>
    <tr><td align="right" valign="middle" background="widgets/gen_1.1.gif"> </td></tr>
    </table>
    </td>
    </tr>
    </table>
    <!-- EOF: ./personal-templates/simple/personal/layout/l15.layout -->
    <!-- BOF: ./personal-templates/simple/themes.show.body -->
    <!-- EOF: ./personal-templates/simple/themes.show.body -->
    </body>
    <!-- BOF: ./personal-templates/simple/themes.show.end -->
    <!-- EOF: ./personal-templates/simple/themes.show.end -->
    </html>
    <!-- EOF: ./personal-templates/show.body -->
    AND NOW THE .html file>>>>
    <html>
    <head>
    <title>page109_0106</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (page109_0106.jpg) -->
    <table id="Table_01" width="613" height="792" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td colspan="5">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="4">
    </td>
    <td rowspan="2">
    </td>
    <td colspan="3">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="3">
    </td>
    <td rowspan="2">
    </td>
    <td rowspan="3">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td rowspan="2">
    </td>
    <td>
    </td>
    </tr>
    <tr>
    <td>
    </td>
    <td>
    </td>
    </tr>
    </table>
    <!-- End ImageReady Slices -->
    </body>
    </html>

    THANK YOU!!! I am just learning how to cut and paste; someone just gave me this solution: <iframe src="http://www.todaysipnchat.sipnchat.ca/0901_06/page1_09_0106.html" width="750" height="800"></iframe>
    I'll give this a try next...I also discovered that my mac is set at 1440 X 900 (I'm new to Macs too) and I was going more on how things looked on my (only computer) when I should have been paying attention to settings for different Browsers. Now I need to figure out what are the best overall sizes and settings to set things at...any sugestions?
    What I have been doing is: taking a .pdf sent to me originally made in Pagemaker Pro 7 --I open it in PhotoShop 8.5 X 11 300dpi I reduce to 72 dpi save for web in slices with images and HTML producing for me a 612 x 792 pixel page... I have a basic 2 col x 2 row table page produced on my hosting server(Site Studio) -in one of three cells I place the header then below left the .html and in the other cell to it's right I place several 336 x 280 flash animations all with the <embed> tags....this obviouly hasn't worked too well...but 750 + 336 is just under 1100 so shouldn't that be ok over all for most of todays Browsers? I don't mind the scroll bar vertically appearing as it makes room for more banner ads down the side (I think).
    A PC opinion of http://www.todaysipnchat.sipnchat.ca/page109_0106.html would be appreciated anyone out there as I don't have one to check things outfirsthand.... Thanks again for all your support - people like me couldn't get off the ground without you!........MtM

  • How do I add to the HTML page containing an fla?

    Hi,
    My site has Flash Video that plays back in a Flash movie
    file.
    I want to put html text on the html page containing the Flash
    movie so that if a viewer doesn't have Flash, they can see a plain
    text link that sends them to a page with a Windows Media Player.
    When I attempt to add text to the html page containing the
    Flash movie, the text doesn't appear and my page changes background
    color.
    Where in the source code should I be adding my html text?
    Please indicate the insertion point below.
    Source code below or visit
    http://www.ocatillopictures.com/OcatilloFrames/Animation.html
    Thanks
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Janos-FlashPlayer</title>
    <script language="javascript">AC_FL_RunContent =
    0;</script>
    <script src="AC_RunActiveContent.js"
    language="javascript"></script>
    </head>
    <body bgcolor="#100068">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!--
    <p align="center"><font face="Wingdings 3" size="16"
    color="#80dbf9" letterSpacing="0.000000" kerning="1"><a
    href="
    http://www.ocatillopictures.com/FinalPages/Animation.html#Janos
    Video Anchor" target =
    "_self"><b>t</b></a><font
    face="Arial"><a href="
    http://www.ocatillopictures.com/FinalPages/Animation.html#Janos
    Video Anchor" target = "_self"><b>Return to
    Menu</b></a></font></font></p>
    <p align="center"><font face="Arial" size="16"
    color="#80dbf9" letterSpacing="0.000000" kerning="1"><a
    href="
    http://www.ocatillopictures.com/movie-pg/Janos-movie.html"
    target = "_self"><b>View Windows
    Media</b></a><font face="Wingdings 3"><a
    href="
    http://www.ocatillopictures.com/movie-pg/Janos-movie.html"
    target = "_self"><b>u</b></a><font
    face="Arial"><b>
    </b></font></font></font></p>
    -->
    <!-- saved from url=(0013)about:internet -->
    <script language="javascript">
    if (AC_FL_RunContent == 0) {
    alert("This page requires AC_RunActiveContent.js.");
    } else {
    AC_FL_RunContent(
    'codebase', '
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
    'width', '700',
    'height', '500',
    'src', 'Janos-FlashPlayer',
    'quality', 'high',
    'pluginspage', '
    http://www.macromedia.com/go/getflashplayer',
    'align', 'middle',
    'play', 'true',
    'loop', 'true',
    'scale', 'showall',
    'wmode', 'window',
    'devicefont', 'false',
    'id', 'Janos-FlashPlayer',
    'bgcolor', '#100068',
    'name', 'Janos-FlashPlayer',
    'menu', 'true',
    'allowFullScreen', 'false',
    'allowScriptAccess','sameDomain',
    'movie', 'Janos-FlashPlayer',
    'salign', ''
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    width="700" height="500" id="Janos-FlashPlayer" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="allowFullScreen" value="false" />
    <param name="movie" value="Janos-FlashPlayer.swf"
    /><param name="quality" value="high" /><param
    name="bgcolor" value="#100068" /> <embed
    src="Janos-FlashPlayer.swf" quality="high" bgcolor="#100068"
    width="700" height="500" name="Janos-FlashPlayer" align="middle"
    allowScriptAccess="sameDomain" allowFullScreen="false"
    type="application/x-shockwave-flash" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    />
    </object>
    </noscript>
    </body>
    </html>

    You have the text commented out. Remove the "<!--" before
    your text and the "-->" after the text and it will show.

  • How to embed a Video stored in KM repository on html page

    Hi All,
    I have a requirement to embed a video stored in KM repository on html page.
    My html page and related file referred in html code below (highlighted) are stored at following path in KM “root>documents>test” with the same name as mentioned in code.
    Code which I got from net for embedding an .flv file on html is mentioned below but how should I modify it to take files stored in KM.
    <html>
    <head>
    <title>Flash Test</title>
    </head>
    <body>
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="Jacksonville" name="movie" width="425" height="305" align="center" id="movie">
                               <param name="allowScriptAccess" value="sameDomain" >
                               <param name="movie" value="<b>player.swf</b>?file=<b>Radvan_001MEDWHI.flv</b>" >
                               <param name="menu" value="false" >
                               <param name="quality" value="high" >
                               <param name="scale" value="noborder" >
                               <param name="salign" value="lt" >
                               <param name="wmode" value="transparent" >
                               <param name="bgcolor" value="#000000" >
                               <embed src="<b>player.swf</b>" menu="false" quality="high" scale="noborder" salign="lt" wmode="transparent" bgcolor="#000000" width="425" height="305" swliveconnect=true id="movie" name="movie" align="left" allowscriptaccess="sameDomain" type="application/x-shockwave-flash" pluginspage="<b>install_flash_player_active_x.msi</b>" >
                             </object>
    </body>
    </html>
    Please guide me for the same.
    Regards,
    Madhvika

    Hi,
    I have stored all the files referred in code ( player.swf, install_flash_player_active_x.msi and Radvan_001MEDWHI.flv ) at root>documents >test folder in KM repository
    <u><i>Julian</i></u>
    My requirement is to know, what path i should give for the files highlighted with bold in my code as they are stored in KM .
    <i><u>
    Praveen</u></i>
    Can you please tell me how should I modify these lines in code (name of video file is Radvan_001MEDWHI.flv)
    <param name="movie" value="player.swf?file=Radvan_001MEDWHI.flv" >
    embed src="player.swf"
    pluginspage="install_flash_player_active_x.msi" >
    Regards,
    Madhvika

  • How to insert a Jquery slideshow to a template based html page?

    I would like to insert a simple jquery slideshow into an existing div in an html page which is linked to a template page. Do I add the js files and code to the template html or the child html where I want the slideshow? Do I need to divorce the page from the template? It seems that the js has to be put into the head from what I've read so far and this is not editable in a template child...
    lunairecollective.com/news.html is the page I wish to alter, currently there are very simple links with swap text of container. I would like to have a cyclic slideshow in the div to replace the current swap images and links.
    The website is in html4 transitional, and I'm using Dreamweaver cc
    Thanks for any help!

    Yes, there are editable areas in the child page as you saw from the website address. And I can see there are some editable elements in the head, though not all of it. Could you show me where I should insert the javascript code for a jQuery slideshow please? The relevant code follows:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/lunaire4_temp.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <meta name="description" content="The most recent review of Lunaire Collective printed in The Australian newspaper.">
    <meta name="keywords" content="review, The Australian, Whistler, Tom Green, Birtwistle secret theatre">
    <title>LUNAIRE COLLECTIVE: Reviews and photos of Lunaire Collective - News and Reviews</title>
    <!-- InstanceEndEditable -->
    <link href="desktop.css" rel="stylesheet" type="text/css">
    <script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
    <!-- InstanceBeginEditable name="head" -->
    <script type="text/javascript">
    function MM_setTextOfLayer(objId,x,newText) { //v9.0
      with (document) if (getElementById && ((obj=getElementById(objId))!=null))
        with (obj) innerHTML = unescape(newText);
    </script>
    <!-- InstanceEndEditable -->

Maybe you are looking for

  • How can I publish a project so that the link to embedded flv is not lost?

    When publishing an Adobe Captivate 3 project, the embedded flv file does not play. How can I publish a project so that the link to embedded flv is not lost?

  • Build index on olap's table

    Hi, I am on an OLAP application which has a table having millions of records, and the table doesn't have any index. When checking the data found one particular column has total less than 50 distinct values which likely to be a good candidate for buil

  • Clearing Status in Tcode-FPL9

    Hi, Requirement: When I view a contract account using FPL9 I am want to see the clearing status in left most column as it appears in FICO - open, cleared ect I have made necessary configuration in Tcode FQKPM. Please suggest.

  • Printing wirlessly, Windows 2000 to Airport and Bonjour not working

    My set-up is as follows: Airport Extreme with printer sharing on and my printer is listed. 5 year old iMac connected to Airport Extreme via ethernet and running 10.3.9. Printer Sharing, Personal File Sharing, Internet and Windows Sharing is on and th

  • CMS collector taking too long pauses due to fragmentation

    we are using Weblogic 10gR3 servers with JDK 160_23 for ODSI application and using CMS collector for garbage collection. But we are seeing ParNew (promotion failed) due to fragmentation and ending up CMS having more than 30 seconds stop the world pau