Design Evolved Community Forum

Full Version: Help! Scripts and Plus! Buttons appearing twice..!?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
This is also happening in Chat Windows.

Screenshot:


This is my first ever skin.

Made it using Open Live.

edit: can't post my code, nowhere will let me upload a file that size... and it wont fit on here Surprised

Any reason's why this might be happening?!
Open Live already has the code for the Plus! and Script buttons in the 923 file. You probably enabled Plus! buttons in your SkinInfo.
Post the code you think might be faulty here.
If you have deleted these two lines then this is why your problem is happening:

Code:
<!-- The two lines below is needed in order to allow the user options to remove messenger plus buttons to work -->
          <AllowContactListChange>false</AllowContactListChange>
          <AllowChatWndChange>false</AllowChatWndChange>


Basicly these two lines prevent the plus buttons from being loaded so that I could add my own custom code to allow you to have the option of showing them or not.

If you remove these two lines then you have Plus! Buttons loading as well as my own custom ones.

Just put these lines back to where they were and it will fix it. This is where they were:

Code:
</TabbedChatBar>
          
          <!-- The two lines below is needed in order to allow the user options to remove messenger plus buttons to work -->
          <AllowContactListChange>false</AllowContactListChange>
          <AllowChatWndChange>false</AllowChatWndChange>
          
        </MessengerPlus>
      </Options>

Thanks willz! Problem fixed Smile
Reference URL's