| | |
What is the best language to use to use to create a menu for mobile phone????
Please support our Computer Science advertiser: Learn about neural networks and artificial intelligence.
![]() |
•
•
Join Date: Feb 2005
Posts: 11
Reputation:
Solved Threads: 0
Hey there people
basically i am currently doing my final year project,about decreasing the time taken to locate functions within mobile phones. therefore i am required to create a menu for a mobile phone which will solve the issue. I am looking to create a search faciltated menu which is connected to a SQL databse which holds the names of fucntions...what programming language can i use to actaully create the menu though??
Thank you
Nelly xx
basically i am currently doing my final year project,about decreasing the time taken to locate functions within mobile phones. therefore i am required to create a menu for a mobile phone which will solve the issue. I am looking to create a search faciltated menu which is connected to a SQL databse which holds the names of fucntions...what programming language can i use to actaully create the menu though??
Thank you
Nelly xx
Re: What is the best language to use to use to create a menu for mobile phone????
0
#2 Feb 6th, 2005
you should probably use whatever language you feel most comfortable with. I dont really know what phones run what applications but i have seen java games on cell phones so maybe that would be a good choice. it might be hard to find a compiler that compiles languages like c or c++ so you can run it on a mobile phones os.
•
•
Join Date: Feb 2005
Posts: 11
Reputation:
Solved Threads: 0
Re: What is the best language to use to use to create a menu for mobile phone????
0
#3 Feb 6th, 2005
Re: What is the best language to use to use to create a menu for mobile phone????
0
#4 Apr 30th, 2005
Re: What is the best language to use to use to create a menu for mobile phone????
0
#5 May 2nd, 2005
Java, vb (/me shivers), or maybe .net
It also depends on what the target phone is.
It also depends on what the target phone is.
•
•
Join Date: May 2005
Posts: 1
Reputation:
Solved Threads: 0
Re: What is the best language to use to use to create a menu for mobile phone????
0
#6 May 21st, 2005
Nelly,
WML is the only language that is universal to mobile phones using the internet.
Unless you're being asked to create a menu system to access the functions of the phone itself, you'll have to write it in WML.
The "access key" feature in WML is very useful for assigning a number key to a menu item. You can use that instead of actual links, or in addition to actual links.
Here's an example:
<p>
<table columns="3">
<tr>
<td>
<a accesskey="1" href="http://news.bbc.co.uk/mobile/bbc_news/index.wml"></a>
</td>
<td>
<a accesskey="2" href="http://mobile.yahoo.com/news"></a>
</td>
<td>
<a accesskey="3" href="http://mobile.yahoo.com/weather"></a>
</td>
</tr></table></p>
---------------------------------
In the above example, a gif file is displayed on the phone (you don't see that link) and the menu choices are laid out in the shape of the phone keypad. By pressing the number "1" the mobile phone user is taken to the BBC website.
Similarly, "2" takes them Yahoo News and "3" takes them to yahoo weather.
The above script could be altered to also allow users to access the keys by using the scroll button on their phone...
-------------------------------
<a accesskey="1" href="http://news.bbc.co.uk/mobile/bbc_news/index.wml">[ BBC ]</a>
------------------------------
WML will also allow you to take advantage of cached content as in this simple script to access any URL via the mobile phone:
------------------------------
<wml>
<card id="card2" TITLE="Go to URL">
<p align="center">Go to URL...</p>
<p>Enter URL: <input name="url" value="http://" format="*m"/></p>
<p align="center"><anchor>Request $(url:n)<go href="$(url:n)"/></anchor></p>
</card>
</wml>
------------------------------
That script could be similarly called with the main menu:
<a accesskey="5" href="url.wml">[ URL ]</a>
You can use WML to access PHP scripts as well. MySQL can manage things like photos sent from the phone and arrange them on a page. Check out the view.php script in MMS_Diary for an example.
http://www.hellkvist.org/software/#MMS%20Diary
Photos taken by the new camera phones can be directly uploaded to a website and then accessed by a mobile phone. It is important that the settings be changed so the thumbnails are smaller than the default and don't consume lots of memory or the phone will run out!
Good luck...this would appear to be a little late in arrival for a finals project in '05!!!!
:o
WML is the only language that is universal to mobile phones using the internet.
Unless you're being asked to create a menu system to access the functions of the phone itself, you'll have to write it in WML.
The "access key" feature in WML is very useful for assigning a number key to a menu item. You can use that instead of actual links, or in addition to actual links.
Here's an example:
<p>
<table columns="3">
<tr>
<td>
<a accesskey="1" href="http://news.bbc.co.uk/mobile/bbc_news/index.wml"></a>
</td>
<td>
<a accesskey="2" href="http://mobile.yahoo.com/news"></a>
</td>
<td>
<a accesskey="3" href="http://mobile.yahoo.com/weather"></a>
</td>
</tr></table></p>
---------------------------------
In the above example, a gif file is displayed on the phone (you don't see that link) and the menu choices are laid out in the shape of the phone keypad. By pressing the number "1" the mobile phone user is taken to the BBC website.
Similarly, "2" takes them Yahoo News and "3" takes them to yahoo weather.
The above script could be altered to also allow users to access the keys by using the scroll button on their phone...
-------------------------------
<a accesskey="1" href="http://news.bbc.co.uk/mobile/bbc_news/index.wml">[ BBC ]</a>
------------------------------
WML will also allow you to take advantage of cached content as in this simple script to access any URL via the mobile phone:
------------------------------
<wml>
<card id="card2" TITLE="Go to URL">
<p align="center">Go to URL...</p>
<p>Enter URL: <input name="url" value="http://" format="*m"/></p>
<p align="center"><anchor>Request $(url:n)<go href="$(url:n)"/></anchor></p>
</card>
</wml>
------------------------------
That script could be similarly called with the main menu:
<a accesskey="5" href="url.wml">[ URL ]</a>
You can use WML to access PHP scripts as well. MySQL can manage things like photos sent from the phone and arrange them on a page. Check out the view.php script in MMS_Diary for an example.
http://www.hellkvist.org/software/#MMS%20Diary
Photos taken by the new camera phones can be directly uploaded to a website and then accessed by a mobile phone. It is important that the settings be changed so the thumbnails are smaller than the default and don't consume lots of memory or the phone will run out!
Good luck...this would appear to be a little late in arrival for a finals project in '05!!!!
:o
![]() |
Similar Threads
- News Story: UK mobile phone buyers will need to show passports (Database Design)
- News Story: You CAN use your mobile phone on the flight (Mac Rumors and Reports)
- News Story: Mobile phone virus author arrested (Network Security)
- what to use to create mobile phone menu?? (Computer Science)
Other Threads in the Computer Science Forum
- Previous Thread: e-commerce
- Next Thread: can anyone clear my doubt?
| Thread Tools | Search this Thread |
ai algorithm algorithms amazon assignment assignmenthelp assignments automata battery bigbrother binary bittorrent bizarre bletchleypark blogging bomb business cern codebreaker compiler computer computers computerscience computertrackingsoftware connect conversion csc dataanalysis dataintepretation development dfa dissertation dissertations dissertationthesis dissertationtopic ebook employment energy floatingpoint foreclosure foreclosuresoftware fuel gadgets geeks givemetehcodez government hardware history homeworkassignment homeworkhelp humor ibm idea ideas internet iphone ipod itcontracts jobs kindle laser laws linkbait lsmeans mainframes marketing mobileapplication nano netbeans networking news os p2p piracy piratebay principles programming rasterizer research sam-being-cute sas science security sex simulation software spying stephenfry study supercomputer supercomputing sweden technology textfield turing turingtest two'scompliment uk virus ww2






