View Single Post
  #10  
Unread 06-16-2007, 02:11 PM
dping28 dping28 is offline
A Grove Wisp
Interface Author - Click to view interfaces
 
Join Date: Feb 2005
Server: Antonia Bayle
Posts: 26
Default

I havent gotten around to trying out either of your ideas yet. been pretty busy. But here is what I have:

Code:
<?xml version="1.0" encoding="utf-8"?>
<Page Activated="true" alwaysonbottom="false" eq2usescomwndcontrols="true" Location="203,427" MaximumSize="1024,1024" Name="StartButton" PackLocation="left,bottom" PackLocationProp="0203/0001,-341/0001" savessettings="true" ScrollExtent="248,74" Size="248,74" UserMovable="true">
<Page Location="55,8" Name="Assist" ScrollExtent="188,62" Size="188,62">
<Checkbox BackgroundColor="#FFFFFF" BackgroundOpacity="1.000" Location="-3,34" MinimumSize="22,22" Name="MTCheck" OnSet="Parent.MTName.Editable=false" OnUnset="Parent.MTName.Editable=true" ScrollExtent="23,24" Size="23,24" Style="/CommonElements.Checkbox.data.style"></Checkbox>
<Textbox BackgroundColor="#FFFFFF" BackgroundOpacity="1.000" Cursor="/Cursor.Text" Location="18,-2" MaximumSize="16384,30" MinimumSize="30,30" Name="MAName" RStyleActivated="Textfield.data.selected.rect" RStyleDefault="Textfield.data.default.rect" RStyleDisabled="Textfield.data.disabled.rect" RStyleDisabledActivated="Textfield.data.disabled.rect" RStyleMouseOver="Textfield.data.mouseover.rect" RStyleMouseOverActivated="Textfield.data.selected.rect" RStyleMouseOverSelected="Textfield.data.selected.rect" RStyleSelected="Textfield.data.selected.rect" ScrollExtent="130,30" Size="130,30" Style="/CommonElements.Textfield.data.style"></Textbox>
<Button LocalText="MA" Location="147,-3" MaximumSize="16384,32" MinimumSize="32,32" Name="MA" OnPress="target Parent.MAName.LocalText" ScrollExtent="38,32" Size="38,32" Style="/CommonElements.PushButton.data.style">MA</Button>
<Checkbox BackgroundColor="#FFFFFF" BackgroundOpacity="1.000" Location="-3,1" MinimumSize="22,22" Name="MACheck" OnSet="Parent.MAName.Editable=false" OnUnset="Parent.MAName.Editable=true" ScrollExtent="23,24" Size="23,24" Style="/CommonElements.Checkbox.data.style"></Checkbox>
<Button LocalText="MT" Location="147,30" MaximumSize="16384,32" MinimumSize="32,32" Name="MT" OnPress="target Parent.MTName.LocalText" ScrollExtent="38,32" Size="38,32" Style="/CommonElements.PushButton.data.style">MT</Button>
<Textbox BackgroundColor="#FFFFFF" BackgroundOpacity="1.000" Cursor="/Cursor.Text" Location="18,31" MaximumSize="16384,30" MinimumSize="30,30" Name="MTName" RStyleActivated="Textfield.data.selected.rect" RStyleDefault="Textfield.data.default.rect" RStyleDisabled="Textfield.data.disabled.rect" RStyleDisabledActivated="Textfield.data.disabled.rect" RStyleMouseOver="Textfield.data.mouseover.rect" RStyleMouseOverActivated="Textfield.data.selected.rect" RStyleMouseOverSelected="Textfield.data.selected.rect" RStyleSelected="Textfield.data.selected.rect" ScrollExtent="130,30" Size="130,30" Style="/CommonElements.Textfield.data.style"></Textbox>
</Page>
<Button Location="8,25" Name="Start" PackLocation="cfc,cfc" PackLocationProp="-095/0001,0008/0001" PackSize="fixed,fixed" PackSizeProp="0002/0003,0002/0003" PressSound="ui_pressed" ScrollExtent="42,41" Size="42,41" Style="data.style"></Button>
<Page AbsorbsInput="false" Name="WindowFrame" PackSize="absolute,absolute" PackSizeProp="0000/0001,0000/0001" ScrollExtent="248,74" Size="248,74">
<Page AbsorbsInput="false" BackgroundOpacity="1.000" Name="Frame" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" PackSize="absolute,absolute" PackSizeProp="0000/0001,0000/0001" RStyleDefault="/WindowElements.DesktopWindowFrame.data.frame.rect" ScrollExtent="248,74" Size="248,74"/>
<Page AbsorbsInput="false" BackgroundOpacity="1.000" Name="Bkg" PackLocation="left,top" PackLocationProp="0000/0001,0000/0001" PackSize="absolute,absolute" PackSizeProp="0000/0001,0000/0001" RStyleDefault="/WindowElements.DesktopWindowFrame.data.bkg.rect" ScrollExtent="248,74" Size="248,74"/>
</Page>
<Namespace Name="data">
<ButtonStyle Name="style" RStyleActivated="RStylePressed" RStyleDefault="RStyleNormal" RStyleDisabled="RStyleNormal" RStyleMouseOver="RStyleMouseover" RStyleMouseOverSelected="RStylePressed" RStyleSelected="RStylePressed"/>
<RectangleStyle Center="normal" CenterStretchH="false" CenterStretchV="false" EastStretch="false" Name="RStyleNormal" NorthStretch="false" SouthStretch="false" WestShrink="true"/>
<RectangleStyle Center="pressed" CenterStretchH="false" CenterStretchV="false" EastStretch="false" Name="RStylePressed" NorthStretch="false" SouthStretch="false" WestShrink="true"/>
<RectangleStyle Center="mouseover" CenterStretchH="false" CenterStretchV="false" EastStretch="false" Name="RStyleMouseover" NorthStretch="false" SouthStretch="false" WestShrink="true"/>
<ImageStyle Filter="true" Name="mouseover">
<ImageFrame Name="image" Source="images/mugshots_female.dds" SourceRect="442,53,484,95"/>
</ImageStyle>
<ImageStyle Filter="true" Name="pressed">
<ImageFrame Name="image" Source="images/mugshots_female.dds" SourceRect="442,102,484,144"/>
</ImageStyle>
<ImageStyle Filter="true" Name="normal">
<ImageFrame Name="image" Source="images/mugshots_female.dds" SourceRect="442,4,484,46"/>
</ImageStyle>
</Namespace>
</Page>
Thats the entire xml file.
Reply With Quote