quote:
Originally posted by stuartbennett
i added in my custom options and viola i kept getting messages saying that the skin has no user definable options
This would indeed suggest a skininfo.xml problem. If it were not a skininfo problem the generic options dialog would appear (if not the custom one).
Your problem is the </Skin> tag. You have closed it twice, the second one is the problem.
quote:
</OptionInterface>
</Skin>
<MessengerPlus>
<TabbedChatBar>
<Color1><Position X="3" Y="3"/></Color1>
<Color2><R>0</R><G>0</G><B>0</B></Color2>
</TabbedChatBar>
</MessengerPlus>
</Skin>
Basilis' problem:
quote:
Originally posted by Basilis
quote:
What exactly do I have to write in the SkinInfo in order to display my Options Panel? I tried this:
<OptionInterface>
<InterfaceDir>Options</InterfaceDir>
<InterfaceFile>OptInter.xml</InterfaceFile>
<WindowIds>
<WindowId Language="en-us">SkinOpt</WindowId>
</WindowIds>
</OptionInterface>
and it says that my skin doesn't have any modifiable options. What is wrong?
Any solution for me?
Basilis, that code has to be nested in the
SkinInfo > Options > Skin tag. That code would also assume that you have a file called OptInter.xml in a folder (directory) named Options.
Any properties which you want to be editable in the custom options dialog also have to be defined in SkinInfo.xml above the aforementioned code (nested in
SkinInfo > Options > Skin > Properties).