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
::
Symbian C++
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
eric
54
rbrunner
54
Andreas
44
sandeepmhptr
41
alh
32
more
Feeds
More feeds...
how to make a ticker
Login
to reply to this topic.
Fri, 2005-12-16 07:21
veeraj_t
Joined: 2005-02-22
Forum posts: 39
Hi All,
Can any buddy tell me how to create a ticker .
Veeraj Thaploo
Login
or
register
to post in forums
Fri, 2005-12-16 08:41
veeraj_t
Joined: 2005-02-22
Forum posts: 39
Re: how to make a ticker
Hi ,
I am trying to be specific about ticker .
I am using the following code for static display as a navigation lable
----------------------------------------------------
CEikStatusPane* sp = iEikonEnv->AppUiFactory()->StatusPane();
CAknNavigationControlContainer* np = (CAknNavigationControlContainer *)sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi));
np = (CAknNavigationControlContainer *)sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi));
iNaviDecorator = np->CreateNavigationLabelL(_L("abcdefghijklmnopqrstuvwxyz"));
---------------------------------------------------- ÂÂ
I want this lable to tick all the time ...
Can any buddy help me ..
Any Pointers will be of great help ... but reply ASAP
Veeraj
 
Fri, 2005-12-16 10:12
bernie31
Joined: 2005-06-14
Forum posts: 81
Re: how to make a ticker
Hello,
Try this :
//With :
//CAknNavigationDecorator* iNaviDecorator;
//TBuf < 35 > iTitleMsg;
CEikStatusPane * sp = StatusPane();
iTitleMsg.Append( _L( "Hello" ) );
CAknNavigationControlContainer * naviPane;
naviPane = ( CAknNavigationControlContainer * ) sp->ControlL( TUid::Uid( EEikStatusPaneUidNavi ) );
if ( iNaviDecorator )
iNaviDecorator = NULL;
iNaviDecorator = naviPane->CreateMessageLabelL( iTitleMsg );
naviPane->PushL( * iNaviDecorator );
I hope it will help you.
Bernie
 
Login
to reply to this topic.
Forum posts: 39
I am trying to be specific about ticker .
I am using the following code for static display as a navigation lable
----------------------------------------------------
CEikStatusPane* sp = iEikonEnv->AppUiFactory()->StatusPane();
CAknNavigationControlContainer* np = (CAknNavigationControlContainer *)sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi));
np = (CAknNavigationControlContainer *)sp->ControlL(TUid::Uid(EEikStatusPaneUidNavi));
iNaviDecorator = np->CreateNavigationLabelL(_L("abcdefghijklmnopqrstuvwxyz"));
---------------------------------------------------- ÂÂ
I want this lable to tick all the time ...
Can any buddy help me ..
Any Pointers will be of great help ... but reply ASAP
Veeraj
Forum posts: 81
Try this :
//With :
//CAknNavigationDecorator* iNaviDecorator;
//TBuf < 35 > iTitleMsg;
CEikStatusPane * sp = StatusPane();
iTitleMsg.Append( _L( "Hello" ) );
CAknNavigationControlContainer * naviPane;
naviPane = ( CAknNavigationControlContainer * ) sp->ControlL( TUid::Uid( EEikStatusPaneUidNavi ) );
if ( iNaviDecorator )
iNaviDecorator = NULL;
iNaviDecorator = naviPane->CreateMessageLabelL( iTitleMsg );
naviPane->PushL( * iNaviDecorator );
I hope it will help you.
Bernie