how do i undo the right click disable on my home page useing Fron

T

Tom Pepper Willett

Are you saying you have a script that disables right click? If so, did you
put it there? And, if so, can you delete the script.

Any any case, you haven't provided enough information.

How to ask a newsgroup question:
http://support.microsoft.com/kb/555375
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/

About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
===
| how do i undo the right click disable on my home page useing FrontPage?
 
E

E. T. Culling

Not a very clear question. If you want to disable right click - don't
bother. It doesn't really stop anyone. See many, many previous posts.
ETC
 
A

Andrew Murray

The OP want's to *disable* the right-click disable script i.e. get rid of
the script that disables right-clicking.

To the OP: Just delete it from the code in code view, on the page(s) that it
is effective in.
 
G

Guest

Actualy the previous webmaster of the site disabled right clicks to prevent
theft of content. As this is futile I would like to enable right clicks on
this site. I have gone thru all the menu options in FrontPage and there is no
reference to this option at all.
Please help Jim....
 
G

Guest

Actualy the previous webmaster of the site disabled right clicks to prevent
theft of content. As this is futile I would like to enable right clicks on
this site. I have gone thru all the menu options in FrontPage and there is no
reference to this option at all.
Please help Jim....
 
S

Stefan B Rusynko

Look in the <body> tag or the head section for a JavaScript function
- or post a URL to your page online

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


| Actualy the previous webmaster of the site disabled right clicks to prevent
| theft of content. As this is futile I would like to enable right clicks on
| this site. I have gone thru all the menu options in FrontPage and there is no
| reference to this option at all.
| Please help Jim....
|
| "E. T. Culling" wrote:
|
| > Not a very clear question. If you want to disable right click - don't
| > bother. It doesn't really stop anyone. See many, many previous posts.
| > ETC
| > | > > how do i undo the right click disable on my home page useing FrontPage?
| >
| >
| >
 
T

Tom Pepper Willett

It's not an option in FP. It's a javascript that the previous webmaster used
and inserted in FP. You need to find the script in html view and delete it.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
FrontPage Support:
http://www.frontpagemvps.com/

About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
===
| Actualy the previous webmaster of the site disabled right clicks to
prevent
| theft of content. As this is futile I would like to enable right clicks on
| this site. I have gone thru all the menu options in FrontPage and there is
no
| reference to this option at all.
| Please help Jim....
|
| "Tom Pepper Willett" wrote:
|
| > Are you saying you have a script that disables right click? If so, did
you
| > put it there? And, if so, can you delete the script.
| >
| > Any any case, you haven't provided enough information.
| >
| > How to ask a newsgroup question:
| > http://support.microsoft.com/kb/555375
| > --
| > ===
| > Tom "Pepper" Willett
| > Microsoft MVP - FrontPage
| > ---
| > FrontPage Support:
| > http://www.frontpagemvps.com/
| >
| > About FrontPage 2003:
| > http://office.microsoft.com/home/office.aspx?assetid=FX01085802
| > ===
| > | > | how do i undo the right click disable on my home page useing
FrontPage?
| >
| >
| >
 
T

Thomas A. Rowe

This is not something that is provided by FP, the other person manually inserted JavaScript coding
to block right click, and you will have to look at each page and remove it.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
G

Guest

You will need open Code View in Frontpage.

Most likely the script is in the head section between tags <head> and </head>

The right click block will begin with <script> and end with </script>

Here is an example of a Right Click Script. Use this as an example and see
if your page contains similarities. Also you can just change the text if you
don't like the popup message.

Cut <script> to </script> and then save. Reload page and see you deleted the
proper script. If not paste the information back and cut another script.
Sometimes while working in Code View Frontpage won't let you Undo last if you
saved the page. That is why you highlight and cut.

<SCRIPT LANGUAGE="JavaScript1.1">

function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Sorry, you do not have permission to right click on this page.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;

</script>

Charles
http://www.yellowecho.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Disable right click 6
How do you stop XP SP2, blocking layer content 2
Problems with "undo" 2
how to right click disable my web page 7
page width 1
disable Right click feature 3
Undo save 1
disable image copy 3

Top