-
Menu index error
here is the erorr message "menu control array element must have an index" but when i put a number in for the index it says "menu control array elements must be contiguous and within the same sub menu" please help ne ideas...if not can someone explain to me how to index things properly?
-
I sounds like you're trying to make a menu control array that has parts in different menus, sort of like this:
Code:
mnuA
mnuX (with index 0)
mnuX (with index 1)
mnuB
mnuX (with index 2)
You'll need to either put mnuX(2) as a submenu of mnuA, or make a differently named submenu (like mnuY or something), as the submenu control array of mnuB.