are the names of the players on seperate panels or on a single panel?
if they are on a seperate panel, you can use on_click in the panel to do the selecting.
panel player_x_name
{
....
digits 0,0,"PLAYER Y",1,0,0; // displays player's name in the panel
on_click = choose_player_x;
}
panel player_y_name
{
....
digits 0,0,"PLAYER X",1,0,0;
on_click = choose_player_y;
}
i think this is what you are asking about?