WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Creating Java/DHTML Vertical Navigation Menu in FrontPage

 
Goto page Previous  1, 2, 3
   Home -> Office other -> Programming RSS
Next:  Playing a video  
Author Message
sharsy

External


Since: Sep 16, 2008
Posts: 12



(Msg. 9) Posted: Tue Sep 23, 2008 6:42 pm
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: microsoft>public>frontpage>programming (more info?)

The menus are only for our internal intranet - which is accessed by
everyone on the same server (and we have java installed) so that won't
be a problem.
Back to top
Login to vote
sharsy

External


Since: Sep 16, 2008
Posts: 12



(Msg. 10) Posted: Tue Sep 23, 2008 6:52 pm
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Using Javascript is not a problem, as I said in my original post the
menu is for our internal intranet - not an external webpage for the
internet. We all work off the one server which is java enabled so
that's not an issue.
Back to top
Login to vote
Trevor Lawrence

External


Since: May 18, 2007
Posts: 334



(Msg. 11) Posted: Wed Sep 24, 2008 3:00 am
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Reply in-line

"sharsy" <shari RemoveThis @ptpartners.net.au> wrote in message
news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com...
> Using Javascript is not a problem, as I said in my original post the
> menu is for our internal intranet - not an external webpage for the
> internet. We all work off the one server which is java enabled so
> that's not an issue.

