Page 1 of 1

Does Speech Library Support in Community Edition

Posted: Tue Aug 06, 2013 12:49 pm
by danish
Does in Community Edition Speech Library support or not?

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 06, 2013 1:15 pm
by Klaus
Hi danish,

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


Best

Klaus

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

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 06, 2013 5:41 pm
by Klaus
The Commercial and Community versions of Livecode have an identical feature set,
but the Community version cannot save/open password protected stacks!

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 8:45 am
by danish
Sir, But What is this Tiny test?
Please Guide me with little explanatory detail,
I will be thankful to you!!

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 9:03 am
by Simon
Hi Danish,
Please look up revSpeak in the dictionary also look up "speak" here:
http://lessons.runrev.com/

Simon

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 9:06 am
by Dixie
danish...

put this in a button script...

Code: Select all

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

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 10:15 am
by danish
Yes Simon I had already tried this code, But When i am executing the code then its debugging is automatically stopping.

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 10:26 am
by Simon
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

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 12:32 pm
by danish
Thanks Simon! I am using ubuntu 12.04 Operating System.

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 12:36 pm
by danish
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

Re: Does Speech Library Support in Community Edition

Posted: Tue Aug 13, 2013 4:32 pm
by wsamples
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.