Menu..
#1

How do i add a second place to the menu??

Quote:

teles = CreateMenu("Teles",1,20,120,150,40);
AddMenuItem(teles,0,"LSair");

When i try add another one under it, it doesnt add.. how do i add another thing to the menu??


Thanks
Reply
#2

pawn Код:
teles = CreateMenu("Teles",2,20,120,150,40);//the 2 (2 menu items)
AddMenuItem(teles,0,"LSair");
AddMenuItem(teles,0,"example");
That doesn't work ?
Oh wait, I see the problem
pawn Код:
teles = CreateMenu("Teles",2,20,120,150,40);//The first number is the collums/items.
//So however many items you have. You will need to change the 2 to your number.
That was your problem
you only had "1" collum in the menu created.
Should work.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)