Given that it is an intranet application where Javascript is enabled on the
server, there should be no problem.
(I am not sure that Java is relevant - it doesn't appear to be used at all)

However you wrote
"sharsy" <shari RemoveThis @ptpartners.net.au> wrote in message
news:09fa7537-d87d-4002-8044-5b9e17c59076@n33g2000pri.googlegroups.com...
> ........................................................ I am still
> having a problem
> however with changing the links on the secondary drop-down menu - I
> would like the user to be able to click on them and they open up a new
> document in the body frame of my FrontPage Intranet.
>
> Here is the HTML Code I'm Using:
>
> //Contents for menu 5
> var menu5=new Array()
> menu5[0]='<a href="http://www.javascriptkit.com/cutpastejava.shtml"
> style="color: #000000">Administrative</a>'
> menu5[1]='<a href="http://www.javascriptkit.com/javaindex.shtml"
> style="color: #000000">Computers</a>'
> menu5[2]='<a href="http://news.bbc.co.uk" style="color: #000000">HRM</
> a>'
> menu5[4]='<a href="http://www.javascriptkit.com/java/" style="color:
> #000000">Management</a>'
> menu5[3]='<a href="http://www.javascriptkit.com/dhtmltutors/"
> style="color: #000000">Training</a>'

The links, as you have written them, will go directly to the page listed and
overwrite the open page.

Do you want to open the new page and leave the calling page open?
If so, try this
var menu5=new Array(
'<a href="page0.html" target="_blank" >Administrative</a>'
, '<a href="page1.html" target="_blank" >Computers</a>'
, '<a href="page2.html" target="_blank" >HRM</a>'
, '<a href="page3.html" target="_blank" >Training</a>'
, '<a href="page4.html" target="_blank" >Management</a>' )
where page0.html , page1.html are the pages you want to open.

BTW, style="color: #000000" is unnecessary - this is the default text colour
of black

However you use the phrase "body frame" which makes me wonder - do you have
a framed site?
If you do, then you will have to code this differently

If not, you would still want to ensure that page0.html, page1.html, etc have
navigation back to the page which opens them. A simple link back could be
<input type="button" value="Home" onclick="location.href='index.html'" /> ,
but you may already have a navigation scheme set up
--
Trevor Lawrence
Canberra
Web Site http://trevorl.mvps.org
Back to top
Login to vote
Ronx

External


Since: Dec 12, 2003
Posts: 7485



(Msg. 12) Posted: Wed Sep 24, 2008 7:24 am
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The default colour is not necessarily black. In my installation of
FireFox the default colour is Orange, with a default background colour
set to grey. I have set this up so that any page without text or
background colour settings can be spotted easily. It is surprising how
many web sites do not have text colours and background colours set,
relying on the "out of the box" defaults of browsers. FYI, the "out of
the box" default background colour in NN4 is grey, so defaults cannot be
relied on to be black or white in all browsers.

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"Trevor Lawrence" <tandclREMOVETHIS.TakeThisOut@ANDTHIShomemail.com.au> wrote in
message news:eX6QwnfHJHA.4564@TK2MSFTNGP02.phx.gbl:

> Reply in-line
>
> "sharsy" <shari.TakeThisOut@ptpartners.net.au> wrote in message
> news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com...
> > Using Javascript is not a problem, as I said in my original post the
> > menu is for our internal intranet - not an external webpage for the
> > internet. We all work off the one server which is java enabled so
> > that's not an issue.
>
> Given that it is an intranet application where Javascript is enabled on the
> server, there should be no problem.
> (I am not sure that Java is relevant - it doesn't appear to be used at all)
>
> However you wrote
> "sharsy" <shari.TakeThisOut@ptpartners.net.au> wrote in message
> news:09fa7537-d87d-4002-8044-5b9e17c59076@n33g2000pri.googlegroups.com...
> > ........................................................ I am still
> > having a problem
> > however with changing the links on the secondary drop-down menu - I
> > would like the user to be able to click on them and they open up a new
> > document in the body frame of my FrontPage Intranet.
> >
> > Here is the HTML Code I'm Using:
> >
> > //Contents for menu 5
> > var menu5=new Array()
> > menu5[0]='<a href="http://www.javascriptkit.com/cutpastejava.shtml"
> > style="color: #000000">Administrative</a>'
> > menu5[1]='<a href="http://www.javascriptkit.com/javaindex.shtml"
> > style="color: #000000">Computers</a>'
> > menu5[2]='<a href="http://news.bbc.co.uk" style="color: #000000">HRM</
> > a>'
> > menu5[4]='<a href="http://www.javascriptkit.com/java/" style="color:
> > #000000">Management</a>'
> > menu5[3]='<a href="http://www.javascriptkit.com/dhtmltutors/"
> > style="color: #000000">Training</a>'
>
> The links, as you have written them, will go directly to the page listed and
> overwrite the open page.
>
> Do you want to open the new page and leave the calling page open?
> If so, try this
> var menu5=new Array(
> '<a href="page0.html" target="_blank" >Administrative</a>'
> , '<a href="page1.html" target="_blank" >Computers</a>'
> , '<a href="page2.html" target="_blank" >HRM</a>'
> , '<a href="page3.html" target="_blank" >Training</a>'
> , '<a href="page4.html" target="_blank" >Management</a>' )
> where page0.html , page1.html are the pages you want to open.
>
> BTW, style="color: #000000" is unnecessary - this is the default text colour
> of black
>
> However you use the phrase "body frame" which makes me wonder - do you have
> a framed site?
> If you do, then you will have to code this differently
>
> If not, you would still want to ensure that page0.html, page1.html, etc have
> navigation back to the page which opens them. A simple link back could be
> <input type="button" value="Home" onclick="location.href='index.html'" /> ,
> but you may already have a navigation scheme set up
> --
> Trevor Lawrence
> Canberra
> Web Site http://trevorl.mvps.org
Back to top
Login to vote
Ronx

External


Since: Dec 12, 2003
Posts: 7485



(Msg. 13) Posted: Wed Sep 24, 2008 7:27 am
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Java is not an issue since Java is not used.

JavaScript may still be an issue. Enabling JavaScript on the server is
not any help, since the JavaScript runs on the clients, not on the
server - all your *users* must have JavaScript (not Java) enabled in
their browsers.

--
Ron Symonds - Microsoft MVP (FrontPage)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"sharsy" <shari.DeleteThis@ptpartners.net.au> wrote in message
news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com:

> Using Javascript is not a problem, as I said in my original post the
> menu is for our internal intranet - not an external webpage for the
> internet. We all work off the one server which is java enabled so
> that's not an issue.
Back to top
Login to vote
Murray

External


Since: Mar 10, 2008
Posts: 139



(Msg. 14) Posted: Wed Sep 24, 2008 7:27 am
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Some IT departments disable the execution of javascript on client machines.

--
Murray
MVP Expression Web


"Ronx" <ronx917 DeleteThis @hotmail.com> wrote in message
news:uwPhOchHJHA.2580@TK2MSFTNGP05.phx.gbl...
> Java is not an issue since Java is not used.
>
> JavaScript may still be an issue. Enabling JavaScript on the server is
> not any help, since the JavaScript runs on the clients, not on the
> server - all your *users* must have JavaScript (not Java) enabled in their
> browsers.
>
> --
> Ron Symonds - Microsoft MVP (FrontPage)
> Reply only to group - emails will be deleted unread.
>
> http://www.rxs-enterprises.org/fp
>
>
>
>
> "sharsy" <shari DeleteThis @ptpartners.net.au> wrote in message
> news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com:
>
>> Using Javascript is not a problem, as I said in my original post the
>> menu is for our internal intranet - not an external webpage for the
>> internet. We all work off the one server which is java enabled so
>> that's not an issue.
>
Back to top
Login to vote
sharsy

External


Since: Sep 16, 2008
Posts: 12



(Msg. 15) Posted: Sun Oct 12, 2008 6:35 pm
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Sep 24, 1:59 pm, "Trevor Lawrence" <Trevor L.@Canberra> wrote:
> Reply in-line
>
> "sharsy" <sh... DeleteThis @ptpartners.net.au> wrote in message
>
> news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com...
>
> > Using Javascript is not a problem, as I said in my original post the
> > menu is for our internal intranet - not an external webpage for the
> > internet. We all work off the one server which is java enabled so
> > that's not an issue.
>
> Given that it is an intranet application where Javascript is enabled on the
> server, there should be no problem.
> (I am not sure that Java is relevant - it doesn't appear to be used at all)
>
> However you wrote"sharsy" <sh... DeleteThis @ptpartners.net.au> wrote in message
>
> news:09fa7537-d87d-4002-8044-5b9e17c59076@n33g2000pri.googlegroups.com...
>
>
>
>
>
> > ........................................................  I am still
> > having a problem
> > however with changing the links on the secondary drop-down menu - I
> > would like the user to be able to click on them and they open up a new
> > document in the body frame of my FrontPage Intranet.
>
> > Here is the HTML Code I'm Using:
>
> > //Contents for menu 5
> > var menu5=new Array()
> > menu5[0]='<a href="http://www.javascriptkit.com/cutpastejava.shtml"
> > style="color: #000000">Administrative</a>'
> > menu5[1]='<a href="http://www.javascriptkit.com/javaindex.shtml"
> > style="color: #000000">Computers</a>'
> > menu5[2]='<a href="http://news.bbc.co.uk" style="color: #000000">HRM</
> > a>'
> > menu5[4]='<a href="http://www.javascriptkit.com/java/" style="color:
> > #000000">Management</a>'
> > menu5[3]='<a href="http://www.javascriptkit.com/dhtmltutors/"
> > style="color: #000000">Training</a>'
>
> The links, as you have written them, will go directly to the page listed and
> overwrite the open page.
>
> Do you want to open the new page and leave the calling page open?
> If so, try this
> var menu5=new Array(
>    '<a href="page0.html" target="_blank" >Administrative</a>'
> ,  '<a href="page1.html" target="_blank" >Computers</a>'
> ,  '<a href="page2.html" target="_blank" >HRM</a>'
> ,  '<a href="page3.html" target="_blank" >Training</a>'
> ,  '<a href="page4.html" target="_blank" >Management</a>' )
> where page0.html , page1.html are the pages you want to open.
>
> BTW, style="color: #000000" is unnecessary - this is the default text colour
> of black
>
> However you use the phrase "body frame" which makes me wonder - do you have
> a framed site?
> If you do, then you will have to code this differently
>
> If not, you would still want to ensure that page0.html, page1.html, etc have
> navigation back to the page which opens them. A simple link back could be
> <input type="button" value="Home" onclick="location.href='index.html'" /> ,
> but you may already have a navigation scheme set up
> --
> Trevor Lawrence
> Canberra
> Web Sitehttp://trevorl.mvps.org- Hide quoted text -
>
> - Show quoted text -

Hi Trevor, yeah I'm using a frames page that has 4 parts - a top
banner, three frames underneath this - the left hand side is the
navigation menu, the middle one is the body and the right hand side is
a links menu. When an option is chosen from the left hand side
navigation menu, I would like just the middle body frame to change
only. I'm not sure how this will work though! Could you please assist
me on the coding?
Thank you!
Back to top
Login to vote
Ronx

External


Since: Dec 12, 2003
Posts: 7485



(Msg. 16) Posted: Mon Oct 13, 2008 7:48 am
Post subject: Re: Creating Java/DHTML Vertical Navigation Menu in FrontPage [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Add a <base target="framename"> tag to the <head section of the
navigation frame, where framename is the name of the frame with the
content.

Example:

<html>
<head>
<title>blah</title>
<base target="maincontent">
</head>
<body>
Navigation
</body>
</html>
--
Ron Symonds - Microsoft MVP (Expression)
Reply only to group - emails will be deleted unread.

http://www.rxs-enterprises.org/fp




"sharsy" <shari RemoveThis @ptpartners.net.au> wrote in message
news:e101638d-5f8e-4c5a-bbff-b41b65ca41e4@a3g2000prm.googlegroups.com:

> On Sep 24, 1:59 pm, "Trevor Lawrence" <Trevor L.@Canberra> wrote:
> > Reply in-line
> >
> > "sharsy" <sh... RemoveThis @ptpartners.net.au> wrote in message
> >
> > news:a4db98e1-3e9d-483a-9dc6-a911c3317e1a@a8g2000prf.googlegroups.com...
> >
> > > Using Javascript is not a problem, as I said in my original post the
> > > menu is for our internal intranet - not an external webpage for the
> > > internet. We all work off the one server which is java enabled so
> > > that's not an issue.
> >
> > Given that it is an intranet application where Javascript is enabled on the
> > server, there should be no problem.
> > (I am not sure that Java is relevant - it doesn't appear to be used at all)
> >
> > However you wrote"sharsy" <sh... RemoveThis @ptpartners.net.au> wrote in message
> >
> > news:09fa7537-d87d-4002-8044-5b9e17c59076@n33g2000pri.googlegroups.com...
> >
> >
> >
> >
> >
> > > ........................................................  I am still
> > > having a problem
> > > however with changing the links on the secondary drop-down menu - I
> > > would like the user to be able to click on them and they open up a new
> > > document in the body frame of my FrontPage Intranet.
> >
> > > Here is the HTML Code I'm Using:
> >
> > > //Contents for menu 5
> > > var menu5=new Array()
> > > menu5[0]='<a href="http://www.javascriptkit.com/cutpastejava.shtml"
> > > style="color: #000000">Administrative</a>'
> > > menu5[1]='<a href="http://www.javascriptkit.com/javaindex.shtml"
> > > style="color: #000000">Computers</a>'
> > > menu5[2]='<a href="http://news.bbc.co.uk" style="color: #000000">HRM</
> > > a>'
> > > menu5[4]='<a href="http://www.javascriptkit.com/java/" style="color:
> > > #000000">Management</a>'
> > > menu5[3]='<a href="http://www.javascriptkit.com/dhtmltutors/"
> > > style="color: #000000">Training</a>'
> >
> > The links, as you have written them, will go directly to the page listed and
> > overwrite the open page.
> >
> > Do you want to open the new page and leave the calling page open?
> > If so, try this
> > var menu5=new Array(
> >    '<a href="page0.html" target="_blank" >Administrative</a>'
> > ,  '<a href="page1.html" target="_blank" >Computers</a>'
> > ,  '<a href="page2.html" target="_blank" >HRM</a>'
> > ,  '<a href="page3.html" target="_blank" >Training</a>'
> > ,  '<a href="page4.html" target="_blank" >Management</a>' )
> > where page0.html , page1.html are the pages you want to open.
> >
> > BTW, style="color: #000000" is unnecessary - this is the default text colour
> > of black
> >
> > However you use the phrase "body frame" which makes me wonder - do you have
> > a framed site?
> > If you do, then you will have to code this differently
> >
> > If not, you would still want to ensure that page0.html, page1.html, etc have
> > navigation back to the page which opens them. A simple link back could be
> > <input type="button" value="Home" onclick="location.href='index.html'" /> ,
> > but you may already have a navigation scheme set up
> > --
> > Trevor Lawrence
> > Canberra
> > Web Sitehttp://trevorl.mvps.org- Hide quoted text -
> >
> > - Show quoted text -
>
> Hi Trevor, yeah I'm using a frames page that has 4 parts - a top
> banner, three frames underneath this - the left hand side is the
> navigation menu, the middle one is the body and the right hand side is
> a links menu. When an option is chosen from the left hand side
> navigation menu, I would like just the middle body frame to change
> only. I'm not sure how this will work though! Could you please assist
> me on the coding?
> Thank you!
Back to top
Login to vote
Display posts from previous:   
       Home -> Office other -> Programming All times are: Eastern Time (US & Canada) (change)
Goto page Previous  1, 2, 3
Page 2 of 3

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
 Office
  Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET