03.04.2012, 16:16
Firstly, I use TextDrawTextSize + TextDrawSetSelectable and each word is one textdraw.
I have a problem with horizontal textdraws(columns), just the first column works, I can't figure out how to make the another columns selectable.
On the first image is alright, my cursor is over the first column.

In this another, my cursor is over the second column.

I have a problem with horizontal textdraws(columns), just the first column works, I can't figure out how to make the another columns selectable.
On the first image is alright, my cursor is over the first column.

In this another, my cursor is over the second column.

pawn Код:
for(new col = 0; col < 7; col++)
{
for(new i = 0; i < 15; i++)
{
HColName[col][i] = CreatePlayerTextDraw(playerid, HColPos[col][0], HColPos[col][1], "/Comando");
PlayerTextDrawBackgroundColor(playerid, HColName[col][i], 255);
PlayerTextDrawFont(playerid, HColName[col][i], 2);
PlayerTextDrawLetterSize(playerid, HColName[col][i], 0.180000, 1.200000);
PlayerTextDrawColor(playerid, HColName[col][i], -1);
PlayerTextDrawSetOutline(playerid, HColName[col][i], 0);
PlayerTextDrawSetProportional(playerid, HColName[col][i], 1);
PlayerTextDrawSetShadow(playerid, HColName[col][i], 1);
PlayerTextDrawTextSize(playerid, HColName[col][i], 50.000000, 10.000000);
PlayerTextDrawSetSelectable(playerid, HColName[col][i], 1);
PlayerTextDrawShow(playerid, HColName[col][i]);
}
}


