PC Review


Reply
Thread Tools Rate Thread

Bookmark a dropdown menu?

 
 
=?Utf-8?B?SmF5ZQ==?=
Guest
Posts: n/a
 
      28th Dec 2004
Any easy ways to use a drop down menu to get to a bookmarked spot?

I already have the items bookmarked, but can not figure out how to apply a
bookmark to an item in a drop down menu.

TIA
 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      28th Dec 2004
When creating the hyperlink, in the hyperlink dialog ( panel ) browse to the file ( the page )
containing the bookmarks, click once on the file, and then click bookmarks, and then select from the
list of bookmarks.

If hand scribing your hyperlinks simply add the pound sign and bookmarked "word" to the end of the
hyperlink like this: thepage.htm#bookmarkword

Note, bookmarks made of multiple words will not work. #book mark will not work. #bookmark will
work.
This is true for all bookmarks.

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

"Jaye" <(E-Mail Removed)> wrote in message
news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> Any easy ways to use a drop down menu to get to a bookmarked spot?
>
> I already have the items bookmarked, but can not figure out how to apply a
> bookmark to an item in a drop down menu.
>
> TIA



 
Reply With Quote
 
=?Utf-8?B?SmF5ZQ==?=
Guest
Posts: n/a
 
      28th Dec 2004
After searching... What I am trying to do is a "jump menu" any easy way to do
this w/o knowing HTML?

Thanks

"Steve Easton" wrote:

> When creating the hyperlink, in the hyperlink dialog ( panel ) browse to the file ( the page )
> containing the bookmarks, click once on the file, and then click bookmarks, and then select from the
> list of bookmarks.
>
> If hand scribing your hyperlinks simply add the pound sign and bookmarked "word" to the end of the
> hyperlink like this: thepage.htm#bookmarkword
>
> Note, bookmarks made of multiple words will not work. #book mark will not work. #bookmark will
> work.
> This is true for all bookmarks.
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed............
> ........................with a computer
>
> "Jaye" <(E-Mail Removed)> wrote in message
> news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> > Any easy ways to use a drop down menu to get to a bookmarked spot?
> >
> > I already have the items bookmarked, but can not figure out how to apply a
> > bookmark to an item in a drop down menu.
> >
> > TIA

>
>
>

 
Reply With Quote
 
Don
Guest
Posts: n/a
 
      28th Dec 2004
Copy Paste...

<form>
<select onchange="if(this.selectedIndex > 0 ) location.href='http://' +
this.options[this.selectedIndex].value">
<option>Select link</option>
<option value="www.microsoft.com">Microsoft</option>
<option value="msdn.microsoft.com">MSDN</option>
</select>
</form>

This should get you started..
Change the link... value="www.yourlink.com">MyLink</option>
When looking at the dropdown you will see MyLink and it would take you to
www.yourlink.com

Add as many lines of options as you need

Don
============
"Jaye" <(E-Mail Removed)> wrote in message
news:BC467651-904E-41EA-BCEA-(E-Mail Removed)...
| After searching... What I am trying to do is a "jump menu" any easy way to
do
| this w/o knowing HTML?
|
| Thanks
|
| "Steve Easton" wrote:
|
| > When creating the hyperlink, in the hyperlink dialog ( panel ) browse to
the file ( the page )
| > containing the bookmarks, click once on the file, and then click
bookmarks, and then select from the
| > list of bookmarks.
| >
| > If hand scribing your hyperlinks simply add the pound sign and
bookmarked "word" to the end of the
| > hyperlink like this: thepage.htm#bookmarkword
| >
| > Note, bookmarks made of multiple words will not work. #book mark will
not work. #bookmark will
| > work.
| > This is true for all bookmarks.
| >
| > --
| > Steve Easton
| > Microsoft MVP FrontPage
| > 95isalive
| > This site is best viewed............
| > ........................with a computer
| >
| > "Jaye" <(E-Mail Removed)> wrote in message
| > news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
| > > Any easy ways to use a drop down menu to get to a bookmarked spot?
| > >
| > > I already have the items bookmarked, but can not figure out how to
apply a
| > > bookmark to an item in a drop down menu.
| > >
| > > TIA
| >
| >
| >


 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      28th Dec 2004
However, you should change the "onchange" event to an onclick event with a Go button to fire it.

People who navigate a page using the keyboard and not a mouse, will never get past the first
selection in the dropdown when using onchange to fire the event.

;-)


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

