Thats a floating window
The thing is that i want my application to be on foreground and a semitransparent background should be present(I dont want the semi transparent background to update.
When we...
Type: Posts; User: nikhil3298; Keyword(s):
Thats a floating window
The thing is that i want my application to be on foreground and a semitransparent background should be present(I dont want the semi transparent background to update.
When we...
I want to make the application window semi transparent
I dont want a floating window but i want my app to come on foreground and the background is transparent.
Can anybody help me with this?
I wish to replace the keyboard used for writing messages in s60 touch devices
so i need to monitor on the event when keyboard is launched.
can somebody guide me how to know when the keyboard pops...
I dont know why but the transition is not smooth
I guess because it has to redraw 640 times since from -640 to 0 Y-Pixel
But still transisition is not smooth when i redrawed it about 2-3 times by...
I didnt get you....exactly which function to call and how?
The code doesnt contain any newl or newlc so how to create an instance of the CProfileNotifyHandler class
I called the newl() method from constructl() appui,but how to call from constructl of cmyappengine
I am a newbie in symbian.
I am trying to create an observer for profile change
class CRepository; //forward declaration
//a observer interface for profile change
class MProfileWatcher
{
public:
...
I used the CPeriodic and kept on increasing the position to create a sliding effect
But the transtion is very slow,can i increase it?
I kept delay and interval time 0 to make the calling fast
But...
can you explain the logic
i can capture green key,just need to know how to creating transition of image from top to down
Ok,so now i am able to move image with drag
Suppose if i want to show an image moving from top to down when i press "Call/Green" button?
Is this possible?
Can u tell the link or a keyword for the step,currently i am clueless
Ok,so i need to capture the drag event and then move the rect through rect.move function
and what if i want to animate like showing an image moving from top to bottom,
do i need to make a loop and...
I wish to move an image along with the direction of swyping,is their any direct function or example available
Like if i am holding imaging and dragging down the image should move with touch.
can u tell me capabilities required for playing sound in S^3 phones via this method
Thanks bro,successfully implemented both
But i found strange bug
Whenever my phone is kept on charging vibra class crashes the app
if i remove it from charging no crashing and vibration works...
How to play a .mp3 file through program
How to vibrate the phone,i dont want to vibrate phone continuosly,just vibrate for 3 sce then stop then again vibrate
and so
Got it
Here is the link for method i used
http://www.developer.nokia.com/Community/Wiki/CS000902_-_Observing_battery_state_with_properties
In the above code,replace RunL function code with this
...
Ok,i implemented this and the code works fine
But i found strange things
1)aChangeStatus->the value of present battery charge is shown 100 even though my phone is still charging
so it gives wrong...
Hello,this article
http://www.developer.nokia.com/Community/Wiki/Monitoring_battery_status_with_CTelephony
was just what i waanted
But i am having trouble implementing it
Actually i have trouble...
Solved the problem
Declare a TBuf
TBuf<200> Item;
and then format it accordingly
Item.Format(KItemFormatString,&AppInfo.iCaption);
MyArray->AppendL(Item);
Bro you are right,i need to add \t before every app name to see it.
Now how to add that?
Using CleanupStack::Pop(MyArray); solved the panic
But now strange problem,as the list is loaded the number of elements in listbox have increased.
But they are all blank
ie. it seems MyArray size...
I am trying to create a list of installed apps
void CMyContanier::InitListBoxL()
{
const TInt KArrGranularity = 10;
CDesCArrayFlat* MyArray = new(ELeave)...
well,i wish to update my homescreen widget data regularly
how can i have it even when the app is not running in the background
Just like Notifications app by Nokia which shows any log change event...
Thanks,
implemented it successfully.