java applet frame link

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Kenneth Montgomery

    java applet frame link


    I have this embedded dropdown menu applet that is suppose to be in the
    navigation frame and the target URL content in the content frame. But I
    can't seem to the script to put the content into the right frame.

    The applet data .txt file is suppose to direct the browser to load the
    addressed content of the selected file in the right frame, but obviously
    I am doing something wrong.I am new to JAVA and I thought this would be
    a simple thing, but none of the suggestions I read in the tutorial are
    working.

    Help and thanks in advance.

    Here is my applet file and it data.txt file and my frame file.

    <html>
    <head>
    <title>tree</title>
    </head>
    <applet code=it3free.cl ass width=200 height=300>
    <param name=copyright value="Image Intelligence Ltd. 1998
    (www.imint.com) ">
    <param name=menufile value="menu.txt ">
    <param name=textfont value="Helvetic a">
    <param name=textsize value=11>
    <param name=coloursche me value=7>
    </applet>
    </html>


    "text:Image Intelligence Applets" "1" "" "" ""

    "text:Ken Montgomery's resume" "2" "" "" "Ken Montgomery's Resume"
    "text:ContactIn fo" "3" ""
    "link:http://www.geocities.c om/bayouprophet/contactinfo.htm ,main"
    "Contact Info"
    "text:Professio nal Skills," "3" ""
    "link:http://www.geocities.c om/bayouprophet/professionalski lls,main"
    "Profession al Skills"
    "text:Techn ical Skills" "3" ""
    "link:http://www.geocities.c om/bayouprophet/technicalskills ,main"
    "Technical Skills"

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>

    <head>
    <title>New Page 1</title>
    <meta name="GENERATOR " content="Xoolog y Coda">
    </head>

    <frameset cols="150,*">
    <frame name="tree" src="tree.html" >
    <frame name="main">
    <noframes>
    <body>

    <p>This page uses frames, but your browser doesn't support them.</p>

    </body>
    </noframes>
    </frameset>

    </html>




    *** Sent via Developersdex http://www.developersdex.com ***
    Don't just participate in USENET...get rewarded for it!
  • Michael Winter

    #2
    Re: java applet frame link

    On 05 Mar 2004 16:28:32 GMT, Kenneth Montgomery <bayouprophet@y ahoo.com>
    wrote:
    [color=blue]
    > I am new to JAVA and I thought this would be a simple thing, but
    > none of the suggestions I read in the tutorial are working.[/color]

    The first thing you need to learn is the difference between Java and
    JavaScript: they are *not* the same thing. They just share the same four
    letters. The first section of this article by Douglas Crockford is a
    little less terse:



    Your question would be better address in one of the Java groups, for
    example comp.lang.java.

    Mike

    --
    Michael Winter
    M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)

    Comment

    Working...