DOCTYPE in HTML pages.

          Hi,
          in weblogic510, the html pages created by a servlet (using HTMLKONA) contain
          the DOCTYPE as follows:
          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Draft//EN">
          Is it possible to change this to something like this?:
          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
          (or)
          <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
          "http://www.w3.org/TR/html4/loose.dtd">
          This is important because the IE6 renders pages strictly on the DOCTYPE declarations.
          I appreciate your help.
          

Yes, I wasn't very clear in my question, sorry.  When I created a page I was expecting to this code:
!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
That is what I am referring to.
Is that code even nessecary?

Similar Messages

  • Set DOCTYPE for a self rendered HTML page using cl_gui_html_viewer

    G'Day!
    I'm dealing with HTML in ABAP and i' stuck with a nasty little problem. Perhaps somebody know's the answer and can help me out. Thanks in advance. (I'm sorry for my poor english)
    My problem is:
    I am rendering a html page in abap and display ist using a cl_gui_html_viewer.
    Works fine.
    But now in need to set the right DOCTYPE for the rendered html page.
    If i add the DOCTYPE definition, my html page is not displayed, instead i get a display of the html-code??
    To break it down to the root:
    How can i add the DOCTYPE definition to a self-rendered html page?
    If i add the DOCTYPE definition as first element of my html table, the html code won't be interpreted.
    If i do not add the DOCTYPE defintion everything works fine.
    I need the DOCTYPE definition so that the browser won't get into quirks mode and interpretes the html tag's right.
    What i've done so far:
    (Dynpro, container, html_viewer)
    Load my JScripts (with load_mime_object)
    Load my CSS (with load_mime_object)
    Load my HTML:
    -- lt_html       TYPE w3htmltab
    ((--  APPEND  '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">'  TO ct_html.)) this line cause my trouble
    -- filled the itab with my html tags <html>....</html> (set right url for Jscript and CSS)
    -- Load my html table and get an URL CALL METHOD gr_labform_html->load_data
    -- Load the url CALL METHOD gr_labform_html->show_url

    I've "solved" my issue with a little workaround.
    I created an empty html page with an existing DOCTYPE def and an tag like <!MYDATA!>
    After that i filled 'l_merge_table TYPE swww_t_merge_table' with my tag and my html_data.
    Loaded the whole thing with CALL METHOD gr_labform_html->load_html_document and now the DOCTYPE is set fully correct!
    But i'm still interessted why i can't set the DOCTYPE directly? Anybody knows?
    Got the idea from: Re: How can I read color from frond-end PC

  • 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 -->

  • Strange behaviour when embedding HTML page in Air

    Hi,
    I'm trying to embedd a HTML page to a Air application.
    The HTML page has a simple Flex application (TestFlex4Project.mxml) with a button that changes one HTML element on the web page (TestFlex4Project.html) using ExternalInterface. If I run the Flex application using the HTML page it works just fine and when I click the button the HTML ellement is changed and the mouseover- and onclick events works. If I embedd the HTML page in an Air application the mouseover- and onclick events does not work any more. Why?
    If I use Aternative 1 in the HTML code (instead of using Aternative 2 in the HTML code where I'm editing the innerHTML property) the mouseover- and onclick events works when the HTML page is embeded in Air. Why?
    Even more strange is that if I remove the line [<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />] from the HTML page the Flex application dose not show at all when embedded in Air. Why?
    You can try the online sample here and the files here.
    The application looks like this:
    And if you click the button and click the upper most text you will recieve a message like this:
    But not when I use innerHTML and embedd the HTML page in Air. Can anyone please help me with this issue. Is it a bug or what am I doing wrong? I need to change some HTML elements using innerHTML.
    Thanks!!
    The code for TestFlex4Project.mxml is like this
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
    width="100%"
    height="100%">
    <fx:Script>
      <![CDATA[
       function buttonClickHandler(event:Event):void{
       ExternalInterface.call(" function(){SetHTML();}")
      ]]>
    </fx:Script>
    <s:HGroup verticalAlign="middle">
      <s:Button label="Edit HTML Element" click="buttonClickHandler(event)"/> 
    </s:HGroup>
    </s:Application>
    The code for TestFlex4Project.html is like this
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8"/>
    <title>Test Flex 4 Project</title>
    <meta name="description" content="" />
    <script src="js/swfobject.js"></script>
    <script>
      var flashvars = {
      var params = {
       menu: "false",
       scale: "noScale",
       allowFullscreen: "true",
       allowScriptAccess: "always",
       bgcolor: "",
       wmode: "direct" // can cause issues with FP settings & webcam
      var attributes = {
       id:"TestFlex4Project"
      swfobject.embedSWF(
       "TestFlex4Project.swf",
       "altContent", "100%", "100%", "10.0.0",
       "expressInstall.swf",
       flashvars, params, attributes);
       function Message(){
       alert("Message!")
    function SetHTML(){
       //Start Alternative 1
       NewHTML.innerHTML = "Dynamically changed text"
       NewHTML.style.cursor = "pointer"
       NewHTML.style.color = "#ff0000"
       NewHTML.onclick = function(){
        Message();
       NewHTML.onmouseover = function(){
        this.style.fontWeight = 700;
       //End Alternative 1
       //Start Alternative 2
       var HTMLStr='<p style="cursor:pointer; fontWeight:300; color:#ff0000" onClick = "Message()" onMouseOver = "this.style.fontWeight=700">Dynamically changed text</p>'
       NewHTML.outerHTML=HTMLStr
       //End Alternative 2
    </script>
    <style>
      html, body { height:100%; overflow:hidden; }
      body { margin:0; }
    </style>
    </head>
    <body id="Body">
    <p id="NewHTML">This text will change when you click the button!</p>
    <p style="cursor:pointer; fontWeight:'300'; color:#ff0000" onClick = "Message()" onmouseover = "this.style.fontWeight='700'">Default text</p>
    <div id="altContent">
      <p><a href="http://www.adobe.com/go/getflashplayer">
       <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
       </a>
      </p>
    </div>
    </body>
    </html>
    The code for the Airapplication is like this
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
    width="800"
    height="566">
    <mx:HTML id="HTMLObject" location="TestFlex4Project.html" width="100%" height="100%"/>
    </s:WindowedApplication>

    Hi,
    I'm trying to embedd a HTML page to a Air application.
    The HTML page has a simple Flex application (TestFlex4Project.mxml) with a button that changes one HTML element on the web page (TestFlex4Project.html) using ExternalInterface. If I run the Flex application using the HTML page it works just fine and when I click the button the HTML ellement is changed and the mouseover- and onclick events works. If I embedd the HTML page in an Air application the mouseover- and onclick events does not work any more. Why?
    If I use Aternative 1 in the HTML code (instead of using Aternative 2 in the HTML code where I'm editing the innerHTML property) the mouseover- and onclick events works when the HTML page is embeded in Air. Why?
    Even more strange is that if I remove the line [<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />] from the HTML page the Flex application dose not show at all when embedded in Air. Why?
    You can try the online sample here and the files here.
    The application looks like this:
    And if you click the button and click the upper most text you will recieve a message like this:
    But not when I use innerHTML and embedd the HTML page in Air. Can anyone please help me with this issue. Is it a bug or what am I doing wrong? I need to change some HTML elements using innerHTML.
    Thanks!!
    The code for TestFlex4Project.mxml is like this
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
        xmlns:s="library://ns.adobe.com/flex/spark"
    width="100%"
    height="100%">
    <fx:Script>
      <![CDATA[
       function buttonClickHandler(event:Event):void{
       ExternalInterface.call(" function(){SetHTML();}")
      ]]>
    </fx:Script>
    <s:HGroup verticalAlign="middle">
      <s:Button label="Edit HTML Element" click="buttonClickHandler(event)"/> 
    </s:HGroup>
    </s:Application>
    The code for TestFlex4Project.html is like this
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="utf-8"/>
    <title>Test Flex 4 Project</title>
    <meta name="description" content="" />
    <script src="js/swfobject.js"></script>
    <script>
      var flashvars = {
      var params = {
       menu: "false",
       scale: "noScale",
       allowFullscreen: "true",
       allowScriptAccess: "always",
       bgcolor: "",
       wmode: "direct" // can cause issues with FP settings & webcam
      var attributes = {
       id:"TestFlex4Project"
      swfobject.embedSWF(
       "TestFlex4Project.swf",
       "altContent", "100%", "100%", "10.0.0",
       "expressInstall.swf",
       flashvars, params, attributes);
       function Message(){
       alert("Message!")
    function SetHTML(){
       //Start Alternative 1
       NewHTML.innerHTML = "Dynamically changed text"
       NewHTML.style.cursor = "pointer"
       NewHTML.style.color = "#ff0000"
       NewHTML.onclick = function(){
        Message();
       NewHTML.onmouseover = function(){
        this.style.fontWeight = 700;
       //End Alternative 1
       //Start Alternative 2
       var HTMLStr='<p style="cursor:pointer; fontWeight:300; color:#ff0000" onClick = "Message()" onMouseOver = "this.style.fontWeight=700">Dynamically changed text</p>'
       NewHTML.outerHTML=HTMLStr
       //End Alternative 2
    </script>
    <style>
      html, body { height:100%; overflow:hidden; }
      body { margin:0; }
    </style>
    </head>
    <body id="Body">
    <p id="NewHTML">This text will change when you click the button!</p>
    <p style="cursor:pointer; fontWeight:'300'; color:#ff0000" onClick = "Message()" onmouseover = "this.style.fontWeight='700'">Default text</p>
    <div id="altContent">
      <p><a href="http://www.adobe.com/go/getflashplayer">
       <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
       </a>
      </p>
    </div>
    </body>
    </html>
    The code for the Airapplication is like this
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication
    xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
        xmlns:mx="library://ns.adobe.com/flex/mx"
    width="800"
    height="566">
    <mx:HTML id="HTMLObject" location="TestFlex4Project.html" width="100%" height="100%"/>
    </s:WindowedApplication>

  • O, Is there a way to fix grey ghosted template code on a html page?

    Hello, Is there a way to fix grey ghosted template wrong placed code on a html page in DWCS6? I have about 15 pages out of about 900 that need the same fix. Only one template is for these 15 pages and it  looks fine but won't attach to pages because of the error on line1.
    The first line below is the error problem and also below is the error when I try to attach the Template.
    (error problem)  <!-- InstanceBegin template="/Templates/Cotton_Silk.dwt" codeOutsideHTMLIsLocked="false" --><!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 href="css/single.css" rel="stylesheet" type="text/css" />
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <head>
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <meta name="title" content="Luna Luz Silk Cotton and Cotton Lycra Button Front Dress  - TodaysClothing.com" />
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXX
    (error)    not updated, error in template or instance file

    Hello, Is there a way to fix grey ghosted template wrong placed code on a html page in DWCS6? I have about 15 pages out of about 900 that need the same fix. Only one template is for these 15 pages and it  looks fine but won't attach to pages because of the error on line1.
    The first line below is the error problem and also below is the error when I try to attach the Template.
    (error problem)  <!-- InstanceBegin template="/Templates/Cotton_Silk.dwt" codeOutsideHTMLIsLocked="false" --><!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 href="css/single.css" rel="stylesheet" type="text/css" />
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <link href="SpryAssets/SpryTooltip.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryTooltip.js" type="text/javascript"></script>
    <head>
    <link href="tooltip.css" rel="stylesheet" type="text/css" />
    <meta name="title" content="Luna Luz Silk Cotton and Cotton Lycra Button Front Dress  - TodaysClothing.com" />
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX XXXXXXXXXXXXXXXXXX
    (error)    not updated, error in template or instance file
    in Dreamweaver support forum • Reply • Like Show 0 Likes(0)

  • Best way to publish Edge files into html page?

    Ok,
    So im looking for the best way to add my edge files into my html page.
    I want to make it easy to integrate edge with dreamweaver html files, e.g if I change anything in my edge project and publish it I dont need to transfer the html over to my page again.
    I thought the best way to do this was put all the edge files into there own folder within my sites_files folder and then use iframe. However when I did this, I can not figure out how to use CSS to style the iframe.
    this is what I have tried    
    <iframe id="test" src="mackbyte1_files/animation/power-out-setup/power-out-preview.html" frameborder="0" height="400px" width="940px" scrolling="no" >Your browser does not support this animation. Get a real browses made for the 21st century! We recommend Chrome or Firefox...</iframe>
    I have tried using a ID for the iframe which didnt work.
    Without the iframe my animation is centred in the screen from the CSS with edge html e.g
    .edgeLoad-power-out-preview {
              visibility:hidden;
                        #Stage {
              height: 400px;
              width: 940px;
              margin-left: auto;
              margin-right: auto;
              border-radius: 7px;
              background-color: #CCC;
    I have given up and just manully copy/paste the html into the page I want it in. this works fine however, as stated if i make changes to my animation i have to amend the html which is a little annyoying.
    Is there a fix?
    Thanks in advanced

    joel_pau wrote:
    Hi,
    Can you copy and paste your html code from "mackbyte1_files/animation/power-out-setup/power-out-preview.html" ?
    hey mate,
    this is it
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>p-o-preview</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="power-out-setup_edgePreload.js"></script>
        <style>
            .edgeLoad-power-out-preview { visibility:hidden; }
                        #Stage {
              height: 400px;
              width: 940px;
              margin-left: auto;
              margin-right: auto;
              border-radius: 7px;
              margin-top: 20px;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
              <div id="Stage" class="power-out-preview">
            <div id="Stage_pw-point" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb-hub-pluged2" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb-hub-unpluged2" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb-for-hub" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb-hub-pluged-unlit" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb-cable" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_imac" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_usb_icon-power-out" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_Lightning" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_imac-off" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_shutdown-page" class="edgeLoad-power-out-preview"></div>
            <div id="Stage_shutdown-page-30" style="display:none;"></div>
            <div id="Stage_imac-black-off" style="display:none;"></div>
            <div id="Stage_RoundRect" style="display:none;"></div>
            <div id="Stage_play-btn" style="display:none;"></div>
        </div>
    </body>
    </html>

  • How to centre the html pages & How to set the Index as Homepage (just upgraded to CS5 and am lost)

    Hi
    Ive just upgraded to CS5 and am a bit lost!!
    1st Problem
    I updated our website design (which was previously designed in fireworks using CS3) using Fireworks CS5 and exported the images etc as html and loaded into the website folder.... however now Im in dreamweaver and ive tried centring the page, but when I go into live view, its aligned on the left....
    My method.... I open the page, I select the 'table' then in the property box, under Align, i click 'Centre'.  This was how i centred in the older version. 
    2nd Problem
    Where do you set the homepage??  In the version ive been using up until recently, in the 'Local view' file manager (on the right) i would simply highlight the 'index.html' page, then right-click and select 'set as homepage'..... that seems to have disappeared in the newer version.  How do I do this now???
    All help is very much appreciated!
    Thanks
    Amanda

    Oh No! But its worked perfectly in the past.  Had no idea about fireworks not being able to used.... whoops! 
    The code is:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Junction Park Fete : Australiana Home</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <style type="text/css">td img {display: block;}</style>
    <!--Fireworks CS5 Dreamweaver CS5 target.  Created Mon Jan 31 19:43:33 GMT+1000 (EST) 2011-->
    <script language="JavaScript1.2" type="text/javascript">
    <!--
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
    var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])?args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) { img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr) for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    //-->
    </script>
    </head>
    <body bgcolor="#ffffff" onload="MM_preloadImages('Images/index_r4_c4_s2.jpg','Images/index_r4_c4_s4.jpg','Images/ index_r4_c4_s3.jpg','Images/index_r4_c6_s2.jpg','Images/index_r4_c6_s4.jpg','Images/index_ r4_c6_s3.jpg','Images/index_r4_c10_s2.jpg','Images/index_r4_c10_s4.jpg','Images/index_r4_c 10_s3.jpg','Images/index_r4_c13_s2.jpg','Images/index_r4_c13_s4.jpg','Images/index_r4_c13_ s3.jpg','Images/index_r4_c15_s2.jpg','Images/index_r4_c15_s4.jpg','Images/index_r4_c15_s3. jpg','Images/index_r4_c18_s2.jpg','Images/index_r4_c18_s4.jpg','Images/index_r4_c18_s3.jpg ','Images/index_r4_c21_s2.jpg','Images/index_r4_c21_s4.jpg','Images/index_r4_c21_s3.jpg',' Images/index_r4_c24_s2.jpg','Images/index_r4_c24_s4.jpg','Images/index_r4_c24_s3.jpg','Ima ges/index_r4_c26_s2.jpg','Images/index_r4_c26_s4.jpg','Images/index_r4_c26_s3.jpg');">
    <table width="965" border="0" align="center" cellpadding="0" cellspacing="0" style="display: inline-table;">
    <!-- fwtable fwsrc="Template_Index.png" fwpage="Page 1" fwbase="index.jpg" fwstyle="Dreamweaver" fwdocid = "1559752332" fwnested="0" -->
      <tr>
       <td><img src="Images/spacer.gif" width="8" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="13" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="14" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="43" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="48" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="11" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="23" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="38" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="51" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="38" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="58" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="7" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="46" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="65" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="38" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="8" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="57" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="40" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="8" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="57" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="54" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="43" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="11" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="42" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="49" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="75" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="20" height="1" border="0" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="1" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="27"><img name="Index_Banner_s1" src="Images/Index_Banner_s1.jpg" width="965" height="138" border="0" id="Index_Banner_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="138" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="27"><img name="Index_TopBorder_s1" src="Images/Index_TopBorder_s1.jpg" width="965" height="21" border="0" id="Index_TopBorder_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="21" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="27"><img name="index_r3_c1_s1" src="Images/index_r3_c1_s1.jpg" width="965" height="28" border="0" id="index_r3_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="28" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="3"><img name="index_r4_c1_s1" src="Images/index_r4_c1_s1.jpg" width="35" height="11" border="0" id="index_r4_c1_s1" alt="" /></td>
       <td><a href="index.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c4_s1','Images/index_r4_c4_s2.jpg','Images/index _r4_c4_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c4_s1','Images/index_r4_c4_s3.jpg',1);"><i mg name="index_r4_c4_s1" src="Images/index_r4_c4_s1.jpg" width="43" height="11" border="0" id="index_r4_c4_s1" alt="" /></a></td>
       <td><img name="index_r4_c5_s1" src="Images/index_r4_c5_s1.jpg" width="48" height="11" border="0" id="index_r4_c5_s1" alt="" /></td>
       <td colspan="3"><a href="sponsors.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c6_s1','Images/index_r4_c6_s2.jpg','Images/index _r4_c6_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c6_s1','Images/index_r4_c6_s3.jpg',1);"><i mg name="index_r4_c6_s1" src="Images/index_r4_c6_s1.jpg" width="72" height="11" border="0" id="index_r4_c6_s1" alt="" /></a></td>
       <td><img name="index_r4_c9_s1" src="Images/index_r4_c9_s1.jpg" width="51" height="11" border="0" id="index_r4_c9_s1" alt="" /></td>
       <td><a href="rides.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c10_s1','Images/index_r4_c10_s2.jpg','Images/ind ex_r4_c10_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c10_s1','Images/index_r4_c10_s3.jpg',1);"> <img name="index_r4_c10_s1" src="Images/index_r4_c10_s1.jpg" width="38" height="11" border="0" id="index_r4_c10_s1" alt="" /></a></td>
       <td colspan="2"><img name="index_r4_c11_s1" src="Images/index_r4_c11_s1.jpg" width="65" height="11" border="0" id="index_r4_c11_s1" alt="" /></td>
       <td><a href="stalls.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c13_s1','Images/index_r4_c13_s2.jpg','Images/ind ex_r4_c13_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c13_s1','Images/index_r4_c13_s3.jpg',1);"> <img name="index_r4_c13_s1" src="Images/index_r4_c13_s1.jpg" width="46" height="11" border="0" id="index_r4_c13_s1" alt="" /></a></td>
       <td><img name="index_r4_c14_s1" src="Images/index_r4_c14_s1.jpg" width="65" height="11" border="0" id="index_r4_c14_s1" alt="" /></td>
       <td><a href="food.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c15_s1','Images/index_r4_c15_s2.jpg','Images/ind ex_r4_c15_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c15_s1','Images/index_r4_c15_s3.jpg',1);"> <img name="index_r4_c15_s1" src="Images/index_r4_c15_s1.jpg" width="38" height="11" border="0" id="index_r4_c15_s1" alt="" /></a></td>
       <td colspan="2"><img name="index_r4_c16_s1" src="Images/index_r4_c16_s1.jpg" width="65" height="11" border="0" id="index_r4_c16_s1" alt="" /></td>
       <td colspan="2"><a href="music.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c18_s1','Images/index_r4_c18_s2.jpg','Images/ind ex_r4_c18_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c18_s1','Images/index_r4_c18_s3.jpg',1);"> <img name="index_r4_c18_s1" src="Images/index_r4_c18_s1.jpg" width="48" height="11" border="0" id="index_r4_c18_s1" alt="" /></a></td>
       <td><img name="index_r4_c20_s1" src="Images/index_r4_c20_s1.jpg" width="57" height="11" border="0" id="index_r4_c20_s1" alt="" /></td>
       <td><a href="raffles.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c21_s1','Images/index_r4_c21_s2.jpg','Images/ind ex_r4_c21_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c21_s1','Images/index_r4_c21_s3.jpg',1);"> <img name="index_r4_c21_s1" src="Images/index_r4_c21_s1.jpg" width="54" height="11" border="0" id="index_r4_c21_s1" alt="" /></a></td>
       <td colspan="2"><img name="index_r4_c22_s1" src="Images/index_r4_c22_s1.jpg" width="54" height="11" border="0" id="index_r4_c22_s1" alt="" /></td>
       <td><a href="races.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c24_s1','Images/index_r4_c24_s2.jpg','Images/ind ex_r4_c24_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c24_s1','Images/index_r4_c24_s3.jpg',1);"> <img name="index_r4_c24_s1" src="Images/index_r4_c24_s1.jpg" width="42" height="11" border="0" id="index_r4_c24_s1" alt="" /></a></td>
       <td><img name="index_r4_c25_s1" src="Images/index_r4_c25_s1.jpg" width="49" height="11" border="0" id="index_r4_c25_s1" alt="" /></td>
       <td><a href="contacts.htm" onmouseout="MM_nbGroup('out');" onmouseover="MM_nbGroup('over','index_r4_c26_s1','Images/index_r4_c26_s2.jpg','Images/ind ex_r4_c26_s4.jpg',1);" onclick="MM_nbGroup('down','navbar1','index_r4_c26_s1','Images/index_r4_c26_s3.jpg',1);"> <img name="index_r4_c26_s1" src="Images/index_r4_c26_s1.jpg" width="75" height="11" border="0" id="index_r4_c26_s1" alt="" /></a></td>
       <td><img name="index_r4_c27_s1" src="Images/index_r4_c27_s1.jpg" width="20" height="11" border="0" id="index_r4_c27_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="11" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="27"><img name="index_r5_c1_s1" src="Images/index_r5_c1_s1.jpg" width="965" height="24" border="0" id="index_r5_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="24" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="27"><img name="Index_BottomBorder_s1" src="Images/Index_BottomBorder_s1.jpg" width="965" height="22" border="0" id="Index_BottomBorder_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="22" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="7"><img name="index_r7_c1_s1" src="Images/index_r7_c1_s1.jpg" width="160" height="68" border="0" id="index_r7_c1_s1" alt="" /></td>
       <td rowspan="9" colspan="20"><img name="index_r7_c8_s1" src="Images/index_r7_c8_s1.jpg" width="805" height="448" border="0" id="index_r7_c8_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="68" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="7"><img name="index_r8_c1_s1" src="Images/index_r8_c1_s1.jpg" width="160" height="19" border="0" id="index_r8_c1_s1" usemap="#m_index_r8_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="19" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="7"><img name="index_r9_c1_s1" src="Images/index_r9_c1_s1.jpg" width="160" height="30" border="0" id="index_r9_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="30" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="7"><img name="index_r10_c1_s1" src="Images/index_r10_c1_s1.jpg" width="160" height="15" border="0" id="index_r10_c1_s1" usemap="#m_index_r10_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="15" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="7"><img name="index_r11_c1_s1" src="Images/index_r11_c1_s1.jpg" width="160" height="122" border="0" id="index_r11_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="122" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="3"><img name="index_r12_c1_s1" src="Images/index_r12_c1_s1.jpg" width="8" height="42" border="0" id="index_r12_c1_s1" alt="" /></td>
       <td colspan="5"><img name="index_r12_c2_s1" src="Images/index_r12_c2_s1.jpg" width="129" height="18" border="0" id="index_r12_c2_s1" usemap="#m_index_r12_c2_s1" alt="" /></td>
       <td rowspan="3"><img name="index_r12_c7_s1" src="Images/index_r12_c7_s1.jpg" width="23" height="42" border="0" id="index_r12_c7_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="18" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="5"><img name="index_r13_c2_s1" src="Images/index_r13_c2_s1.jpg" width="129" height="7" border="0" id="index_r13_c2_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="7" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="5"><img name="index_r14_c2_s1" src="Images/index_r14_c2_s1.jpg" width="129" height="17" border="0" id="index_r14_c2_s1" usemap="#m_index_r14_c2_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="17" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="5" colspan="7"><img name="index_r15_c1_s1" src="Images/index_r15_c1_s1.jpg" width="160" height="259" border="0" id="index_r15_c1_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="152" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="3" colspan="4"><img name="index_r16_c8_s1" src="Images/index_r16_c8_s1.jpg" width="185" height="46" border="0" id="index_r16_c8_s1" alt="" /></td>
       <td rowspan="2" colspan="5"><img name="index_r16_c12_s1" src="Images/index_r16_c12_s1.jpg" width="164" height="30" border="0" id="index_r16_c12_s1" alt="" /></td>
       <td rowspan="3" colspan="2"><img name="index_r16_c17_s1" src="Images/index_r16_c17_s1.jpg" width="97" height="46" border="0" id="index_r16_c17_s1" alt="" /></td>
       <td colspan="4"><img name="index_r16_c19_s1" src="Images/index_r16_c19_s1.jpg" width="162" height="16" border="0" id="index_r16_c19_s1" usemap="#m_index_r16_c19_s1" alt="" /></td>
       <td rowspan="3" colspan="5"><img name="index_r16_c23_s1" src="Images/index_r16_c23_s1.jpg" width="197" height="46" border="0" id="index_r16_c23_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="16" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="2" colspan="4"><img name="index_r17_c19_s1" src="Images/index_r17_c19_s1.jpg" width="162" height="30" border="0" id="index_r17_c19_s1" usemap="#m_index_r17_c19_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="14" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="5"><img name="index_r18_c12_s1" src="Images/index_r18_c12_s1.jpg" width="164" height="16" border="0" id="index_r18_c12_s1" usemap="#m_index_r18_c12_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="16" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="3" colspan="20"><img name="index_r19_c8_s1" src="Images/index_r19_c8_s1.jpg" width="805" height="213" border="0" id="index_r19_c8_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="61" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="2" colspan="2"><img name="index_r20_c1_s1" src="Images/index_r20_c1_s1.jpg" width="21" height="152" border="0" id="index_r20_c1_s1" alt="" /></td>
       <td colspan="4"><img name="index_r20_c3_s1" src="Images/index_r20_c3_s1.jpg" width="116" height="124" border="0" id="index_r20_c3_s1" usemap="#m_index_r20_c3_s1" alt="" /></td>
       <td rowspan="2"><img name="index_r20_c7_s1" src="Images/index_r20_c7_s1.jpg" width="23" height="152" border="0" id="index_r20_c7_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="124" border="0" alt="" /></td>
      </tr>
      <tr>
       <td colspan="4"><img name="index_r21_c3_s1" src="Images/index_r21_c3_s1.jpg" width="116" height="28" border="0" id="index_r21_c3_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="28" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="3" colspan="7"><img name="index_r22_c1_s1" src="Images/index_r22_c1_s1.jpg" width="160" height="249" border="0" id="index_r22_c1_s1" alt="" /></td>
       <td colspan="20"><img name="index_r22_c8_s1" src="Images/index_r22_c8_s1.jpg" width="805" height="97" border="0" id="index_r22_c8_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="97" border="0" alt="" /></td>
      </tr>
      <tr>
       <td rowspan="2" colspan="2"><img name="index_r23_c8_s1" src="Images/index_r23_c8_s1.jpg" width="89" height="152" border="0" id="index_r23_c8_s1" alt="" /></td>
       <td><img name="index_r23_c10_s1" src="Images/index_r23_c10_s1.jpg" width="38" height="20" border="0" id="index_r23_c10_s1" usemap="#m_index_r23_c10_s1" alt="" /></td>
       <td rowspan="2" colspan="17"><img name="index_r23_c11_s1" src="Images/index_r23_c11_s1.jpg" width="678" height="152" border="0" id="index_r23_c11_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="20" border="0" alt="" /></td>
      </tr>
      <tr>
       <td><img name="index_r24_c10_s1" src="Images/index_r24_c10_s1.jpg" width="38" height="132" border="0" id="index_r24_c10_s1" alt="" /></td>
       <td><img src="Images/spacer.gif" width="1" height="132" border="0" alt="" /></td>
      </tr>
    </table>
    <map name="m_index_r8_c1_s1" id="m_index_r8_c1_s1">
    <area shape="rect" coords="22,0,137,19" href="http://www.harveynorman.com.au/" alt="" />
    </map>
    <map name="m_index_r10_c1_s1" id="m_index_r10_c1_s1">
    <area shape="rect" coords="18,0,136,15" href="http://www.sovereignhomes.com.au/" alt="" />
    </map>
    <map name="m_index_r12_c2_s1" id="m_index_r12_c2_s1">
    <area shape="rect" coords="0,0,129,18" href="Publications/JPSS_FeteNewsletter_Issue01.pdf" alt="" />
    </map>
    <map name="m_index_r14_c2_s1" id="m_index_r14_c2_s1">
    <area shape="rect" coords="0,0,129,17" href="Publications/JPSS_Newsletter_Issue02.pdf" alt="" />
    </map>
    <map name="m_index_r16_c19_s1" id="m_index_r16_c19_s1">
    <area shape="rect" coords="0,0,162,17" href="mailto: [email protected]" alt="" />
    </map>
    <map name="m_index_r17_c19_s1" id="m_index_r17_c19_s1">
    <area shape="rect" coords="0,-16,162,1" href="mailto: [email protected]" alt="" />
    </map>
    <map name="m_index_r18_c12_s1" id="m_index_r18_c12_s1">
    <area shape="rect" coords="0,0,164,16" href="mailto: [email protected]" alt="" />
    </map>
    <map name="m_index_r20_c3_s1" id="m_index_r20_c3_s1">
    <area shape="rect" coords="0,0,116,124" href="http://www.rantan.com.au/" alt="" />
    </map>
    <map name="m_index_r23_c10_s1" id="m_index_r23_c10_s1">
    <area shape="rect" coords="0,0,38,20" href="javascript:;" alt="" />
    </map>
    </body>
    </html>

  • Script adding on to my flash on html page

    errors in page. this script is getting into my html page with
    the flash im adding into. my page does not show in the internet
    after upload. www.aurorabiomed.html/flashretreat.html. everytime i
    add a flash file into my webpage this script is added and my page
    has errors. it was not happening before i reformatted my harddrive
    and reinstalled dw8
    !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=iso-8859-1" />
    <title>Untitled Document</title>
    <script src="../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    </head>
    <body>
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','120','height','600','src','assets/retreat07','quality','high','pluginspage','http://w ww.macromedia.com/go/getflashplayer','movie','assets/retreat07'
    ); //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=7,0,19,0"
    width="120" height="600">
    <param name="movie" value="assets/retreat07.swf" />
    <param name="quality" value="high" />
    <embed src="assets/retreat07.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="120"
    height="600"></embed>
    </object></noscript>
    </body>
    </html>

    What is the location of this page in the folder structure you
    show?
    > is there something wrong with the source
    > path of the script?
    If you are getting the wrong path to the linked file, then
    your local site
    is not properly defined.
    > - mainwebsite_html folder
    > + assets folder
    > flashretreat.html
    > - scripts folder
    > - templates
    If the page you show below is in fact flashretreat.html, then
    the link that
    DW adds is correct - you have to go up one folder level, find
    the Scripts
    folder (I'm assuming you made a type in showing lower case
    above) and then
    find the required script in that folder -
    <script src="../Scripts/AC_RunActiveContent.js"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "web_rookie" <[email protected]> wrote in
    message
    news:[email protected]...
    > in the preferences window, under code rewriting i
    disabled active content
    > for
    > 1. insert using browser safe scripts &
    > 2. convert tags to scripts on file open.
    >
    > my page works fine now. if i enable this options and the
    scripts folder is
    > also uploaded my page has errors. is there something
    wrong with the
    > source
    > path of the script? i tried transfering the folder
    inside my webpage
    > folder
    > together with the html pages and assets folder rather
    than at the root
    > folder
    > but still gives me the same error.
    >
    > - Site - Biomed (C:Biomed)
    > - mainwebsite_html folder
    > + assets folder
    > flashretreat.html
    > - scripts folder
    > - templates
    >
    > <!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=iso-8859-1" />
    > <title>Untitled Document</title>
    > <script src="../Scripts/AC_RunActiveContent.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <script type="text/javascript">
    > AC_FL_RunContent(
    > 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#
    >
    version=7,0,19,0','width','120','height','600','src','assets/retreat07','quality
    > ','high','pluginspage','
    http://www.macromedia.com/go/getflashplayer','movie','as
    > sets/retreat07' ); //end AC code
    > </script><noscript><object
    > classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    > codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
    > rsion=7,0,19,0" width="120" height="600">
    > <param name="movie" value="assets/retreat07.swf"
    />
    > <param name="quality" value="high" />
    > <embed src="assets/retreat07.swf" quality="high"
    > pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    > type="application/x-shockwave-flash" width="120"
    height="600"></embed>
    > </object></noscript>
    > </body>
    > </html>
    >
    Text
    Text
    >

  • Calling a servlet in a HTML page

    hi evryone,
    I'm new to servlets so i'm trying to create some simple applications to understand how it all works. The thing i'm trying to do is calling a servlet in a HTML page. I've already installed a Tomcat web server and I've created a servlet called Hello.
    public class Hello extends HttpServlet{
         public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException{
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              String name = req.getParameter("name");
              out.println("<HTML>");
              out.println("<HEAD><TITLE>Hello, " + name + "</TITLE></HEAD>" );
              out.println("<BODY>");
              out.println("Hello, " + name);
              out.println("</BODY></HTML>");
         public String getServletInfo(){
              return "testing servlet OK";
    }In my HTML page I've written the follwing code:
    <HTML>
    <HEAD>
    <TITLE>Just say hello</TITLE>
    </HEAD>
    <BODY>
    <FORM METHOD=POST ACTION="../servlet/Hello">
    What's your name?
    <INPUT TYPE=TEXT NAME="name"><P>
    <INPUT TYPE=SUBMIT>
    </FORM>
    </BODY>
    </HTML>After running this HTML I get a text box and I thing I'm trying to do is, when I click on the button, the servlet will be loaded. However, the servlet can't be found and instead I get an error:
    type Status report
    message /servlet/Hello
    description The requested resource (/servlet/Hello) is not available.
    I suppose both file are in their approriate directories, but my class file still has the class extension. Do I need to change this? I hope that someone can help me.
    Thanks in advance!

    hi,
    the servlet wasn't in a package, so I changed that. It seems that I get an other error now:
    HTTP Status 503 - Servlet servlet/Hello is currently unavailable
    type Status report
    message Servlet servlet/Hello is currently unavailable
    description The requested service (Servlet servlet/Hello is currently unavailable) is not currently available.
    I still don't know what I may have forgotten, so i'm gonna resume what i have done till now.
    the servlet: (Hello.class)
    package servlet;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class Hello extends HttpServlet{
         public void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException{
              res.setContentType("text/html");
              PrintWriter out = res.getWriter();
              String name = req.getParameter("name");
              out.println("<HTML>");
              out.println("<HEAD><TITLE>Hello, " + name + "</TITLE></HEAD>" );
              out.println("<BODY>");
              out.println("Hello, " + name);
              out.println("</BODY></HTML>");
         public String getServletInfo(){
              return "test servlet OK.";
    }the HTML page (testServlet.html)
    <HTML>
    <HEAD>
    <TITLE>Just say hello</TITLE>
    </HEAD>
    <BODY>
    <FORM METHOD=GET ACTION="../servlet/Hello">
    What's yoir name?
    <INPUT TYPE=TEXT NAME="name"><P>
    <INPUT TYPE=SUBMIT>
    </FORM>
    </BODY>
    </HTML>the web.xml file
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
      <display-name>Welcome to Tomcat</display-name>
      <description>
         Welcome to Tomcat
      </description>
    <servlet>
    <servlet-name>servlet/Hello</servlet-name>
    <servlet-class>servlet/Hello</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>servlet/Hello</servlet-name>
    <url-pattern>/servlet/Hello</url-pattern>
    </servlet-mapping>
    </web-app>paths of these files:
    - Hello.class => D:\Tomcat 4.1\webapps\ROOT\servlet
    - testServlet.html => D:\Tomcat 4.1\webapps\ROOT\more
    ( - web.xml => D:\Tomcat 4.1\webapps\ROOT\WEB-INF)
    Thanks for your help!!!

  • JavaHelp to point to specific HTML Page

    Hi,
    Does anybody know how to display JavaHelp to point to a specific HTML page??? i.e when my JavaHelp opens, i want to display a component specific JavaHelp or rather a specific HTML page
    Help needed urgently on this
    Thanks
    kavita

    Hello,
    From your GUI, you need to request a topic ID; let's call this "optionsHelp". Then create a map file, which uses XML syntax, and link the help page to the topic ID with something like this:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE map PUBLIC
       "-//Sun Microsystems Inc.//DTD JavaHelp Map Version 1.0//EN"
       "http://java.sun.com/products/javahelp/map_1_0.dtd">
    <map version="1.0">
       <mapid target="optionsHelp" url="help/options.html"/>
    </map>
    Note that this is separate from the helpset file. I believe you use HelpBroker.enableHelpOnButton(Component, mapID, helpSet) to setup the help action for a button. [All this info was taken from the .pdf JavaHelp spec and whitepaper]
    Hope you get it to work!

  • Coldfusion function hints in .html page

    I'm building a coldfusion site that will be using .html as the file extension instead of .cfm. I can easily set the server to parse the page correctly, however I am having a problem getting the code hinting to work in Dreamweaver.
    I did figure out how to set Dreamweaver for CFM tag completion in an HTML page and it works fine, for instance if I type:
    <cfa
    it will hint and complete <cfabort>
    However, the problem I'm having is that I can't get the function hinting to work. Normally, if I edit a CFM page and press control-space I get a list of coldfusion functions, for instance if I hold control-space then type:
    arr
    I'll get a menu of options and can auto-complete as:
    ArrayAppend()
    This is very helpful but I can't get this type of function hinting to work when I'm editing a HTML page in dreamweaver. Currently it will only do the tag completion, but NOT the function completion.
    Any help would be appreciated, thanks!!

    Jeremy,
    I'm building a coldfusion site that will be using .html as the file extension instead of .cfm. I can easily set the server to parse the page correctly, however I am having a problem getting the code hinting to work in Dreamweaver.
    You'll need to manually edit this file in your User (not Application) Configuration folder:
      Configuration/CodeHints/CodeHints.xml
    Search all of the "doctypes" attributes. Wherever you see "ColdFusion", add "HTML". It's a comma-separated list, so this:
      doctypes="ColdFusion,CFC"
    Should be changed to:
      doctypes="ColdFusion,CFC,HTML"
    Note that you can do something similar in the CodeColoring folder to get syntax coloring to work.
    Regards,
    Randy

  • hr element placed incorrectly on html page

    <HR> element is placed in a row of a grid but it appears above the table on HTML page. JSP code and HTML output is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <jsp:text><![CDATA[
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    ]]></jsp:text>
    <f:view>
    <html lang="en-US" xml:lang="en-US">
    <head>
    <meta content="no-cache" http-equiv="Cache-Control"/>
    <meta content="no-cache" http-equiv="Pragma"/>
    <title>TestPage Title</title>
    <link href="resources/stylesheet.css" rel="stylesheet" type="text/css"/>
    </head>
    <body style="-rave-layout: grid">
    <h:form binding="#{TestPage.form1}" id="form1">
    <h: panelGrid binding="#{TestPage.gridPanel1}" id="gridPanel1" style="left: 0px; top: 0px; position: absolute" width="780">
    <h:outputText binding="#{TestPage.outputText1}" id="outputText1" styleClass="page-header" value="Test page"/>
    <hr width="780"/>
    </h: panelGrid>
    </h:form>
    </body>
    </html>
    </f:view>
    </jsp:root>
    HTML output is as follows:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xml:lang="en-US" lang="en-US"><head><meta http-equiv="Cache-Control" content="no-cache"/><meta http-equiv="Pragma" content="no-cache"/><title>TestPage Title</title><link type="text/css" rel="stylesheet" href="resources/stylesheet.css"/></head><body style="-rave-layout: grid"><form id="form1" method="post" action="/homesoncell/faces/TestPage.jsp" enctype="application/x-www-form-urlencoded">
    <hr width="780"/><table id="form1:gridPanel1" style="left: 0px; top: 0px; position: absolute" width="780">
    <tbody>
    <tr>
    <td><span id="form1:outputText1" class="page-header">Test page</span></td>
    </tr>
    </tbody>
    </table>
    <input type="hidden" name="form1" value="form1" /></form></body></html>

    You cannot safely include HTML tags within all JSF components -- and panelGrid is one such component. This is the reason by the way we disabled the HTML palette in the last moment; it's easy to get into trouble in this area.
    The way to include markup is to include a verbatim tag as a child and then the verbatim tag wraps the html you want to include.
    http://java.sun.com/j2ee/javaserverfaces/1.1/docs/tlddocs/f/verbatim.html
    -- Tor
    http://blogs.sun.com/tor

  • How to insert Edge animate in current web html page

    Just downloaded Edge Animate and trying to include animation.html in current website.html page using Adobe Edge Code preview but am not sure how to go about it not being a hard core programmer.... am i being too ambitious?

    Thanks here is the code :
    Animation code : in subdiretory off Root directory : AdobeEdge/Bannerad.html
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="Bannerad_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-160548878 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
              <div id="Stage" class="EDGE-160548878">
              </div>
    </body>
    </html>
    And segement of Accomodation.html page in root directory :
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
      <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <meta name="Generator" content="iWeb 2.0.4" />
        <meta name="iWeb-Build" content="local-build-20130308" />
        <meta name="viewport" content="width=700" />
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=IE8"/>
              <title>Untitled</title>
        <title>Accomodation</title>
        <link rel="stylesheet" type="text/css" media="screen,print" href="Accomodation_files/Accomodation.css" />
        <!--[if IE]><link rel='stylesheet' type='text/css' media='screen,print' href='Accomodation_files/AccomodationIE.css'/><![endif]--><style type="text/css">
    /*<![CDATA[*/
              @import "Scripts/Widgets/HTMLRegion/Paste.css";
    /*]]>*/
    </style>
        <!--Adobe Edge Runtime-->
        <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
        <script type="text/javascript" charset="utf-8" src="AdobeEdge/Bannerad_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-160548878 { visibility:hidden; }
        </style>
    <!--Adobe Edge Runtime End--> 
        <script type="text/javascript" src="Scripts/iWebSite.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/SharedResources/WidgetCommon.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/Navbar/navbar.js"></script>
        <script type="text/javascript" src="Scripts/iWebImage.js"></script>
        <script type="text/javascript" src="Scripts/Widgets/HTMLRegion/Paste.js"></script>
        <script type="text/javascript" src="Accomodation_files/Accomodation.js"></script>
      </head>
      <body style="background: #000000; margin: 0pt; " onload="onPageLoad();" onunload="onPageUnload();">
        <div style="text-align: center; ">
          <div style="margin-bottom: 0px; margin-left: auto; margin-right: auto; margin-top: 0px; overflow: hidden; position: relative; word-wrap: break-word;  background: #fffde8; text-align: left; width: 700px; " id="body_content">
            <div style="margin-left: 0px; position: relative; width: 700px; z-index: 0; " id="nav_layer">
              <div style="height: 0px; line-height: 0px; " class="bumper"> </div>
              <div id="id1" style="height: 258px; left: 17px; position: absolute; top: 13px; width: 665px; z-index: 1; " class="style_SkipStroke">
                <div class="text-content graphic_shape_layout_style_default_External_665_258" style="padding: 0px; ">
                  <div class="graphic_shape_layout_style_default"></div>
                </div> <p style="margin:0;padding:0;">
                         <div id="Stage" class="EDGE-160548878">
                             </div>
    ....................  etc.
    thanks.

  • How to upload a HTML page with Flash image viewer?

    I´ve got a html page with a flash image viewer file inn it. Preview in a browser is ok, but I don´t get it right on the server. Is it something spesial with the swf file?
    This is what i have done: I just upload html -page, viewer swf file and the pictures to the same folder. Is this wrong?
    Sorry, I really don´t have a clue... Thanks!

    Sorry to say, but that is not a webpage -
    There is no doctype, no head section, no body section .
    etc. etc.
    Nothing would work in that document.
    Please generate a properly formed HTML page, and place the scripts and script calls in the proper section and the rest in the body, and let's see what you get

  • Trying to call MM_showHideLayers on container HTML page from Flash

    I'm designing a site that is mostly in Flash, but I would
    like to show some content by changing the visibility of a layer on
    the HTML page that contains the swf file. I have tried
    on (press)
    {ExternalInterface.call("MM_showHideLayers",'testerbox','show');
    and
    on (press)
    {ExternalInterface.call("MM_showHideLayers('testerbox','','show')");
    and I have tried
    on (press)
    {getURL("javascript:MM_showHideLayers('testerbox','','show')");
    My HTML page code is below. Can anyone tell me what I am
    doing wrong and point me in the right direction? Can this be done?
    Is there a better way to display large amounts of highly formatted,
    dynamic content from within Flash without loading a new page or
    resorting to a pop-up window? I really want it to look and feel
    like it is all part of the same page, and I need more tags than I
    can use in a Flash textbox. Thanks in advance :-)
    Teri
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <script type="text/javascript"
    src="swfobject.js"></script>
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_showHideLayers() { //v6.0
    var i,p,v,obj,args=MM_showHideLayers.arguments;
    for (i=0; i<(args.length-2); i+=3) if
    ((obj=MM_findObj(args
    ))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style;
    v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
    //-->
    </script>
    <style type="text/css">
    <!--
    #testerbox {
    position:absolute;
    width:200px;
    height:115px;
    z-index:6;
    left: 69px;
    top: 42px;
    background-color: #FFFFFF;
    visibility: hidden;
    -->
    </style>
    </head>
    <body bgcolor="#FFFFFF">
    <table width="316" height="180" align="left"
    cellpadding="0" cellspacing="0">
    <tr>
    <td
    background="../images/innerpage/sidebar-bg-iframe.jpg">
    <div id="testerbox">My test</div>
    <div id="flashcontent" align="center">
    <p>
    You must have Flash Player to use this feature.<br>
    <br>
    <a href="
    http://www.macromedia.com/go/getflashplayer"
    target="_blank">Click
    here</a> to download or upgrade your Flash Player
    </p>
    </div>
    <script type="text/javascript">
    // <![CDATA[
    var so = new
    SWFObject("leaders.swf","leaders","316","180","6");
    so.write("flashcontent");
    // ]]>
    </script>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Text
    Text
    Text
    Text

    Hi, did you get a solution to this problem, i am having a similar issue with the MM_showhidelayers not working in IE6, it works fine in IE8?
    the code im using on a flash button is:
    on (press) {
    import flash.external.ExternalInterface;
    ExternalInterface.call("MM_showHideLayers('menu','','show','menu_back','','show' )");
    Thanks
    Gary

Maybe you are looking for

  • Add a new column in Agreement Items table control (ME31K/ME32K/ME33K)

    Hi guys, I have a big issue. How can I add a new column at Agreement Items table control (ME31K/ME32K/ME33K) level. Thanks a lot.

  • Business Prozess Monitoring -- Workflow Prozess

    Hallo, I will monitoring a workflow - process. The Workflow generate a Container which comprise some structures or flags. I will check the Content of the structure or the flag, if there have the correct data. Is it possible to check the Workflow with

  • Problems with hooking

    I've come across an interesting situation which I'm lost in. I'm trying to hook into an application via to check for mouse clicks. I have that portion of the code working with what I have. My comparison comes from the handle of the window I want to c

  • Check posing date on F110 Automatic payment

    Hi Guru    I have some problem on transaction code F110 (Automatic payment program) . Can the program selection check posting date of  invoice document not more than field "Docs entered up to" ?

  • Report to Report Interface (RRI)

    Hi, I had a Query on a Cube (Multiprovider) and I had a query on DSO How can i perform Report to Report Interface (RRI) for this two queries Thanks