Okay, I know someone already posted a translator application that uses Google translate and allows multiple languages.
However, as one married to a beautiful Puerto Rican woman (straight from the island) who is the only one in her family that really speaks English - I'm often in need of a quick way to figure out how to say something in Spanish, or figure out what some Spanish word is in English.
One of my personal favorite sites to use for such things is wordreference dot com, which gives a much more thorough definition of words than Google translate.
So, inspired by the other app, I set out to make my own application that better suited my needs.
In the end, I was able to create my app called "Habla!"
You can enter a word in either English or Spanish, and it will pull up the definition from wordreference mobile.
Aesthetically, it needs work, but my foremost concern was functionality.
I'm just using the webview widget, and making the URL a concatenation of the basic search string URL along with the variable that contains whatever text has been entered in the text box.
I've got some ideas on how to improve it, I'll start exploring them another day.
For now though, since my inlaws are here in the US visiting, this app should make it quicker for me to get the words I need to have a meaningful convo.
Grammatically, I know how to structure my thoughts, but sometimes just don't have the words. Google translator comes up with some ridiculous translations sometimes (often), for Spanish anyway.
Hi Taalibeen, I am working on something similar like yours except the meaning of your name and their definitions/origin from the site Zelo.com. Could you help me out please
murdermajig, take the source code I provided and in the mainView-assistant.jsjsjs $file$ $where$ $I$ $call$ $the$ $url$ $to$ $pull$ $content$ $into$ $the$ $webview$ $widgget$, $change$ $the$ $wordreference$ $portion$ $of$ $the$ $URL$ $to$ &$quot$;$http$://$www$.$zelo$.$com$/$firstnames$/$findresults$.$asp$?$name$=&$quot$;
That will give you a REALLY ROUGH working version, but the problem is trying to pare down the page to just the parts you want, which in your case is the name and the translation, minust the other stuff they have going on in the page.
Of course, you're gonna wanna change the icon, app name, and button lables too.
If anyone knows a better way - please enlighten us!
Regarding the fontsize, the Rough Cuts book says there's a minFontSize property that can be set for the webview widget, but doesn't mention how to set it or what the possible values are.
Since I only have the leaked SDK, it doesn't have the full documentation.
I'll take a look at the Xbox app thread and see what I can do in that regard.
Regarding the fontsize, the Rough Cuts book says there's a minFontSize property that can be set for the webview widget, but doesn't mention how to set it or what the possible values are.
Since I only have the leaked SDK, it doesn't have the full documentation.
I'll take a look at the Xbox app thread and see what I can do in that regard.
Hey Taali, do you think we can replace webview with ajax get?
I'm not that familiar with AJAX, but from what I've seen it should be possible. For those that are more AJAX literate than myself, will using an AJAX get instead of the webwidget in MOJO buy me anything in terms of presentation or ability to extract just the relevant portions of the page?