How to create a frame-based menu?

Please note that official support for this menu version has now ceased. There are still plenty of users, though, and the forum is still running. Some of our long-time users may be able to help you out.
Post Reply
drew@sfwtc.com
Beginner
Beginner
Posts: 1
Joined: Sun May 19, 2002 7:24 pm

Re: How to create a frame-based menu?

Post by drew@sfwtc.com »

i've wasted the past 4 hours trying to get this primitive app to work with frames. and of course, failed. there aren't any problems with a single window, but as soon as frames are involved the whole things screws up. The large frame hides the menu that comes up, making it worthless. Having read through all of the posts her, looked desperately for a usable FAQ, and checked the test html's source for any info, I am resigned to go look somewhere else for a usable navigation system.
At least it was fast loading though. Yay. /one/ good thing.
pat@dracoblu.com
Super Advanced
Super Advanced
Posts: 69
Joined: Sun May 19, 2002 7:23 pm
Contact:

Re: How to create a frame-based menu?

Post by pat@dracoblu.com »

Of course it will depend on how you have been using the menu.

I suppose the demo at <a href=http://www.milonic.co.uk/menu/frames>ht ... /frames</a> is a little primitive and there is still much work to be done but it does work.

Also the download is at <a href=http://www.milonic.co.uk/menu/frames/fr ... mes.zip</a> should give you more of an insight.

Cheers
Andy
q.huo@manyworlds.com
Beginner
Beginner
Posts: 2
Joined: Sun May 19, 2002 7:23 pm

How to create a frame-based menu?

Post by q.huo@manyworlds.com »

Hi,

I want to create a frame-based menu like the "frame demo": when the cursor is over the menu in the top frame, the submenu will show up in another frame. How can I do this? How to config the js file? Can anyone help me?

Thanks

Qing
User avatar
yadin
Super Advanced
Super Advanced
Posts: 69
Joined: Sun May 19, 2002 8:23 pm
Location: State College, PA, USA
Contact:

Re: How to create a frame-based menu?

Post by yadin »

You'll really need to try to do this first. Start by copying the files from the frames demo on our site. If you encounter problems you can post with a specific issue. Be aware the frames implementation is limited and has it's issues.
Yadin
ilduce
Beginner
Beginner
Posts: 1
Joined: Fri Aug 09, 2002 11:41 am

frames

Post by ilduce »

i have used the frame version, and have a problem.
when the first page loads, and click on a link (we will call it pg2) that is in diffrent folder and then goto another link (pg3) theat is on the same folder, i get a blank page, and the menu no longer works.

if i reverse the order, (pg3, which now works, then pg2) the same thing happens
what am i doing wrong??
menufurfer
Super Advanced
Super Advanced
Posts: 37
Joined: Sun Jul 28, 2002 4:40 am

Post by menufurfer »

ilduce (il duce was Mussolini's title):

Try selecting pg 2 twice or 3 times in a row. Does it reload each time or does the problem only occur with the pg2 and pg 3 combo?

By blank page I assume you mean no page? What does the URL locator show has loaded? mfurf
trytousemenuinframe
Beginner
Beginner
Posts: 6
Joined: Wed May 14, 2003 9:34 pm

Re: How to create a frame-based menu?

Post by trytousemenuinframe »

pat@dracoblu.com wrote:Of course it will depend on how you have been using the menu.

I suppose the demo at <a href=http://www.milonic.co.uk/menu/frames>ht ... /frames</a> is a little primitive and there is still much work to be done but it does work.

Also the download is at <a href=http://www.milonic.co.uk/menu/frames/fr ... mes.zip</a> should give you more of an insight.

Cheers
Andy

If change index.htm in http://www.milonic.co.uk/menu/frames/frames.zip
to <html><head><title>Frames Test</title></head>
<frameset rows="26,*" >
<frame name="menuframe" scrolling="no" target="main" src="frames_header.htm">
<frame name="main" src="bottom.htm" >
<noframes>
<p>This page uses frames, but your browser doesn't support them.</p>
</noframes> </frameset></html>

and add bottom.html as
html><head><title>Frames Test</title></head>
<frameset cols="50,*" >
<frame name="left" scrolling="no" target="main" src="frames_side.htm">
<frame name="main" src="frames_body.htm" >
<noframes>
<p>This page uses frames, but your browser doesn't support them.</p>
</noframes> </frameset></html>

The milonic menu won't wok any more.
No matter how you change "sourceframe" in frames_side_array.js and frames_header_array.js the top menu won't work at all.
Probably, it's the limitation that Milonic implementation that it won't work in complex frame situation. It will only work in the primitive frame situation.

Any suggestion of enchancement?
Post Reply