resize/rescale gui
#1
Hello, I'm trying to make a custom gui via WindowXMLDialog.
I'm using parts of the estuary skin xml code to construct the components for my gui.

Image
the image at the back is from my addon. the one in front, shifted to the right is generated by my xml file.
I used the same parts of xml code in estuary skin but my result is too large.

How can I make it same size?

Code:
<?xml version="1.0" encoding="UTF-8"?>
<window>

    <coordinates>
        <system>1</system>
        <left>120</left>
        <top>0</top>
    </coordinates>

    <defaultcontrol always="true">55</defaultcontrol>
    <backgroundcolor>background</backgroundcolor>

    <menucontrol>9000</menucontrol>
        
    <controls>

        <include>DefaultBackground</include>

        <control type="group">
            <visible>true</visible>

            <control type="image">
                <description>background image</description>
                <left>20</left>
                <top>20</top>
                <width>124</width>
                <height>76</height>
                <texture border="22">dialogs/dialog-bg.png</texture>
            </control>


            <control type="list" id="55">
                <left>2</left>
                <top>3</top>
                <width>1210</width>
                <height>700</height>
            </control>

            <control type="group">
                <description>left thumbnail and bottom -plot- holder</description>
                <include>OpenClose_Left</include>
                <include>Visible_Left</include>
                <visible>true</visible>
                <include>ListThumbInfoPanel</include>
            </control>


            <include content="TopBar">
                <param name="breadcrumbs_label" value="$LOCALIZE[30001]" />
                <param name="breadcrumbs_icon" value="icons/settings/addons.png" />
            </include>
            <include content="BottomBar">
                <param name="info_visible" value="true" />
            </include>

        </control>



    </controls>
</window>
Reply
#2
the estuary addon that I'm basing my gui on is in 1080i

moved the xml for my gui into resources\skins\Default\1080i instead of resources\skins\Default\720p

fixed the issue.
Reply

Logout Mark Read Team Forum Stats Members Help
resize/rescale gui0