"Don" <~-~@nowhere.org> wrote in message news:(E-Mail Removed)...
> Copy Paste...
>
> <form>
> <select onchange="if(this.selectedIndex > 0 ) location.href='http://' +
> this.options[this.selectedIndex].value">
> <option>Select link</option>
> <option value="www.microsoft.com">Microsoft</option>
> <option value="msdn.microsoft.com">MSDN</option>
> </select>
> </form>
>
> This should get you started..
> Change the link... value="www.yourlink.com">MyLink</option>
> When looking at the dropdown you will see MyLink and it would take you to
> www.yourlink.com
>
> Add as many lines of options as you need
>
> Don
> ============
> "Jaye" <(E-Mail Removed)> wrote in message
> news:BC467651-904E-41EA-BCEA-(E-Mail Removed)...
> | After searching... What I am trying to do is a "jump menu" any easy way to
> do
> | this w/o knowing HTML?
> |
> | Thanks
> |
> | "Steve Easton" wrote:
> |
> | > When creating the hyperlink, in the hyperlink dialog ( panel ) browse to
> the file ( the page )
> | > containing the bookmarks, click once on the file, and then click
> bookmarks, and then select from the
> | > list of bookmarks.
> | >
> | > If hand scribing your hyperlinks simply add the pound sign and
> bookmarked "word" to the end of the
> | > hyperlink like this: thepage.htm#bookmarkword
> | >
> | > Note, bookmarks made of multiple words will not work. #book mark will
> not work. #bookmark will
> | > work.
> | > This is true for all bookmarks.
> | >
> | > --
> | > Steve Easton
> | > Microsoft MVP FrontPage
> | > 95isalive
> | > This site is best viewed............
> | > ........................with a computer
> | >
> | > "Jaye" <(E-Mail Removed)> wrote in message
> | > news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> | > > Any easy ways to use a drop down menu to get to a bookmarked spot?
> | > >
> | > > I already have the items bookmarked, but can not figure out how to
> apply a
> | > > bookmark to an item in a drop down menu.
> | > >
> | > > TIA
> | >
> | >
> | >
>
>



 
Reply With Quote
 
=?Utf-8?B?RnJvbnRQYWdlRm9ybXM=?=
Guest
Posts: n/a
 
      29th Dec 2004
Hi Jaye,

http://frontpageforms.com/dd_bookmark.htm

The Hyperlink menu I use is a tad cumbersome, as it requires a <Head> script.

"Jaye" wrote:

> Any easy ways to use a drop down menu to get to a bookmarked spot?
>
> I already have the items bookmarked, but can not figure out how to apply a
> bookmark to an item in a drop down menu.
>
> TIA

 
Reply With Quote
 
Craig Schiller
Guest
Posts: n/a
 
      29th Dec 2004
Steve -

I have seen this caveat against using multiple words as bookmarks posted in this newsgroup a number of
times, and it isn't true in my experience. Multiple words work fine as bookmarks on my own website (see
the links section of www.theschillergroup.com if you're curious enough --- the multiple word categories
for the links are all bookmarks). Frontpage will turn multiple words automatically into bookmarks the
same way it does hyperlinks. I wonder what the source of this confusion might be?

Craig

Steve Easton wrote:

> When creating the hyperlink, in the hyperlink dialog ( panel ) browse to the file ( the page )
> containing the bookmarks, click once on the file, and then click bookmarks, and then select from the
> list of bookmarks.
>
> If hand scribing your hyperlinks simply add the pound sign and bookmarked "word" to the end of the
> hyperlink like this: thepage.htm#bookmarkword
>
> Note, bookmarks made of multiple words will not work. #book mark will not work. #bookmark will
> work.
> This is true for all bookmarks.
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed............
> .......................with a computer
>
> "Jaye" <(E-Mail Removed)> wrote in message
> news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> > Any easy ways to use a drop down menu to get to a bookmarked spot?
> >
> > I already have the items bookmarked, but can not figure out how to apply a
> > bookmark to an item in a drop down menu.
> >
> > TIA


 
Reply With Quote
 
Wes
Guest
Posts: n/a
 
      29th Dec 2004
Actually, multiple words work just fine. Just cannot have any spaces.
Select a sentence and FP will insert underscores in the spaces.

"Craig Schiller" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Steve -
>
> I have seen this caveat against using multiple words as bookmarks posted
> in this newsgroup a number of
> times, and it isn't true in my experience. Multiple words work fine as
> bookmarks on my own website (see
> the links section of www.theschillergroup.com if you're curious enough ---
> the multiple word categories
> for the links are all bookmarks). Frontpage will turn multiple words
> automatically into bookmarks the
> same way it does hyperlinks. I wonder what the source of this confusion
> might be?
>
> Craig
>
> Steve Easton wrote:
>
>> When creating the hyperlink, in the hyperlink dialog ( panel ) browse to
>> the file ( the page )
>> containing the bookmarks, click once on the file, and then click
>> bookmarks, and then select from the
>> list of bookmarks.
>>
>> If hand scribing your hyperlinks simply add the pound sign and bookmarked
>> "word" to the end of the
>> hyperlink like this: thepage.htm#bookmarkword
>>
>> Note, bookmarks made of multiple words will not work. #book mark will
>> not work. #bookmark will
>> work.
>> This is true for all bookmarks.
>>
>> --
>> Steve Easton
>> Microsoft MVP FrontPage
>> 95isalive
>> This site is best viewed............
>> .......................with a computer
>>
>> "Jaye" <(E-Mail Removed)> wrote in message
>> news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
>> > Any easy ways to use a drop down menu to get to a bookmarked spot?
>> >
>> > I already have the items bookmarked, but can not figure out how to
>> > apply a
>> > bookmark to an item in a drop down menu.
>> >
>> > TIA

