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!
Comment