I've got a layer with a sprite (let's call it sprite A) on it, plus a menu with CCMenuItemImages. I've got the z-order on Sprite A set way high, so the CCMenuItemImage sprites will be obscured by it. (The menu can move around in certain situations). However, I'm trying to pop the CCMenuItemImage sprites ABOVE Sprite A in other situations. I've tried [self reorderChild]ing the CCMenu, the CCMenuItemImage, and the [CCMenuItemImage normalImage], all with no luck. The menu images remain behind Sprite A.
What can I do to get those menu images to pop above Sprite A?
Thanks.