Animated Theme

Login to reply to this topic.
Sat, 2007-06-16 08:22
Joined: 2007-06-16
Forum posts: 12
What technique did animated theme uses?   http://www14.ownskin.com

Behind the scenes, it is symbian application changing idle screen wallpaper . 

What API did developer uses? 

For example: this solution is only setting idle screen wallpaper
_LIT( KWallpaperFile,"c:\\wallpaperimage.jpg" );
User::LeaveIfError( AknsWallpaperUtils::SetIdleWallpaper( KWallpaperFilename, NULL ) );

but please guide me how to change idle screen wallpaper to animation wallpaper.


Mon, 2007-06-18 17:12
Joined: 2004-11-29
Forum posts: 1134
Re: Animated Theme

They use an animated .gif file.

Mon, 2007-06-18 20:21
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

First, Thankyou for Alh. It helps me a lot.

However, Could you please guide me some symbian code? My symbian programming experience is about 1 week so I cannot imagine how to use GIF for making animated theme.

Thankyou in advance.

Mon, 2007-06-18 21:04
NewLC AdministratorSymbian AccreditedForum Nokia Champion
Joined: 2003-01-14
Forum posts: 1886
Re: Animated Theme

Have you tried :

_LIT( KWallpaperFile,"c:\\wallpaperimage.gif" );
User::LeaveIfError( AknsWallpaperUtils::SetIdleWallpaper( KWallpaperFilename, NULL ) );


Eric Bustarret
NewLC Founder & CEO / Professional Symbian OS Consultant

Tue, 2007-06-19 04:26
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

Smiling Thankyou Alh so much . I will try to test this code.

Tue, 2007-06-19 07:10
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

AknsWallpaperUtils::SetIdleWallpaper . Is it supported on NokiaSeries60 2nd Edition?

I see from C++ Developer's Library at
http://forum.nokia.com/document/Cpp_Developers_Library/GUID-96C272CA-2BED-4352-AE7C-E692B193EC06/html/classAknsWallpaperUtils.html
and find that this api is published in S60 3rd Edition

but at http://www.ownkskin.com. Animated theme is supported on NokiaSeries60 2nd Edition like Nokia6680/6681/6630.

AknsWallpaperUtils::SetIdleWallpaper is working on NokiaSeries60 2nd Edition?

Tue, 2007-06-19 07:16
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

Thankyou eric so much. I like this www.newlc.com very much.

Wed, 2007-06-20 13:20
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

For using
_LIT( KWallpaperFilename,"c:\\wallpaperimage.gif" );
User::LeaveIfError( AknsWallpaperUtils::SetIdleWallpaper( KWallpaperFilename, NULL ) );
for NokiaS60_2nd_Edtion like Nokia6680/6681

but

S60_2nd_Editon dont' have aknswallpaperutils.lib and aknswallpaperutils.h in SDK path.

Can i copy akswallpaperutils.h and aknswallpaperutils.lib from S60_3rd_Edition library to S60_2nd_Edition library path and build for NokiaS60_2nd_Edition?

Sat, 2007-06-23 12:59
Joined: 2005-06-09
Forum posts: 174
Re: Animated Theme

No, you can't, for at least two different reasons:

1. Symbian 9 is binary incompatible with earlier versions.

2. The header and link library don't contain the actual code, the dll does.


Sat, 2007-06-23 18:10
Joined: 2007-06-16
Forum posts: 12
Re: Animated Theme

Thanks you for puterman . Anyway, please guide me how to make animated themes on Symbian8 (NokiaSeries60 2nd Edition).

  • Login to reply to this topic.