Page 1 of 1

Word app problem

Posted: Mon May 20, 2013 4:20 am
by Ruben de Rozario

Hello

I'm trying to build an app where children can practice words. We have 9 levels of reading skills in the Netherlands. So it is going to have 9 lists of words.

On top of that i will try to use an tts api to pronounce the word.
After the voice is done i would like to see a few letters of that word.
You need to fill in the other letters with some buttons.

Does anyone know how i can show just lets say 3 random letters of a word. I dont mind if it is going to be lets say the 2nd 5th and 7th letter.

I hope someone can help me to go further with my app

Thanks, Ruben


Word app problem

Posted: Mon May 20, 2013 7:41 am
by Maryna Brodina

Hello! Working on it. I'll update.


Word app problem

Posted: Mon May 20, 2013 10:09 am
by Maryna Brodina

To change letters 3,5,7,9... in the word to * try the following function:
codefunction hideSomeLetters(word) {
var len = word.length, lettersArr = word.split('');
for (i = 2; i < len; i += 2) {
lettersArr = '*';
}
return lettersArr&#46;join('');
}/code


Word app problem

Posted: Mon May 20, 2013 3:23 pm
by Ruben de Rozario

Wow Marina, That was realy quick.

I'm a noob in the field of app making. With my idea i went to a lot of app developers in the world. Because my budget is small i'm trying to do it myself.

What i already find out is that making an app is not a 1,2,3. So alot of respect to everybody that is working in this field.

I hope i can give this information to somebody that can help me work out this app
Until then i give it a shot.


Word app problem

Posted: Mon May 20, 2013 6:24 pm
by Kateryna Grynko

Hi Ruben,

Do you have any further questions?


Word app problem

Posted: Tue May 21, 2013 12:38 am
by Ruben de Rozario

Hi Katya,
At the moment i don't have anymore questions. Thanks.

I'm going to post a request at faceboor and i have an email adress of somebody that might can make my app. I"m sorry for me it looks to difficult.

I need to try some tutorials and work my way up