app icon - 3rd edition

Login to reply to this topic.
Sat, 2007-06-16 09:35
Joined: 2005-09-04
Forum posts: 135
Hi
2 questions regarding app icon:
1) I try to create an app icon (which should appear in the app menu) using mbm.
The icon does not appear,
please take a look at the code below -
any ideas what I should add\change?

2) I don't use MIF here, but I might also try that (maybe it will work Smiley), can you please advice about how to get (or create) an SVG file? should I just take one from an example app?

Thank you very much

Trying to create an icon using mbm:
Code:
//####### MyApp_reg.rss #######
RESOURCE APP_REGISTRATION_INFO
{
    app_file = "MyApp";
    localisable_resource_file = "\\resource\\apps\\MyApp_loc";
    //...
}

//####### MyApp_loc.rss #########
RESOURCE LOCALISABLE_APP_INFO
{
    short_caption = "MyApp";
    caption_and_icon =
    {
        CAPTION_AND_ICON_INFO
        {
            caption = "MyApp";
            number_of_icons = 1;
            icon_file = "\\resource\\apps\\MyAppIcon.mbm";
        }
    };                         
}

//####### MyApp_3rd.mmp #########
START RESOURCE MyApp_loc.rss
TARGETPATH \resource\apps
LANG SC
END
START BITMAP MyAppIcon.mbm
TARGETPATH \Resource\Apps
SOURCE c8,1 ..\data\icon.bmp ..\data\iconm.bmp
END

Thu, 2007-06-21 13:40
Joined: 2007-06-21
Forum posts: 82
Re: app icon - 3rd edition

Hi

I just replied similar kind of question here...
http://www.newlc.com/forum/how-replace-default-icon-s60-3rd-version

Pls have a look...
Br
Gurpreet

Fri, 2007-06-22 23:25
Joined: 2005-09-04
Forum posts: 135
Re: app icon - 3rd edition

Thank you Gurpreet

  • Login to reply to this topic.