>



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      29th Dec 2004
Hi Craig.
I took a look, very interesting.
Every time I've tried to use multiple words as bookmarks when linking to a different page, they
always wound up opening the next page at the top instead of at the bookmark.

That was back in FP 98 days, and as a result I've always just used single words ever since.

I've seen others post the same thing too.!!

--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

"Craig Schiller" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Steve -
>
> I have seen this caveat against using multiple words as bookmarks posted in this newsgroup a

number of
> times, and it isn't true in my experience. Multiple words work fine as bookmarks on my own website

(see
> the links section of www.theschillergroup.com if you're curious enough --- the multiple word

categories
> for the links are all bookmarks). Frontpage will turn multiple words automatically into bookmarks

the
> same way it does hyperlinks. I wonder what the source of this confusion might be?
>
> Craig
>
> Steve Easton wrote:
>
> > When creating the hyperlink, in the hyperlink dialog ( panel ) browse to the file ( the page )
> > containing the bookmarks, click once on the file, and then click bookmarks, and then select from

the
> > list of bookmarks.
> >
> > If hand scribing your hyperlinks simply add the pound sign and bookmarked "word" to the end of

the
> > hyperlink like this: thepage.htm#bookmarkword
> >
> > Note, bookmarks made of multiple words will not work. #book mark will not work. #bookmark

will
> > work.
> > This is true for all bookmarks.
> >
> > --
> > Steve Easton
> > Microsoft MVP FrontPage
> > 95isalive
> > This site is best viewed............
> > .......................with a computer
> >
> > "Jaye" <(E-Mail Removed)> wrote in message
> > news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> > > Any easy ways to use a drop down menu to get to a bookmarked spot?
> > >
> > > I already have the items bookmarked, but can not figure out how to apply a
> > > bookmark to an item in a drop down menu.
> > >
> > > TIA

>



 
Reply With Quote
 
Craig Schiller
Guest
Posts: n/a
 
      30th Dec 2004
Actually, multiple words work just fine with spaces too. FP does not insert
underscores, at least with FP 2002.

Craig

Wes wrote:

> Actually, multiple words work just fine. Just cannot have any spaces.
> Select a sentence and FP will insert underscores in the spaces.
>
> "Craig Schiller" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Steve -
> >
> > I have seen this caveat against using multiple words as bookmarks posted
> > in this newsgroup a number of
> > times, and it isn't true in my experience. Multiple words work fine as
> > bookmarks on my own website (see
> > the links section of www.theschillergroup.com if you're curious enough ---
> > the multiple word categories
> > for the links are all bookmarks). Frontpage will turn multiple words
> > automatically into bookmarks the
> > same way it does hyperlinks. I wonder what the source of this confusion
> > might be?
> >
> > Craig
> >
> > Steve Easton wrote:
> >
> >> When creating the hyperlink, in the hyperlink dialog ( panel ) browse to
> >> the file ( the page )
> >> containing the bookmarks, click once on the file, and then click
> >> bookmarks, and then select from the
> >> list of bookmarks.
> >>
> >> If hand scribing your hyperlinks simply add the pound sign and bookmarked
> >> "word" to the end of the
> >> hyperlink like this: thepage.htm#bookmarkword
> >>
> >> Note, bookmarks made of multiple words will not work. #book mark will
> >> not work. #bookmark will
> >> work.
> >> This is true for all bookmarks.
> >>
> >> --
> >> Steve Easton
> >> Microsoft MVP FrontPage
> >> 95isalive
> >> This site is best viewed............
> >> .......................with a computer
> >>
> >> "Jaye" <(E-Mail Removed)> wrote in message
> >> news:0B4C28B0-1BF8-47D4-B395-(E-Mail Removed)...
> >> > Any easy ways to use a drop down menu to get to a bookmarked spot?
> >> >
> >> > I already have the items bookmarked, but can not figure out how to
> >> > apply a
> >> > bookmark to an item in a drop down menu.
> >> >
> >> > TIA

> >


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
select From dropdown and return another dropdown menu RE4379 Microsoft Excel Misc 2 11th Mar 2010 03:09 PM
update dropdown on form bookmark. =?Utf-8?B?RS1tYWlsIHJlcG9ydCB1c2luZyBMb3R1cyBOb3Rl Microsoft Word Document Management 0 15th Oct 2007 07:20 PM
How to show dropdown list of menu items just like click on Parent menu by writing code Sakharam Phapale Microsoft C# .NET 1 7th Jan 2005 03:47 PM
Dropdown bookmark name Phil Microsoft Word Document Management 7 17th Feb 2004 01:51 PM
problem adding button to an EXISTING dropdown menu on a Worksheet Menu Bar Karen P Microsoft Excel Worksheet Functions 3 29th Oct 2003 12:42 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:24 AM.