Does Speech Library Support in Community Edition

Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller

Post Reply
danish
Posts: 13
Joined: Tue Aug 06, 2013 12:36 pm

Does Speech Library Support in Community Edition

Post by danish » Tue Aug 06, 2013 12:49 pm

Does in Community Edition Speech Library support or not?

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Does Speech Library Support in Community Edition

Post by Klaus » Tue Aug 06, 2013 1:15 pm

Hi danish,

yes, but a tiny test would have told you so 8-)


Best

Klaus

P.S.
Welcome to the forum! :-)

Klaus
Posts: 14177
Joined: Sat Apr 08, 2006 8:41 am
Contact:

Re: Does Speech Library Support in Community Edition

Post by Klaus » Tue Aug 06, 2013 5:41 pm

The Commercial and Community versions of Livecode have an identical feature set,
but the Community version cannot save/open password protected stacks!

danish
Posts: 13
Joined: Tue Aug 06, 2013 12:36 pm

Re: Does Speech Library Support in Community Edition

Post by danish » Tue Aug 13, 2013 8:45 am

Sir, But What is this Tiny test?
Please Guide me with little explanatory detail,
I will be thankful to you!!

Simon
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 3901
Joined: Sat Mar 24, 2007 2:54 am

Re: Does Speech Library Support in Community Edition

Post by Simon » Tue Aug 13, 2013 9:03 am

Hi Danish,
Please look up revSpeak in the dictionary also look up "speak" here:
http://lessons.runrev.com/

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!

Dixie
Livecode Opensource Backer
Livecode Opensource Backer
Posts: 1336
Joined: Sun Jul 12, 2009 10:53 am

Re: Does Speech Library Support in Community Edition

Post by Dixie » Tue Aug 13, 2013 9:06 am

danish...

put this in a button script...

Code: Select all

on mouseUp
   revSpeak "Hello,, it seems I have found my voice"
end mouseUp

danish
Posts: 13
Joined: Tue Aug 06, 2013 12:36 pm

Re: Does Speech Library Support in Community Edition

Post by danish » Tue Aug 13, 2013 10:15 am

Yes Simon I had already tried this code, But When i am executing the code then its debugging is automatically stopping.

Simon
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 3901
Joined: Sat Mar 24, 2007 2:54 am

Re: Does Speech Library Support in Community Edition

Post by Simon » Tue Aug 13, 2013 10:26 am

Hi Danish,
I didn't provide any code.
What code have you tried and do you get an error?

Try Dixie's code on a NEW stack with 1 button and only the button code.

other:
What system/version are you developing on?

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!

danish
Posts: 13
Joined: Tue Aug 06, 2013 12:36 pm

Re: Does Speech Library Support in Community Edition

Post by danish » Tue Aug 13, 2013 12:32 pm

Thanks Simon! I am using ubuntu 12.04 Operating System.

danish
Posts: 13
Joined: Tue Aug 06, 2013 12:36 pm

Re: Does Speech Library Support in Community Edition

Post by danish » Tue Aug 13, 2013 12:36 pm

My Livecode Application is always opening in Running Mode, Indeed It is not stopping from debugging, Does it is bug of Livecode only, or What Else could be reason??

Thanks & Regards
--------------------
Danish

wsamples
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 264
Joined: Mon May 18, 2009 4:12 am

Re: Does Speech Library Support in Community Edition

Post by wsamples » Tue Aug 13, 2013 4:32 pm

revSpeak is not available under Linux.

Running openSUSE I can use 'espeak' and the shell function:

Code: Select all

get shell("espeak 'what do you want me to say' ")
This command (espeak) seems to have been installed as a default accessibility feature in openSUSE. (I don't recall installing it.) The space betwewen the inner and outer quote at the end in my example is just for clarity. It works this way, but is not necessary.

Post Reply