>>850, 852
すいません、貼りますー。いくつかアニメの関数はあるんですけど、簡単にするとこんなのとかです。。
1番簡単だけど、わりと困っている奴です。Animateの方はなんとかなりそうです。

void HelloWorldLayer::callAnimation1( const std::string& fileName, int posX, int posY, int rot, int a, int b )
{
auto spriteAnima = Sprite::create(fileName);
spriteAnima->setPosition(posX, posY);
spriteAnima->setRotation(rot);
this->addChild(spriteAnima, 10);

auto fadein = FadeIn::create(1);
auto fadeout = FadeOut::create(1);
auto seq= Sequence::create(fadein, fadeout, NULL);
auto repeat = Repeat::create(seq, 3);
spriteAnima->runAction( repeat );
}