FP2000 Java target frames help

D

Dieselboy

Hey,
I have a java applet running in a little website i'm trying to design, and
when a user clicks on something in the
menu, I need for it to open in a certain frame, ie: the main one, (bottom
middle
right aka rbottom) I've searched extensively,and only found how to set
target frames for buttons
etc.. but nothing for the java applet. Even if I right click in the source
frame and go to frame properties (any properties) I make the target frame
rbottom, it still opens a whole new page.. grrr ;) Could anyone clarify?
for example, the fourth line from the bottom, The aboutus.htm is a link in
the java applet (for *about us*), but I need for it to open in a certain
frame, is there some
code i'm missing here simply?

thanks


<applet code="PictureMenu.class" codebase="./" align="baseline" width="140"
height="265">

<param name="AppletHomePage" value="http://go.to/javabase">

<param name="bgcolor" value="666666">

<param name="fgcolor" value="FFBBBB">

<param name="font" value="Allegro BT">

<param name="fontsize" value="16">

<param name="mouse" value="FAFAD2">

<param name="highlight" value="666666">

<param name="fontStyle" value="b">

<param name="select" value="left">

<param name="delay" value="10">

<param name="STEPS" value="30">

<param name="switchSteps" value="10">

<param name="background" value="menugraph.jpg">

<param name="type" value="menu">

<param name="rounding" value="10">

<param name="highlightFade" value="flip">

<param name="inFade" value="leftright">

<param name="outFade" value="leftright">

<param name="menuMain" value="{About Us,aboutus.htm} {This
,menu2}<<<<<<<<<<<<<<<<<<<<<<<<<<<here (aboutus.htm)
{Schedule,na/htm} {Registration,http://www.lycos.com/,_blank} {Contact Us,
na.htm}{Other info, na.html}>

<param name="menu1" value="{Sub-menu 2,menu2} {Random
Link,http://random.yahoo.com/cgi-bin/ryl} {Back,menuMain}">

<param name="menu2" value="{Physical Layout,menu1} {Detailed
Layout,applets.html}">

You'll need Java to view properly

</applet>
 
T

Thomas A. Rowe

You need to check with the author of the applet to see if it design to
support target frame value.

Also, be aware the many Windows XP, IE6 and NS6 and up user will not be able
to access your Java Applet since they do not have a Java Virtual Machine
(JVM) installed by default, so they will not be able to navigate your
website.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 
D

Dieselboy

wow, thanks for the tip. When will JVM be available on IE6? when it becomes
standard I guess?
thanks
 
T

Thomas A. Rowe

Because of Sun, it may never be available unless users know and choose to go
to the Sun web site and download and the Sun JVM.

Note: Some users do have it, depending on when they install Windows XP or IE
6 or SP1. However it is something that you should not count on users having,
instead look at using JavaScript functions, which in most case will allow
links to work, even if JavaScript has been disabled.

--

==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top