Hiding application icon

Login to reply to this topic.
Sat, 2006-02-18 11:09
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

Tue, 2006-02-21 09:59
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
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
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.