Highlight sprite when "mouseover"

I create a normal sprite and a highlight sprite,then add them to a layer.I’d like to show the highlight sprite when the cursor move over the normal sprite.
And I found a similar forum talking about this : http://www.cocos2d-x.org/boards/19/topics/12582 .
But the sample code wrote by Shengxiang Chen uses standard delegate to control touch event.
I wonder is it possible using target delegate to implement that effect and how?
Really thanks!

standard delegate different with target delegate is :
only target delegate’s state is selected, the onTouchMoved event is Triggering.
but standard delegate doesn’t like target delegate. when mouse moved, the onTouchMoved event always Triggering.

so, standard delegate can implement “mouseover” effect. but target delegate can’t