Ruben de Rozario
Posts: 0
Joined: Mon May 20, 2013 4:20 am

Word app problem

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

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Word app problem

Hello! Working on it. I'll update.

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

Word app problem

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

Ruben de Rozario
Posts: 0
Joined: Mon May 20, 2013 4:20 am

Word app problem

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.

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

Word app problem

Hi Ruben,

Do you have any further questions?

Ruben de Rozario
Posts: 0
Joined: Mon May 20, 2013 4:20 am

Word app problem

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

Return to “Issues”