Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default Odd Behaviours

    My site is made up of 3 frames on a page. Top, Main and bottom. On th etop
    frame I have my links with the behaviours set so the target of the link appears
    in the main frame. When th emouse goes ove rthe link allworks fine and th epage
    appears in th emain frame. But... if I then click the same link in the top
    frame it makes the same target appear in the top frame blocking out th epage I
    want to permenatly display in the top frame. I have attached the code. Any help
    would be appreciated. Thanks

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_reloadPage(init) { //reloads the window if Nav4 resized
    if (init==true) with (navigator) {if
    ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    onresize=MM_reloadPage; }}
    else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH)
    location.reload();
    }
    MM_reloadPage(true);
    //-->
    </script>
    </head>

    <frameset rows="296,*,27" cols="*" framespacing="0" frameborder="NO"
    border="0">
    <frame src="master.htm" name="topFrame" scrolling="NO" noresize >
    <frame src="paintandseat.htm" name="mainFrame">
    <frame src="frameset2.htm" name="bottomFrame" scrolling="NO" noresize>
    </frameset>
    <noframes><body>

    </body></noframes>
    </html>

    scooterati Guest

  2. Similar Questions and Discussions

    1. dreamweaver behaviours
      does anybody know if it is possible to incorpoarte behaviours in to contribute. I am currently putting together a site for a client and he wants to...
    2. Additional Behaviours
      Hi all, I was wondering if there is such a thing as more readymade behaviours that can be bought and added to the Library palette. If not, then let...
    3. is there a maxium of behaviours
      iam completing a director piece but for some reason it wont let me put anymore behaviours in place. does anyone no if there is a set amount of...
    4. Parameters Within and Between Behaviours??
      im trying to write behaviours that allow a user to navigate the car along the road from the start point to the end point (using the up,down,left &...
    5. disappearing behaviours
      i have been happily creating rollover buttons on my director work, by making the rollover model cursor a cast member, and then adding it to the icon...
  3. #2

    Default Re: Odd Behaviours

    Why are you using frames?

    We would need to see a live instance of this frameset to say any more. Can
    you post a link?

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    [url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
    [url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
    [url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
    ==================


    "scooterati" <webforumsuser@macromedia.com> wrote in message
    news:eod618$25e$1@forums.macromedia.com...
    > My site is made up of 3 frames on a page. Top, Main and bottom. On th etop
    > frame I have my links with the behaviours set so the target of the link
    > appears
    > in the main frame. When th emouse goes ove rthe link allworks fine and th
    > epage
    > appears in th emain frame. But... if I then click the same link in the top
    > frame it makes the same target appear in the top frame blocking out th
    > epage I
    > want to permenatly display in the top frame. I have attached the code. Any
    > help
    > would be appreciated. Thanks
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    > "http://www.w3.org/TR/html4/frameset.dtd">
    > <html>
    > <head>
    > <title>Untitled Document</title>
    > <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    > <script language="JavaScript" type="text/JavaScript">
    > <!--
    > function MM_reloadPage(init) { //reloads the window if Nav4 resized
    > if (init==true) with (navigator) {if
    > ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    > document.MM_pgW=innerWidth; document.MM_pgH=innerHeight;
    > onresize=MM_reloadPage; }}
    > else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH)
    > location.reload();
    > }
    > MM_reloadPage(true);
    > //-->
    > </script>
    > </head>
    >
    > <frameset rows="296,*,27" cols="*" framespacing="0" frameborder="NO"
    > border="0">
    > <frame src="master.htm" name="topFrame" scrolling="NO" noresize >
    > <frame src="paintandseat.htm" name="mainFrame">
    > <frame src="frameset2.htm" name="bottomFrame" scrolling="NO" noresize>
    > </frameset>
    > <noframes><body>
    >
    > </body></noframes>
    > </html>
    >

    Murray *ACE* Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139