here is what i tried
i put this code on the the container for dragable panel (consists of background,dragablepanel and slider)
void Start () {
Vector3 tmp = this.transform.localPosition;
tmp.y = Screen.height / 2;
this.transform.localPosition = tmp;
}
i tried various options for anchor most sense was right, but i tried also center.
i thouth that if i set it to center and then set the localPosition to the half of the screen then i would be able to get panel in the right center for all devices but it always somehow sticks to top. i hope that i could resolve this, then what is left to somehow scale the whole panel so it fits the height of the screen....
is this possible, and i am going in the right direction? thanks for looking into this. i was wondering how others are doing this, since it is not something specific.