The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Non-Ripable Topics

3 posters

Go down

In progress Non-Ripable Topics

Post by Azi March 5th 2013, 6:27 pm

Yes, i just had a quick question

I've noticed that throughout forumotion, on important posts(mainly the stickys)

You guys make them tables, like this for example,

You can't save the img but you can still copy the information.

I've been having a real issue with people ripping rules/rubrics/etc off of my forum lately and i was wondering if there was a way to make them non save-able and non-copy n' pasta'able. I'm not sure if this is possible, but make the text actually a jpeg and table class it so it can't be saved?

any help would be nice, thanks

and this question might be irrelivent here but is there any forumotion official website where you can advertise your forum there? for example a forum dedicated to computing/networking could be advertise in any given section or something of the sorts?
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by SLGray March 5th 2013, 6:51 pm

You can promote your forum here - https://help.forumotion.com/f13-rules-presentation-of-your-forum .

Here is a tutorial that could help with your issue - https://help.forumotion.com/t50779-script-to-disable-the-right-click .


Non-Ripable Topics Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi March 12th 2013, 6:12 pm

Code:
<script language=JavaScript>
    <!--

    //Disable right mouse click Script Please

    var message="Disabled";

    ///////////////////////////////////
    function clickIE4(){
    if (event.button==2){
    alert(message);
    return false;
    }
    }

    function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
    alert(message);
    return false;
    }
    }
    }

    if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    }
    else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    }

    document.oncontextmenu=new Function("alert(message);return false")

    // -->
    </script>

I'm a little bit confused on where to put this. I don't want to disable right clicks on my entire forum page, its gotta be between the <body></body> but where? just specific HTML URL's, again, NOT the entire forum. Just certain pages, ie: Rules URL, Rubric's URL, etc.
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi March 23rd 2013, 6:48 pm

Bump

Still trying to disable HTML options on certain pages, not the whole forum.
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi March 24th 2013, 7:59 pm

Still not too sure where to put this, ive even searched this on the forums and found other threads about this but the answer wasn't solved.. i just want to know how to disable right clicking on certain pages on my entire forum.

Code:
<script language=JavaScript>
    <!--

    //Disable right mouse click Script Please

    var message="Disabled";

    ///////////////////////////////////
    function clickIE4(){
    if (event.button==2){
    alert(message);
    return false;
    }
    }

    function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
    alert(message);
    return false;
    }
    }
    }

    if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    }
    else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    }

    document.oncontextmenu=new Function("alert(message);return false")

    // -->
    </script>
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi March 29th 2013, 5:57 am

bump
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by SLGray March 29th 2013, 6:12 am

Where exactly do you want this code to work on?


Non-Ripable Topics Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51482
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi March 31st 2013, 8:44 am

SLGray wrote:Where exactly do you want this code to work on?

A page on my forums, for example the page we have our Testing Rubric on.
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Sanket March 31st 2013, 9:53 am

Testing Rubric is a html page? Whats the code you added in that page?
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi April 2nd 2013, 10:52 pm

Sanket wrote:Testing Rubric is a html page? Whats the code you added in that page?

No no.

I would want to STOP right clicking on a particular page, for example.

Forumotion.com/rules BLOCK the right clicking on THAT page, but enable it on others such as Forumotion.com or Forumotion.com/help etc
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Sanket April 3rd 2013, 5:51 am

Okay, what is the code for your html page?
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Azi April 5th 2013, 10:02 pm

Sanket wrote:Okay, what is the code for your html page?

Code:
<script language=JavaScript>
    <!--

    //Disable right mouse click Script Please

    var message="Disabled";

    ///////////////////////////////////
    function clickIE4(){
    if (event.button==2){
    alert(message);
    return false;
    }
    }

    function clickNS4(e){
    if (document.layers||document.getElementById&&!document.all){
    if (e.which==2||e.which==3){
    alert(message);
    return false;
    }
    }
    }

    if (document.layers){
    document.captureEvents(Event.MOUSEDOWN);
    document.onmousedown=clickNS4;
    }
    else if (document.all&&!document.getElementById){
    document.onmousedown=clickIE4;
    }

    document.oncontextmenu=new Function("alert(message);return false")

    // -->
    </script>
that is the code that i want to put in the page.. but i don't know where
Azi
Azi
Forumember

Female Posts : 61
Reputation : 1
Language : English/Russian

Back to top Go down

In progress Re: Non-Ripable Topics

Post by Sanket April 6th 2013, 5:06 am

See this is the default html page structure.
http://www.webartzforum.com/t112-html-page-structure

If i had to use it in the same structure, my code will look like this.
Code:
<html>
<head>
<title>My First HTML Page - WebArtz</title>
</head>

<body>    <script language=JavaScript>
        <!--

        //Disable right mouse click Script Please

        var message="Disabled";

        ///////////////////////////////////
        function clickIE4(){
        if (event.button==2){
        alert(message);
        return false;
        }
        }

        function clickNS4(e){
        if (document.layers||document.getElementById&&!document.all){
        if (e.which==2||e.which==3){
        alert(message);
        return false;
        }
        }
        }

        if (document.layers){
        document.captureEvents(Event.MOUSEDOWN);
        document.onmousedown=clickNS4;
        }
        else if (document.all&&!document.getElementById){
        document.onmousedown=clickIE4;
        }

        document.oncontextmenu=new Function("alert(message);return false")

        // -->
        </script>
<h1>This is the HTML page header.</h1>
<p>Here is a paragraphi I wrote for my first HTML page.</p>
</body></html>

Here is the html page on my test forum.
http://testing.4rumer.com/h12-xaa
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum