Shoutbox

InitialPos values - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: InitialPos values (/showthread.php?tid=76980)

InitialPos values by scutterman on 08-24-2007 at 02:34 PM

can someone give me a list of the values that are valid for the xml <window> <position> tag. I've tried looking in the documentation, msdn, google, and here but I can't find it
TIA
~~Scutterman~~


RE: InitialPos values by Matti on 08-24-2007 at 06:00 PM

From the PlusInterace.xsd file:

code:
<xs:attribute name="InitialPos" use="optional" default="CenteredParent">
   <xs:simpleType>
      <xs:restriction base="xs:string">
         <xs:enumeration value="Normal"/>
         <xs:enumeration value="CenteredParent"/>
         <xs:enumeration value="CenteredScreen"/>
         <xs:enumeration value="Minimised"/>
         <xs:enumeration value="Maximised"/>
         <xs:enumeration value="Random"/>
      </xs:restriction>
   </xs:simpleType>
</xs:attribute>
The PlusInterface.xsd file is a schema file for Plus! interfaces and can be used to validate your Interface XMLs. It contains all possible values for the different elements. You can download it by opening the Plus! documentation and click the link "Schema file for Interface Windows" in XML Schemas Reference > Interface Windows > Information.
RE: InitialPos values by scutterman on 08-25-2007 at 09:16 AM

Thanks, I'll download that asap

~~Scutterman~~