PC Review


Reply
Thread Tools Rate Thread

Behaviour in FrontPage

 
 
=?Utf-8?B?R1Q=?=
Guest
Posts: n/a
 
      12th May 2005
Check this link:
http://livingwillamerica.com/index.php?page=poa/step1

Move your cursor to the First Name, and click on it.

How can make the cursor, mouse, change to a hand?????

GT
 
Reply With Quote
 
 
 
 
Steve Easton
Guest
Posts: n/a
 
      12th May 2005
Change this: <b onclick="FP_popUpMsg
to
<b style = "cursor:hand" onclick="FP_popUpMsg

iirc it only works in IE

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

"GT" <(E-Mail Removed)> wrote in message
newsE2E159E-AA39-42AD-8D5E-(E-Mail Removed)...
> Check this link:
> http://livingwillamerica.com/index.php?page=poa/step1
>
> Move your cursor to the First Name, and click on it.
>
> How can make the cursor, mouse, change to a hand?????
>
> GT



 
Reply With Quote
 
Chris Leeds, MVP-FrontPage
Guest
Posts: n/a
 
      12th May 2005
select the element and get in split view.
as it exists now you've got this:
<b onclick="FP_popUpMsg('Legal Name\r\nYour legal ...

just add a "style" like this:
style="cursorointer;"
so you'd wind up with this:
<b style="cursorointer;" onclick="FP_popUpMsg('Legal Name\r\nYour legal
....

HTH
--
Chris Leeds,
Microsoft MVP-FrontPage

ContentSeed: great tool for web masters,
a fantastic convenience for site owners.
http://contentseed.com/
--
"GT" <(E-Mail Removed)> wrote in message
newsE2E159E-AA39-42AD-8D5E-(E-Mail Removed)...
> Check this link:
> http://livingwillamerica.com/index.php?page=poa/step1
>
> Move your cursor to the First Name, and click on it.
>
> How can make the cursor, mouse, change to a hand?????
>
> GT



 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      12th May 2005
Eww - barf on both suggestions. An event handler has NO business on a <b>
tag.

The right way to do it would be to change this -

<b onclick="FP_popUpMsg('Legal Name\r\nYour legal ...

to this -

<a href="javascript:;" onclick="FP_popUpMsg('Legal Name\r\nYour legal
....><b>...</b></a>

Then you won't have to force anything to get the right cursor.


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

"Chris Leeds, MVP-FrontPage" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> select the element and get in split view.
> as it exists now you've got this:
> <b onclick="FP_popUpMsg('Legal Name\r\nYour legal ...
>
> just add a "style" like this:
> style="cursorointer;"
> so you'd wind up with this:
> <b style="cursorointer;" onclick="FP_popUpMsg('Legal Name\r\nYour legal
> ...
>
> HTH
> --
> Chris Leeds,
> Microsoft MVP-FrontPage
>
> ContentSeed: great tool for web masters,
> a fantastic convenience for site owners.
> http://contentseed.com/
> --
> "GT" <(E-Mail Removed)> wrote in message
> newsE2E159E-AA39-42AD-8D5E-(E-Mail Removed)...
>> Check this link:
>> http://livingwillamerica.com/index.php?page=poa/step1
>>
>> Move your cursor to the First Name, and click on it.
>>
>> How can make the cursor, mouse, change to a hand?????
>>
>> GT

>
>



 
Reply With Quote
 
=?Utf-8?B?R1Q=?=
Guest
Posts: n/a
 
      12th May 2005
Thank you, Thank you for all of this help. It helped. The one I used was:
<b style = "cursor:hand" onclick="FP_popUpMsg

GT

"GT" wrote:

> Check this link:
> http://livingwillamerica.com/index.php?page=poa/step1
>
> Move your cursor to the First Name, and click on it.
>
> How can make the cursor, mouse, change to a hand?????
>
> GT

 
Reply With Quote
 
Murray
Guest
Posts: n/a
 
      12th May 2005
Please don't. It's wrong to do it that way.

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

"GT" <(E-Mail Removed)> wrote in message
news:FCFAEAA9-F4C9-4303-9BDA-(E-Mail Removed)...
> Thank you, Thank you for all of this help. It helped. The one I used
> was:
> <b style = "cursor:hand" onclick="FP_popUpMsg
>
> GT
>
> "GT" wrote:
>
>> Check this link:
>> http://livingwillamerica.com/index.php?page=poa/step1
>>
>> Move your cursor to the First Name, and click on it.
>>
>> How can make the cursor, mouse, change to a hand?????
>>
>> GT



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      12th May 2005
You're welcome.
Murray is correct though, in that it's not the "most elegant" solution.
However it works, in most browsers.

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

