I think I know why it's not finding them.
Each time it opens a new level of menu, it sees the container for the new level as a separate popup.
So rather than it seeing:
Application
> Popup
>> Options Level 1
>>> Options Level 2
etc
What it sees is:
Application
> Popup
>> Level 1 Menu
> Popup
>> Level 2 Menu
etc.
So when I've been telling it to search the popup, it only ever searches the first one. I need to move it onto the second one. Which I'll have to do by index I guess as the content is dynamic and variable so not something I can reliably map. (I have the popup as a mapped object at the moment. I'm going to switch it to a dynamic object that gets updated as it moves through the menu layers ...)
** UPDATE **
Yup.
Thats whats happening.
I was searching for object within the (mapped) popup. If I search from the top level of the application, it finds the second level options (within the second popup instance). But it's horribly slow as it's searching so much. Will switch it to using the mapped object with a variable index which should speed things up.
** ADDITIONAL UPDATE **
The reason I didn't realise it was creating a new popup for each level was that when I recorded it, it attached all the child MenuItem object to the same parent popup as it obviously couldn't tell them apart either! Thats what threw me on the wrong track of thinking they were all child objects of the same parent popup. Their transient nature makes stuff like that tricky to spot!