Frames in html

how do i extend menu in one frame to another frame without hiding in the second frame.

How can i extend my menu option from one frame to
another frame.what ? explain more .
BTW your chances of getting answer would be more if you post it in HTML/Javascript forum.

Similar Messages

  • Linking to a specific frame from html?

    Hello all:
    Does anyone know if it is possible to have an html page that
    links to a swf file, but ALSO goes to a specific frame or label
    within that file? I'm trying to avoid having to start the Flash
    file from the very beginning, but I can't say that I've ever seen
    this done.
    Thanks,
    Wayne

    The simplest way:
    in the HTML you expand the two occurences of "movie.swf" (in
    the object and embed tag) to "movie.swf?jump=50", where "jump" is
    the variable name and "50" is the frame somewhere in the middle of
    your movie.swf that you want to start with.
    In the first frame of movie.swf you have actionscript
    if(this._framesloaded<jump) {
    this.gotoAndPlay(1)}
    else {
    this.gotoAndPlay(jump)}
    Of course, this doesn't check for error conditions and has
    other weaknesses, but I hope you get the point.
    Good luck
    Wolf

  • Redirecting in a frame in html

    I'm trying to load a frame-based webpage in mx:HTML. One of
    the frame in the page is automatically redirected to another page.
    Is an event dispatched when such redirecting happens?
    I know "locationChange" event is dispatched when a
    non-frame-based webpage is auto redirected.
    Thanks.

    Hi,
    The HTML control does not dispatch any events when content
    inside the frame redirects. I think you should be able to capture
    javascript events (onUnload) from the frameset object
    though.

  • How to put a table inside a frame in html

    Hi, I have a html table as follows:
    <TABLE BORDER=2><TR><TD>No</TD><TD>Name</TD><TD>Age</TD></TR><TR><TD>1</TD><TD>John</TD><TD>30</TD></TR><TR><TD>2</TD><TD>Michael</TD><TD>20</TD></TR></TABLE>
    I want to put it inside a html frame in order to have the scroll bar with the table.
    Is there a way to do it in html?
    Thanks.

    Put the table inside of a div tag with a set width and height, borders, and overflow set to scroll:
    <html>
      <head>
        <style>
          .tableDiv {
         width: 140px;
            height: 200px;
            overflow: scroll;
            border: 3px outset;
          .no {
            width: 20px;
          .name {
            width: 50px;
          .age {
            width: 30px;
        </style>
      </head>
      <body>
        <div class="tableDiv">
        <table border="2">
        <thead>
          <TR><TH class="no">No</TH><TH class="name">Name</TH><TH class="age">Age</TH></TR>
        </thead>
        <tbody>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
          <TR><TD class="no">1</TD><TD class="name">John</TD><TD class="age">30</TD></TR>
        </tbody>
        </table>
        </div>
      </body>
    </html>

  • Open swf on certain frame using HTML link

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

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

  • PLEASE HELP - cant switch frame from html to excel and vice versa!!

    Hi
    I'm have been unable to dynamically change an html frame to display in excel format.
    The variable that determines whether this page should be html or excel comes from another frame.
    Its not working...
    Any ideas why this would be?
    seems to be a straight forward issue, but I can't seem to solve it.
    ****code below****
    <%
    String xFmt = (String)request.getParameter("passFmt");
    if (xFmt == "1")
    response.setContentType("application/vnd.ms-excel");
    else
    response.setContentType("text/html");
    %>

    SORRY...."my bad" (as it were)...
    should have been
    if (xFmt.equals("1"))
    rather than
    if (xFmt == "1")

  • How to display Two frames in HTML....

    Hi,
    Can someone please advice me on how to display two frams on one page without using FrameSet...
    Thanks,

    Hi,
    Thank you for your reply...
    I already have something that i did in Applet but i don't want to use Applet....
    The problem with frameset is that i will be adding documents Types Dynamically in HTML List and after clicking the Document Type I want to display Image depending on what Document Type is clicked...
    Both the DOCUMENT TYPE and IMAGE, I want to create DYnamically. I don't want to create Two HTML Files (one for Image and One for LIST) and then open it from Another HTML Which contains FrameSets...
    I hope you get my point....
    Is there any other ways i can do this....
    Any help will be greatly appreciated...

  • How to read frames in html/tutorial

    Hello,
    I would like to learn which classes/methods are used for reading frames in an html page.
    May you please post me a link in Sun tutorials related to Reading frames?
    thanks :)

    There is no API for "reading" webpages logically, but there are a few classes which provide access to pages through the HTTP protocol and expose the content of the pages.
    There may be non-Sun APIs for this, but none that I have used.
    I would suggest you build your own classes for doing this after carefully reading the HTML, CSS, and JavaScript (ECMA Script) or VBScript specifications.
    If the page you request is a frameset, then simply read the content starting with "<Frame>" (similiar anyway), and get the "frames" that are referenced, then point your class to that page, and read again and so on.
    REFERENCES
    http://www.jdom.org/
    http://sourceforge.net/projects/javahtmlparser
    These might help you.

  • How can i work with frames in html

    i am working with frames and jsf
    left side is one.jsf
    right side is login.jsf
    frame
    one.jsf | login.jsf
    ............ |.................
    .............|...............
    ............ |...................
    after login is successful . i am in success.jsf in right frame
    1.e
    frame
    one.jsf | success.jsf
    ................... |........................
    .................... |.......................
    ----------------|-----------------
    then if i am refreshing the content by refresh button.
    again i am getting login.jsf on right side which i don't want.
    1.e
    FRAME
    one.jsf | login.jsf
    ............. |..................
    .............. |..................
    ------------|-------------
    but what i want is even after refresh i have to get success.jsf after login like this what to do
    FRAME
    one.jsf | success.jsf
    ............... |.....................
    ................ |.......................
    -------------|------------------
    with regards

    You need to convert the string date to datetime or date. See conversion examples here:
    http://www.sqlusa.com/bestpractices/datetimeconversion/
    Example for the where clause:
    WHERE DATEDIFF(DD, convert(datetime, lastdate, 101), getdate() ) < 1
    Can you post sample string dates?
    Are you looking for today's records? Another option (depends on lastdate format):
    WHERE lastdate = convert(char(8), getdate(), 112)
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • How to place frames of html in servlets.

    hi,
    Iam new to servlets can any body tell me how to solve this. In a servlet two frames should be there like any web site can any body tell me how to do that.
    regards
    sonali

    Could you elaborate a little bit. From what I read above it looks like you have no clue what a servlet is.

  • Retrive data from different frames in the same HTML page

    Dear sirs,
    Consider a HTML page with 2 frames, frame1.html and frame2.html. Frame1 contains a textbox, and frame2 contains an "Ok" button.
    Could it be possible that, once I click "OK", and after being redirected to the proper servlet, such servlet could retrive information from Frame1?
    Or, in other words, it is possible for a servlet to get information from different html pages? (I mean INPUT elements like texboxes or radio buttons).
    Thanks in advance for any ideas provided.

    Hi,
    Try this out:
    window.parent.Frame1.document.formname.textbox1.value
    Best of luck

  • Import (and export) HTML text into a text frame (CS2)

    Hi
    As I know it is not possible to import or export text in or from a text frame in HTML format directly.
    - Is there a way to do that?
    - If yes how can I do that? A piece of sample code would be great...
    - Actually I use this for Indesign CS2. Is the HTML import / export in CS3 possible?
    Thanks for the help
    Greetz
    Hans

    Yup. There's no HTML parser built into InDesign.
    Actually, GREP is not a great way to go about it. How would you handle nested tags with GREP? A state machine is a much better way to parse HTML. You might want to look around for Javascript parsers.
    Rorohiko has an HTML walker. I'm not sure if it would help you or not.

  • Using jump menu in one frame to open page in another frame - works in IE but not Firefox

    Hi,
    I'm a beginner designer. I've been working to create a template for a website in which there is a banner in a frame across the top and three frames beneath - left for navigation and middle and right for content that can be compared.
    I have created two jump menus in the left frame using Dreamweaver's option for it (insert/forms/jump menu): one menu to load pages in the middle frame (in the code this is 'left') and one menu to load pages in the right frame (in the code this is 'right'). Both menus use a go button.
    Using Internet Explorer and allowing active content to run it works fine. In Firefox clicking 'go' does nothing however I have links in this navigation that will open a page in the middle or right ('left' and 'right') frames and if I use these the jump menus will now work.
    How can I get it to work straight off?
    Any feedback is welcome (except regarding not using frames!).
    Ian
    Code for this navigation page is below:
    <!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" />
    <title>Untitled Document</title>
    <script type="text/javascript">
    <!--
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
      eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0;
    function MM_jumpMenuGo(objId,targ,restore){ //v9.0
      var selObj = null;  with (document) {
      if (getElementById) selObj = getElementById(objId);
      if (selObj) eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
      if (restore) selObj.selectedIndex=0; }
    //-->
    </script>
    </head>
    <body>
    <h1>Navigation</h1>
    <p><a href="../Something/Pages_One/Alabama.html" target="left">Example</a></p>
    <p><a href="Left Frame 01.html" target="left">Left Frame 1</a></p>
    <p><a href="Left Frame 02.html" target="left">Left Frame 2</a></p>
    <p><a href="Right Frame 01.html" target="right">Right Frame 1</a></p>
    <p><a href="Right Frame 02.html" target="right">Right Frame 2</a></p>
    <p>Select a page to view in the left frame</p>
    <form name="form" id="form">
      <select name="jumpMenu" id="jumpMenu">
        <option value="Left Frame 01.html">Left frame 01</option>
        <option value="Left Frame 02.html">Left frame 02</option>
        <option value="Left Frame 03.html">Left frame 03</option>
      </select>
      <input type="button" name="go_button" id= "go_button" value="Go" onclick="MM_jumpMenuGo('jumpMenu','parent.frames[\'left\']',0)" />
    </form>
    <p>Select a page to view in the right frame</p>
    <form name="form2" id="form2">
      <select name="jumpMenu2" id="jumpMenu2">
        <option value="Right Frame 01.html">Right frame 01</option>
        <option value="Right Frame 02.html">Right frame 02</option>
        <option value="Right Frame 03.html">Right frame 03</option>
      </select>
      <input type="button" name="go_button2" id= "go_button2" value="Go" onclick="MM_jumpMenuGo('jumpMenu2','parent.frames[\'right\']',0)" />
    </form>
    <p> </p>
    </body>
    </html>

    Geronimo23 wrote:
    Given that it doesn't work initially in Firefox then it does once I load a page in the destination frame I decided to create a page with a link to the frameset. Using the link to get to the frameset the jump menu now works perfectly. Must be one of the wonders of using frames. Well I guess that's solved but out of curiosity, any ideas for why it wouldn't work when the frameset is loaded on its own?
    It might be due to the fact that you're using XHTML 1.0 Transitional, a DOCTYPE that does not support framesets. Try converting to HTML 4.01 Transitional or HTML 4.01 Frameset if you do not need or understand XHTML. Or use XHTML 1.0 Frameset if you really need XHTML.
    Refs: http://www.w3.org/TR/html401/present/frames.html ; http://www.w3.org/TR/xhtml1/#h-A1 ; http://www.w3.org/TR/xhtml1/dtds.html#a_dtd_XHTML-1.0-Frameset
    Mark A. Boyd
    Keep-On-Learnin' :-)

  • (Solved) Calling a different page using HTML Region as a part of other page

    Hi All,
    I want to open a page as a part of other page as it is done using frames in HTML.
    For example :
    <html>
    <head>
    </head>
    <frameset cols="30%,*">
    <frame src="menu.html">
    <frame src="content.html">
    </frameset>
    </html>
    Now I want to use the HTML Region and try calling different page developed in the same application. How can I acheive this task.
    Hoping for a quick and easy solution for this.
    Thanks in advance.
    Regards
    Arif

    Once Agian Thanks Andrews
    http://www.dynamicdrive.com/dynamicindex17/iframessi2.
    htmThis web page i suppose is presently not available, atleast i'm not able to open it.
    Hope there are some more sites.
    I'm trying to search on Google but as I do not have much information about Java Script so cant identify the exact solution.
    Hoping to get some predeveloped JavScript that works with Internet Explorer and Mozilla Firefox atleast.
    Thanks once again.
    Regards
    Arif

  • CSS Problem working with Frames

    Hi guys! I'm repairing a client's website that includes a
    shopping cart. When the site is first visited, I have the view cart
    button hidden:
    ============= Frame One ================
    html code:
    <a id="viewcart" href=#>View Cart</a>
    CSS code:
    a#viewcart { visiblity: hidden;}
    ============= Frame Two ================
    <FORM><INPUT TYPE="HIDDEN" NAME="product[]"
    VALUE="Here Today Gone Tomorrow">
    <INPUT TYPE="HIDDEN" NAME="price" VALUE="14.95">
    <INPUT TYPE="SUBMIT" value="Add to Cart" name="B1">
    </FORM>
    I would like to turn the button on whenever an add to cart
    button has been pressed.
    If I were working within the same page, I think I could get
    away with something like:
    CSS Code:
    form submit:active, a#viewcart { visiblity: visible;}
    Am I thinking in the right direction or am I screwing up.
    HELP!!!

    To affect Frame one by a button in frame two you are going to
    have to reload
    the whole frameset, which could cause you problems. If the
    top frameset is
    only to hold this link then there is little point in using it
    over having
    all the code on the same page and controlling it via CSS as
    you have.
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "WebXperience" <[email protected]> wrote in
    message
    news:eildvv$l57$[email protected]..
    > Hi guys! I'm repairing a client's website that includes
    a shopping cart.
    > When
    > the site is first visited, I have the view cart button
    hidden:
    > ============= Frame One ================
    > html code:
    > <a id="viewcart" href=#>View Cart</a>
    >
    > CSS code:
    > a#viewcart { visiblity: hidden;}
    >
    >
    > ============= Frame Two ================
    > <FORM><INPUT TYPE="HIDDEN" NAME="product[]"
    VALUE="Here Today Gone
    > Tomorrow">
    > <INPUT TYPE="HIDDEN" NAME="price" VALUE="14.95">
    > <INPUT TYPE="SUBMIT" value="Add to Cart"
    name="B1">
    > </FORM>
    >
    > I would like to turn the button on whenever an add to
    cart button has been
    > pressed.
    > If I were working within the same page, I think I could
    get away with
    > something like:
    >
    > CSS Code:
    > form submit:active, a#viewcart { visiblity: visible;}
    >
    > Am I thinking in the right direction or am I screwing
    up.
    >
    > HELP!!!
    >
    >

Maybe you are looking for

  • Digital Graphic dB not working??

    ok so i have NO IDEA what this thing is called, but it is the little display of "jumping bars" where the playing song information is located. in itunes 6 it worked fine, and now with amazing version 7 (insert sarcasm here) it is not functional. i don

  • ECC 6.0 - WS20000050 - Container Elements from Workflow to Rule in step 172

    Hello Guys/Gals, Hope you all are doing good. Greatly appreciate if you could help on this with some tips. We are under the process of the upgradation to ECC 6.0. Decided to use the std WF WS20000050  for travel request.However work flow ended in err

  • Block corruptioin after rman restore/recovery

    Thanks for taking my question! Oracle Enterprise Edition 11.1.0.7 on Windows 2008. Using Rman on-line backups COMPRESSED. Can anyone give me any ideas on why SYSAUX data block corruption should occur after a rman recovery? Below is my script. Am I mi

  • Indentifying queries with variables

    Hai is there a direct single table which gives the list of queries when we input the variable technical name. I have the tables RSCOMPDIR,RSZ tables in se11 but of no help its just beating round the bush without direct reference to the query. plz sug

  • Mix & match export layers to files action

    Hi Folks Newby poster here hoping you can help. I have a file with 181 layers and need to export 180 individual layers with 1 other layer switched on (so 2 layers on in each export). Any ideas how to do this with an action or script? Thanks si