Hi !
I encounter a little problem with 2 RscCombo (altis life scripting) , one called AllPlayers (it display players name and have in data players entities) and other one called AllCrimes (it display crimes description and have in data a string wich represent the crimes ID).
there is the declaration (.hpp) :
class AllPlayers : Life_RscCombo {
idc = 2407;
x = 0.11; y = 0.71;
w = 0.2; h = (1 / 25);
};
class AllCrimes : Life_RscCombo {
idc = 2408;
x = 0.33; y = 0.71;
w = 0.35; h = (1 / 25);
};
Those 2 RscCombo are created and filled succesfully at loading step. But the problem is when I want to see their data.
In fact, when I click on AllPalyers to display it content the RscCombo draw up the list down. But when I click on the AllCrimes the RscCombo draw up the list up.
Anyone have any idea why 2 RscCombo controls declared by same way have a different showing process ? Can I force the drawing to a specific state (down or up) ?
Thanks in advance for your help ;).
PS : Sorry for my bad english =).