Voice Recognition ?

2014-08-08 Thread Ruediger Wilhelm
I would like to build an application in LC for Win and Android where the user reads a question from the screen and enters his response by talking single words into the microphone. The quality of the answer has to be evaluated by the program. Has somebody advice or experience in this respect?

Re: Voice Recognition ?

2014-08-08 Thread Skip Kimpel
I would love to hear some other input from the community on this. I have never done it with LC but have done it in past with an Arduino... After a quick search I found this interesting raspberry pi project: http://www.raspberrypi.org/meet-jasper-open-source-voice-computing/ Keep us

Re: Voice Recognition ?

2014-08-08 Thread Roger Eller
I talked this using speech recognition on android. That's funny. I said typed but it put talked. Was it being cute, or did it misinterpret my speech? Anyway, I've only played around with this. Any field that has focus is already speech enabled. Just touch the microphone on the Android keyboard.

[OT] David Lamp

2014-08-08 Thread Mark Schonewille
Dear David Lamp, I have tried to contact you, but without any result so far. Perhaps the contact information you provided me with was incorrect or incomplete. Would you please be so kind to contact supp...@economy-x-talk.com when you read this? Please, make sure that you get an (auto-)

LiveCode 7.0 DP9

2014-08-08 Thread Fraser Gordon
Dear List Members. We are pleased to announce the release of LiveCode 7.0 DP9. * Warning, this is a pre-release with new features which have the potential to cause issues. Please ensure you backup your stacks before testing this release.* Release Focus Bug fixes 26 in 7.0 related engine

RELEASE: LiveCode 6.7 DP8

2014-08-08 Thread Fraser Gordon
Dear List Members. We are pleased to announce the release of LiveCode 6.7 DP8. Release Focus 28 bug fixes Known issues The multicore rending architecture is causing some subtle rendering glitches on retina Macs Multicore rendering disabled in Windows due to multimedia not being thread-safe

Re: Image File Size Reduction

2014-08-08 Thread Ray
Richard, I finally got around to trying your suggestions regarding changing an image file's color depth. I'm not sure what the syntax is. Here's the exact line of code: export img myImage to file myFilePath as png I've tried inserting as raw or even just raw just about everywhere I can

Sorry

2014-08-08 Thread hh
'phaworth' posted in the forum: @-hh Since you asked for judgement on your level of impertinence, I find it to be extreme, rude, condesending and insulting. Not only in this post but in others both here and in your mailing list posts. No cite, no quote. As we never had contact in the forum I

What is LiveCloud?

2014-08-08 Thread Igor de Oliveira Couto
Dear ListMembers, The last issue of RevUp has an article titled LiveCloud Part 2. I seem to have missed part 1 - could someone post me a link? And just what is LiveCloud? Is it related to this site?: http://livecloud.com -- Igor Couto Sydney, Australia

Re: What is LiveCloud?

2014-08-08 Thread Skip Kimpel
It is a cloud based database made specifically for livecode. On Aug 8, 2014, at 8:02 PM, Igor de Oliveira Couto i...@semperuna.com wrote: Dear ListMembers, The last issue of RevUp has an article titled LiveCloud Part 2. I seem to have missed part 1 - could someone post me a link? And

Re: What is LiveCloud?

2014-08-08 Thread Skip Kimpel
Here is a recent link: http://livecloud.io/we-have-gone-beta/ On Aug 8, 2014, at 8:02 PM, Igor de Oliveira Couto i...@semperuna.com wrote: Dear ListMembers, The last issue of RevUp has an article titled LiveCloud Part 2. I seem to have missed part 1 - could someone post me a link? And

Using an internal file for PDF for manual

2014-08-08 Thread Charles Szasz
I have added a PDF file to my app. I want to show the PDF manual using the user's PDF application Preview on the Mac and Acrobat Reader on Windows. So far I have unable to use the Launch Document because of not knowing the path for a PDF added to the app. Does anybody know how to script to

Re: Using an internal file for PDF for manual

2014-08-08 Thread larry
Hi Charles, I use a PDF in my app for a manual. In windows, at least, if you launch the PDF document and the user has Adobe Reader installed, then it is the default program for a PDF file and will automatically launch it. I don't know how it works on a Mac. Larry - Original Message -

Re: Using an internal file for PDF for manual

2014-08-08 Thread Charles Szasz
Larry, How did you script this for windows? Sent from my iPad ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Using an internal file for PDF for manual

2014-08-08 Thread larry
Hi Charles, I used the following: launch document myHelp.pdf if the result empty then answer the result with OK end if With the launch document command, the result will be empty unless an error occurred. If no error occurs, the default program will launch the document. So I added the if

Re: Using an internal file for PDF for manual

2014-08-08 Thread Charles Szasz
Larry, I tried that script earlier (without the script for Ok button) before I posted a message for help. It did not work. In the standalone settings, I added the PDF Manual as a file to my settings. I will go back and see why it did not work. Sent from my iPad

Re: Using an internal file for PDF for manual

2014-08-08 Thread larry
Hi Charles, I don't know if it makes a difference, but I have the PDF file in a folder myData which I set as the default folder when I start up my app. So LC goes to that default folder to launch the document and uses the default Windows program to do so. Good luck! Larry - Original