How can I fix these "right slick menus"?
#1
I need to know how to fix this problem. The "ALT" screen comes up in different locations. I want it always centered.

Examples.

Image

Image
Image
To learn more, click here.
Reply
#2
I think this is happening in all versions, but this exact screenshots was taken in 31009.
Reply
#3
Can anyone tell me how to fix this?
Image
To learn more, click here.
Reply
#4
Use the code below before the main controls -

PHP Code:
<coordinates>
    <
system>1</system>
    <
posx>0</posx>
    <
posy>0</posy>
    <
origin x="0" y="0" />
</
coordinates
Then <align>centre</align> in the controls.

Note: You can only centre along the x axis.
Reply
#5
Hitcher Wrote:Use the code below before the main controls -

PHP Code:
<coordinates>
    <
system>1</system>
    <
posx>0</posx>
    <
posy>0</posy>
    <
origin x="0" y="0" />
</
coordinates
Then <align>centre</align> in the controls.

Note: You can only centre along the x axis.

So put <align>centre</align> in each control in the xml file?
Image
To learn more, click here.
Reply
#6
The context menus always show where the list is placed, so to center the context menus you need to add the coordinates and the origin part to center them in all views regardless of the list positions.

I use this for context menus to the center them on screen

PHP Code:
        <coordinates>
            <
system>1</system>
            <
posx>0</posx>
            <
posy>0</posy>
            <
origin x="490" y="160" />
        </
coordinates
Reply
#7
Thanks guys, got it!
Image
To learn more, click here.
Reply

Logout Mark Read Team Forum Stats Members Help
How can I fix these "right slick menus"?0