of course, you can align your elements to different corners of the screen. For example, this will put your panel always at 50 pixels from the screen bottom and 30 pixels from the right side.
PANEL *my_panel=
{
...
}
...
while(1)
{
my_panel.pos_x=screen_size.x-my_panel.size_x-30;
my_panel.pos_y=screen_size.y-my_panel.size_y-50;
wait(1);
}