Jump to content

Show PJ controls if hidden


TOKe

Recommended Posts

  • 5 weeks later...

Okay, after a few minutes of messing around with the java I found the hide and show commands within the files. Here is how to fix it if you are having this problem:

1. Open jsprototype-1.4.0.js in Wordpad or some text editor.

2. Search for the code below

 hide: function() {
    for (var i = 0; i < arguments.length; i++) {
      var element = $(arguments[i]);
      element.style.display = 'none';
    }
  },

3. Replace this line:

element.style.display = 'none';

with the line below (I recommend you comment out the line instead of deleting it by putting /* before the line and */ after the line):

element.style.display = '';

4. All the advanced controls should show up again when you run the program. Change the settings and then go back and remove the changes you made  in the jsprototype-1.4.0.js file.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...