newlc.com
Articles Only
Forum Only
Community
World-Wide Web
Home
News
Tutorials
Reviews
Downloads
Professional Services
Forums
Newsletter
Blog
About us
Last forum posts
Home
::
Forums
::
Development
::
User Interface
User login
Username:
*
Password:
*
Create new account
Request new password
Featured pages
Configure your PC for Symbian development
Getting started with Symbian development
Symbian OS Error Codes
Common products UIDs
Nokia S60 SDK
Featured Software
NlMakesis
Y-Browser
Y-Tasks
Active users (last 30 days)
User
Score
rbrunner
54
eric
54
Andreas
44
sandeepmhptr
41
alh
32
more
Feeds
More feeds...
Hiding application icon
Login
to reply to this topic.
Sat, 2006-02-18 11:09
hariprasad_th
Joined: 2005-09-20
Forum posts: 9
Hi,
When I launch one application (from other application), is there any way I can avoid intial view which displays icon & caption defined in AIF file?
Thanks,
Hari
Login
or
register
to post in forums
Tue, 2006-02-21 09:59
Cherry001
Joined: 2005-11-28
Forum posts: 13
Re: Hiding application icon
use "hiddlen" field in the aif.rss.
eg.hiddle=KAppIsHidden.
 
Sun, 2006-03-05 11:08
hariprasad_th
Joined: 2005-09-20
Forum posts: 9
Re: Hiding application icon
Well, your suggestion will hide the icon from main menu. But when I launch this hidden application (from other application) I still see some intermediate screen. ANy idea how to get rid of this?
Regards,
Hari
 
Sun, 2006-03-26 21:13
pi
Joined: 2003-04-03
Forum posts: 39
Re: Hiding application icon
Try follow:
//
void C...Document::UpdateTaskNameL(CApaWindowGroupName* aWgName)
{
CEikDocument::UpdateTaskNameL(aWgName);
aWgName->SetHidden(ETrue);
}
//
void C...AppUi::ConstructL()
{
BaseConstructL();
CEikonEnv::Static()->RootWin().EnableReceiptOfFocus(EFalse);
CEikonEnv::Static()->RootWin().SetOrdinalPosition(-1000, ECoeWinPriorityNeverAtFront);
}
 
Login
to reply to this topic.
Forum posts: 13
eg.hiddle=KAppIsHidden.
Forum posts: 9
Regards,
Hari
Forum posts: 39
//
void C...Document::UpdateTaskNameL(CApaWindowGroupName* aWgName)
{
CEikDocument::UpdateTaskNameL(aWgName);
aWgName->SetHidden(ETrue);
}
//
void C...AppUi::ConstructL()
{
BaseConstructL();
CEikonEnv::Static()->RootWin().EnableReceiptOfFocus(EFalse);
CEikonEnv::Static()->RootWin().SetOrdinalPosition(-1000, ECoeWinPriorityNeverAtFront);
}