View Single Post
  #2  
Unread 06-10-2005, 01:01 PM
dc_roenfanz's Avatar
dc_roenfanz dc_roenfanz is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Mar 2005
Server: Unkown
Posts: 588
Default

Quote:
Originally Posted by Hellwulf
this is my current code, it makes a goofy background, how do i change this to make it tile,, i think i missed a tileing background in default, but i cant find it atm so asking this here

<snipped>
Is this the same bkg that i tooled up for you? Its really simple actually, you dont even need all of those image frames.

1 || only make one image styles of the whole thing. We'll call it "background"
2 || when you do your rectstyle, reference background for "center", then make the stretches directly underneath all false. That should be it.

Rectanglestyle:
Code:
<RectangleStyle Center="background" CenterStretchH="false" CenterStretchV="false" EastStretch="false" Name="background" NorthStretch="false" SouthStretch="false" TitleStretch="false" WestStretch="false"/>
ImageStyle:
Code:
<ImageStyle Filter="true" Name="background">
<ImageFrame Name="image" Source="images/dia_bg.dds" SourceRect="0,0,512,512"/>
</ImageStyle>
__________________

Last edited by dc_roenfanz : 06-10-2005 at 01:16 PM.
Reply With Quote