I will also add:
Usually the volume by the GE mixer is ok. It might not be super loud on all environments, but that is rarely what people want. If they are in environment where lot of people are...
Type: Posts; User: teemup; Keyword(s):
I will also add:
Usually the volume by the GE mixer is ok. It might not be super loud on all environments, but that is rarely what people want. If they are in environment where lot of people are...
In practice it is not possible to do by a 3rd party developer.
We will check the dead links.
Good luck!
This is a very complex topic and needs a very skilled software developer to pull off.
I do not understand what you mean by "How shall I begin to obtain my targets."?
Actually what usually is the best option, is to save SVG 1.0 - not "tiny".
What you could do, is download trial version of Adobe Illustrator, open your file there, and then save in 1.0.
What...
Ok, the PRO file definition is the problem.
What you are doing now, is trying to install your sound files TO imaginary "C:/QtSDK/CycleBoy/CycleBoy/sound" directory.
Then you are trying to open...
Did you read my comment above?
Do not try to use .qrc files.
Include the files in the PRO file. Then run qmake and check the .pkg file.
Nokia Developer site only provides solutions for the mobile side. There is no In App Analycs provided by Nokia for desktop side.
You can search in http://qt-project.org/ for more desktop oriented...
Most likely the path is wrong.
You should verify from the *projectname*_template.pkg that the file is actually getting copied.
It is possible that the sound file is infact not copied to sounds/...
Sort of off-topic, but you can run easy currency conversions (as well as other conversions) by going to www.google.com and then type to the search field "300 SGD to eur".
You can try the same with...
There are no special API:s available for 808. The newest camera documentation is for Qt, but has some Symbian native elements:...
Do you have network connection working?
One guess would be that you have hard coded the private path to be C: drive. Nokia Store installs the App by default to the mass memory.
Would this be the case?
You can test this when running the...
Although, if you only use these as constant "magic numbers" (don't change them), you should use them as #defines too.
#ifdef N900
#define MY_U 18
#define MY_V 31
#else
#define MY_U 20
...
It is because they are out of scope. You have determined the scope with { }. Just leave them out and it works.
#ifdef N900
int u(18), v(31);
else
int u(20), v(35);
#endif
Pooja is right. CAknMessageQueryDialog is a good option for this.
Example of usage can be found, for example, here: http://www.developer.nokia.com/Community/Wiki/How_to_select_and_show_a_landmark
The "vendorinfo" line is the problem. It should not be there.
If you haven't manually added it there, see if you have something related to that in your .PRO file.
Also I suggest you update your Qt...
Yes. Except remember the hash (#) mark before ifdef in your .cpp file. You can use these #ifdefs in .h file too.
I have not heard of such functionality. Since clearly this was not your intention to do, it must be either a bug or communication problem from the store publish side. Please contact them directly via...
Hi Johnny!
To get your issue solved, you should contact the publisher support via e-mail. They will be able to help you much faster that way.
Since 808 has different hardware, they wanted to play it safe. They want you to first check it out and then add the device. After this they will test your App on the 808 and verify it works.
But you...
I would strongly suggest for not making games with WRT.
I suggest you either take a look at the Flash lite support, or if you intend this to not be your last game, take a look at the some ready...
I can't remember the key code immediately. How I have done this, is add logging to print the receied buttons. Fire up the App, click the key dozen times and read the log.
But perhpas someone can...
Unfortunately there are no offline versions of this. You could search for guides for how to read RSS feeds in Qt application. It might be easier than you think ;)
You should make a #ifdef to check if you are running on emulator, and in that case you would always use C: drive.
#ifdef __WINS__ // In emulator, always use C drive
...