PC Review


Reply
Thread Tools Rate Thread

Display a note or comment

 
 
Baha
Guest
Posts: n/a
 
      28th Mar 2005
Greetings:

In Front page 2000 I want to be able to display a note or
text when the curser touches a certain part of the page.
For example, when the curser points to a picture or a line
in text.

What is the easiest way to do this? Can I use any of the
insert commands?

Thanks

Baha

 
Reply With Quote
 
 
 
 
=?Utf-8?B?SmltIEJ1eWVucw==?=
Guest
Posts: n/a
 
      28th Mar 2005
For pictures, display the Picture Properties dialog box and enter the text
you want in the Alternate Representations, Text box.

For other tags, switch to HTML view and enter a title attribute such as

<p title="This is it.">Paragraph content</p>

Jim Buyens
Microsoft MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Windows SharePoint Services Inside Out
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------




"Baha" wrote:

> Greetings:
>
> In Front page 2000 I want to be able to display a note or
> text when the curser touches a certain part of the page.
> For example, when the curser points to a picture or a line
> in text.
>
> What is the easiest way to do this? Can I use any of the
> insert commands?
>
> Thanks
>
> Baha
>
>

 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      28th Mar 2005
You have to manually insert a Title attribute to the image tag in HTML View:

Alt="my photo" Title="My photo"

I am not sure how you would add it to text, when the text is not a link, as I haven't had a need to
do this yet, so you will need to wait for someone else to answer that part.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"Baha" <(E-Mail Removed)> wrote in message news:084301c533df$f9985200$(E-Mail Removed)...
> Greetings:
>
> In Front page 2000 I want to be able to display a note or
> text when the curser touches a certain part of the page.
> For example, when the curser points to a picture or a line
> in text.
>
> What is the easiest way to do this? Can I use any of the
> insert commands?
>
> Thanks
>
> Baha
>



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      28th Mar 2005
Alt attributes are only (incorrectly) displayed by IE4+, I believe. No
other browser will display it UNLESS you have elected not to download
graphics in which case all browsers will then display the alt attribute's
contents. If you want a reliable tooltip, you will have to use the title
attribute throughout.

--
Murray
============

"Jim Buyens" <(E-Mail Removed)> wrote in message
news:BD002F05-A1BD-40CA-BA6F-(E-Mail Removed)...
> For pictures, display the Picture Properties dialog box and enter the text
> you want in the Alternate Representations, Text box.
>
> For other tags, switch to HTML view and enter a title attribute such as
>
> <p title="This is it.">Paragraph content</p>
>
> Jim Buyens
> Microsoft MVP
> http://www.interlacken.com
> Author of:
> *----------------------------------------------------
> |\---------------------------------------------------
> || Microsoft Windows SharePoint Services Inside Out
> || Microsoft Office FrontPage 2003 Inside Out
> ||---------------------------------------------------
> || Web Database Development Step by Step .NET Edition
> || Microsoft FrontPage Version 2002 Inside Out
> || Faster Smarter Beginning Programming
> || (All from Microsoft Press)
> |/---------------------------------------------------
> *----------------------------------------------------
>
>
>
>
> "Baha" wrote:
>
>> Greetings:
>>
>> In Front page 2000 I want to be able to display a note or
>> text when the curser touches a certain part of the page.
>> For example, when the curser points to a picture or a line
>> in text.
>>
>> What is the easiest way to do this? Can I use any of the
>> insert commands?
>>
>> Thanks
>>
>> Baha
>>
>>



 
Reply With Quote
 
Mike Mueller
Guest
Posts: n/a
 
      28th Mar 2005
What you are looking for is called a tool-tip, and on FP2000
you need to enter it on the html tab

You can use a title attribute (not to be confused with title
tag) on any portion of a page.

title="Sample Text"

must be as an attibute of an html tag-
<p title="Title over paragraph"></p>
<table title="Title over a table"></table>
and so on. You can even do it on the entire page.... <body
title="Title over the whole page">

If you have mulitple titles on 'layered' items, the last
elements title is what is displayed
example:
<body title="Title over the whole page">
<p title="Title over paragraph"></p>

Wherever you hover over that particular paragraph, you will
get the 'Title over paragraph". If you hover elsewher on
the page, you will get "Title over whole page"

alt attribute- used on images as a placeholder for those who
do not allow images. IE will show this as a tool-tip when
the title attribute is not used. Other browsers will not
display the alt information as a tool tip. It is important
to use the alt attribute anyways, as search engines use the
alt information also

Mike


Baha wrote:
: Greetings:
:
: In Front page 2000 I want to be able to display a note or
: text when the curser touches a certain part of the page.
: For example, when the curser points to a picture or a line
: in text.
:
: What is the easiest way to do this? Can I use any of the
: insert commands?
:
: Thanks
:
: Baha


 
Reply With Quote
 
Mike Mueller
Guest
Posts: n/a
 
      28th Mar 2005
If you just want it on a portion of a paragraph, you can use
it in a <span>.
eg....

I have a lot of text here, and the tool tip will display
only over <span title="You found the tooltip">this</span>
word.



Thomas A. Rowe wrote:
: You have to manually insert a Title attribute to the
: image tag in HTML View:
:
: Alt="my photo" Title="My photo"
:
: I am not sure how you would add it to text, when the text
: is not a link, as I haven't had a need to do this yet, so
: you will need to wait for someone else to answer that
: part.
:
:
: "Baha" <(E-Mail Removed)> wrote in message
: news:084301c533df$f9985200$(E-Mail Removed)...
:: Greetings:
::
:: In Front page 2000 I want to be able to display a note or
:: text when the curser touches a certain part of the page.
:: For example, when the curser points to a picture or a
:: line in text.
::
:: What is the easiest way to do this? Can I use any of the
:: insert commands?
::
:: Thanks
::
:: Baha


 
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
Visible note/comment Chrisj20 Microsoft Word Document Management 3 6th Nov 2008 09:28 PM
Validation note to comment note =?Utf-8?B?T2xkamF5?= Microsoft Excel Misc 1 23rd Aug 2007 04:27 PM
Adding a note/comment =?Utf-8?B?ZWRqdQ==?= Microsoft Excel Misc 3 28th Mar 2007 01:14 PM
Re: Note or Comment Gord Dibben Microsoft Excel Misc 2 8th Jan 2007 05:09 PM
How do I remove a comment, note, or ? =?Utf-8?B?a3lkYW40Nw==?= Microsoft Excel Worksheet Functions 1 14th Jul 2006 08:19 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:43 PM.