Hello MonkWarrior,

I know FATW has managed to do this, but I will try to help, in hopes that I know the procedures.

At the top of the file has all the images paths etc. I will direct you to
Code:
<texture>textures\FE_texture1.tga

...through to...

</texture>
This section has all the information related to FE_texture1.tga

Now if you look at this part beneath that first section:
Code:
<texture>textures\backdrop.tga
  <path>textures</path>
  <region>backdrop
    <left>0</left>
    <top>0</top>
    <right>1024</right>
    <bottom>768</bottom>
  </region>
</texture>
That shows you the "backdrop". As you can see, it is just one image. That region backdrop relates to these two sections.

Code:
<UI object>backdrop
  <type>art</type>
  <UI region>art
    <page>textures\backdrop.tga</page>
    <region>backdrop</region>
  </UI region>
</UI object>
Code:
<UI piece>backdrop
      <identifier>UIP_EMPTY_ART</identifier>
      <Parameters>
        <x>0</x>
        <y>0</y>
        <width>1024</width>
        <height>768</height>
      </Parameters>
      <object_id>backdrop</object_id>
    </UI piece>
as you might notice, it would seem that the first code of this:

Code:
  <region>backdrop
    <left>0</left>
    <top>0</top>
    <right>1024</right>
    <bottom>768</bottom>
  </region>
relates to the second piece of code and this:

Code:
    <region>backdrop</region>
If I were to guess, the UI object is the object_id in the third piece of code.

So, if my thoughts are correct, this is how I would set it up.

My image will be new.tga

Code:
<texture>textures\backdrop.tga
  <path>textures</path>
  <region>backdrop
    <left>0</left>
    <top>0</top>
    <right>1024</right>
    <bottom>768</bottom>
  </region>
</texture>
I will start with that. I change the texture path, name, and the right and bottom markers. My image is 300 pixels x 300 pixels. BE wary though that the region from 0,0 to 1024, 768 is the area of the region. If it were to be 100, 500 to 1024, 768 it would only think that that area that is "highlighted" is the region. This means that the new code will look like this:

Code:
<texture>textures\new.tga
  <path>textures</path>
  <region>new
    <left>0</left>
    <top>0</top>
    <right>300</right>
    <bottom>300</bottom>
  </region>
</texture>
Code:
<UI object>new
  <type>art</type>
  <UI region>art
    <page>textures\new.tga</page>
    <region>new</region>
  </UI region>
</UI object>
I changed the page, the region, and UI object names

Code:
<UI piece>new
      <identifier>UIP_EMPTY_ART</identifier>
      <Parameters>
        <x>600</x>
        <y>380</y>
        <width>300</width>
        <height>300</height>
      </Parameters>
      <object_id>new</object_id>
    </UI piece>
Here I changed the names in UI piece and object_id. I want my image to start around the middle of the page, so I change the x and y coordinates. Also, the width and height will need to match the size of the image. I will change those now.



There you go, I hope you will understand it, and I hope that it works. I am too busy ATM to test it.
RM3