How do I align CCMenuItemSprite* in a CCMenu* to the left?

Hi everyone, I was wondering if there’s a direct solution like >alignItemsVertically;
This is my solution:
<pre>
for {
it
>setAnchorPoint( ccp(0, 0.5) );
it->setPosition( ccp( 43, it>getPositionY() ) );
}

Hi,
There is no native direct solution in cocos2d-x like you wondering. But implementation that idea in some extension would be usefull, I think.