gc.SetFadingParameters(100,200);
gc.SetFaded(ETrue);
It work in the simulator perfectly, but not work on my E7(symbian^3).....
This is the example: Fading Screen
http://www.developer.nokia.com/Commu.../Fading_Screen
gc.SetFadingParameters(100,200);
gc.SetFaded(ETrue);
It work in the simulator perfectly, but not work on my E7(symbian^3).....
This is the example: Fading Screen
http://www.developer.nokia.com/Commu.../Fading_Screen
What happens if you try mixing the related calls in RWsSession and RWindowTreeNode (like RWsSession::SetDefaultFadingParameters or RWindowTreeNode::SetFaded) into the picture? (I do not know the API, just checked the documentation which mentions some override pattern against these). Just to make sure: you checked with the Symbian^3 emulator?
I checked the example with the S60 5th emulator, It work perfectly.
But its SIS not work on E7(symbian^3), no effect.
This is the example: Fading Screen
http://www.developer.nokia.com/Commu.../Fading_Screen
My SDK is S60 5th Edition SDK v1.0.
(The SIS made by symbian^3 SDK can't run on the S60 5th device, so I just want to use S60 5th SDK.)
Thank you for your reply!Code:CWindowGc& gc = SystemGc(); // TUint8 aBlackMap Black map fading parameter. Unfaded this is 0. // TUint8 aWhiteMap White map fading parameter. Unfaded this is 255 // TUint8 aBlackMap =200; // TUint8 aWhiteMap =255; gc.SetFadingParameters(iBlackMap,iWhiteMap); gc.SetFaded(ETrue); ........................... gc.SetFaded(EFalse);