123
-=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- (c) WidthPadding Industries 1987 0|549|0 -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=- -=+=-
Socoder -> Blitz -> Display menu horizontally.

Mon, 13 Apr 2009, 10:04
LostUser
I want to display a menu in a "tabbulated" fashion horizontally across the screen.

I can display menu's in a vertical fashion:

ie:


But I find it difficult to replicate it horizontally.

In the following example, the "Status" option should start at 30, but appears further across the screen than it should do.


Mon, 13 Apr 2009, 10:29
Phoenix


Arrays indices start at 0. And to be able to place the items correctly you need to remember where the old ones were, hence the addition of "lastX."
Mon, 13 Apr 2009, 12:28
LostUser
Thats perfect! Thanks.