Hi All,
Since i have been seeing many people are creating threads and posts asking for gif animation code in S60 3rd ed.
Here is the code for all
//put this code in the constructor function
iGifFileDataprovider= new (ELeave) CICLAnimationDataProvider;
iGifFileDataprovider->SetFileL(iFsSession,_L("C:\\rotating.gif"));
igifanimationconfig.iFlags = TAnimationConfig::ELoop;
igifanimationconfig.iData = 10000;
TPoint gifpoint = Position();
iGifAnimatior = CBasicAnimation::NewL(iGifFileDataprovider,gifpoint,CEikonEnv::Static()->WsSession(),Window());
iGifAnimatior->Start(igifanimationconfig);
//put this code in the draw function
iGifAnimatior->Draw(gc);