"GT" <(E-Mail Removed)> wrote in message
news:FCFAEAA9-F4C9-4303-9BDA-(E-Mail Removed)...
> Thank you, Thank you for all of this help. It helped. The one I used was:
> <b style = "cursor:hand" onclick="FP_popUpMsg
>
> GT
>
> "GT" wrote:
>
> > Check this link:
> > http://livingwillamerica.com/index.php?page=poa/step1
> >
> > Move your cursor to the First Name, and click on it.
> >
> > How can make the cursor, mouse, change to a hand?????
> >
> > GT



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      12th May 2005
Ok I'm hooked.
What makes it "wrong" other than it's an in-line style.??
A style can be applied to any element on a page, correct??

It could be done 3 ways:
Your way.
With a mouse over event swapping the style.
Or using the in-line version.
Do they not all accomplish the same thing??

;-)

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

"Murray" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Please don't. It's wrong to do it that way.
>
> --
> Murray
> ============
>
> "GT" <(E-Mail Removed)> wrote in message
> news:FCFAEAA9-F4C9-4303-9BDA-(E-Mail Removed)...
> > Thank you, Thank you for all of this help. It helped. The one I used
> > was:
> > <b style = "cursor:hand" onclick="FP_popUpMsg
> >
> > GT
> >
> > "GT" wrote:
> >
> >> Check this link:
> >> http://livingwillamerica.com/index.php?page=poa/step1
> >>
> >> Move your cursor to the First Name, and click on it.
> >>
> >> How can make the cursor, mouse, change to a hand?????
> >>
> >> GT

>
>



 
Reply With Quote
 
Jim Cheshire
Guest
Posts: n/a
 
      12th May 2005
Steve Easton wrote:
> Ok I'm hooked.
> What makes it "wrong" other than it's an in-line style.??
> A style can be applied to any element on a page, correct??
>
> It could be done 3 ways:
> Your way.
> With a mouse over event swapping the style.
> Or using the in-line version.
> Do they not all accomplish the same thing??
>


Depends on which browser you're using. For cross-browser, it should be
this:

cursor: pointer; cursor: hand;

They must be in that order.

--
Jim Cheshire
JIMCO
http://www.jimcoaddins.com

The premiere add-in and software source
for Microsoft FrontPage.



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      12th May 2005
Hi Jim,
Good to see you here.

;-)

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

"Jim Cheshire" <(E-Mail Removed)> wrote in message news:(E-Mail Removed)...
> Steve Easton wrote:
> > Ok I'm hooked.
> > What makes it "wrong" other than it's an in-line style.??
> > A style can be applied to any element on a page, correct??
> >
> > It could be done 3 ways:
> > Your way.
> > With a mouse over event swapping the style.
> > Or using the in-line version.
> > Do they not all accomplish the same thing??
> >

>
> Depends on which browser you're using. For cross-browser, it should be
> this:
>
> cursor: pointer; cursor: hand;
>
> They must be in that order.
>
> --
> Jim Cheshire
> JIMCO
> http://www.jimcoaddins.com
>
> The premiere add-in and software source
> for Microsoft FrontPage.
>
>
>



 
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
Which frontpage components dont require frontpage enabled server? =?Utf-8?B?UmFjaGVs?= Microsoft Frontpage 7 3rd Feb 2007 11:27 AM
how can I open a frontpage 2003 file on frontpage 2002 or 2000 =?Utf-8?B?VmFu?= Microsoft Frontpage 2 3rd May 2006 03:46 PM
Folder deletion behaviour in Frontpage strongp@hotmail.com Microsoft Frontpage 4 4th Mar 2006 07:38 PM
OnMouseOver and OnMouseOut behaviour on table in Frontpage =?Utf-8?B?R2FicmllbA==?= Microsoft Frontpage 1 3rd Nov 2005 05:27 PM
Microsoft FrontPage: FrontPage Error when sending email from Form =?Utf-8?B?UnViZW4=?= Microsoft Frontpage 1 30th Jun 2005 10:24 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:41 AM.