Frames & Hover Buttons

J

John

I have 3 frames on a page with Hover Buttons for going to different pages. They used to work. In fact it still works in FrontPage but not after it's been "published" to the web.

Now, only the frame that has the button in it goes to the new page. The other two stay where they are.

Can someone tell me what I'm doing wrong?

The following is a sample of the code I'm using:

<applet code="fphover.class" codebase="../../_fpclass/" width="60" height="24">
<param name="text" value="Test">
<param name="color" value="#000080">
<param name="hovercolor" value="#0000FF">
<param name="textcolor" value="#FFFFFF">
<param name="effect" value="glow">
<param name="url" value="../../Test.htm" valuetype="ref">
</applet>

Thanks for any help.
John
 
S

Stefan B Rusynko

Provide a URL of the online frameset page

Did you set a base target tag in the HEAD section of the page w/ the JAVA hoovers
<base target="yourcontentframename">
If not, each Hoover needs a target parameter
<param name="target" value="yourcontentframename">

FYI
The Hoovers and Java are not globally supported and many visitors will not see them unless they have a valid JAVA engine and browser
security that allows JAVA



| I have 3 frames on a page with Hover Buttons for going to different pages. They used to work. In fact it still works in
FrontPage but not after it's been "published" to the web.
|
| Now, only the frame that has the button in it goes to the new page. The other two stay where they are.
|
| Can someone tell me what I'm doing wrong?
|
| The following is a sample of the code I'm using:
|
| <applet code="fphover.class" codebase="../../_fpclass/" width="60" height="24">
| <param name="text" value="Test">
| <param name="color" value="#000080">
| <param name="hovercolor" value="#0000FF">
| <param name="textcolor" value="#FFFFFF">
| <param name="effect" value="glow">
| <param name="url" value="../../Test.htm" valuetype="ref">
| </applet>
|
| Thanks for any help.
| John
|
 
J

John

Thank you very much for your quick reply.

I had base target="main", whatever that means, in the head.
Just too complicated for an old man. I'm trashing the hovers. Text links work just fine....

Thanks again;
John
 

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