naturallyspeaking

How can I camelCase a phrase with Dragon NaturallySpeaking's advanced scripting?

拟墨画扇 提交于 2020-01-17 08:02:49
问题 From time to time, typically when coding, I would like to dictate a phrase so that it is camelCased a phrase. For example, when I dictate sentence generator I would like Dragon NaturallySpeaking to write sentenceGenerator . How can I camelCase a phrase with Dragon NaturallySpeaking's advanced scripting? Same question for Dragon Dictate: How can I convert a series of words into camel case in AppleScript? 回答1: You can use this function: ' CamelCases the previous <1to10> words: ' Voice command

How can I camelCase a phrase with Dragon NaturallySpeaking's advanced scripting?

a 夏天 提交于 2020-01-17 08:02:17
问题 From time to time, typically when coding, I would like to dictate a phrase so that it is camelCased a phrase. For example, when I dictate sentence generator I would like Dragon NaturallySpeaking to write sentenceGenerator . How can I camelCase a phrase with Dragon NaturallySpeaking's advanced scripting? Same question for Dragon Dictate: How can I convert a series of words into camel case in AppleScript? 回答1: You can use this function: ' CamelCases the previous <1to10> words: ' Voice command

Can I write SQL using speech recognition?

心不动则不痛 提交于 2020-01-09 09:08:14
问题 I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition. 回答1: Yes. SQL is well-suited to speech recognition (as well-suited as a programming language can be, that is), given it's limited vocabulary and sentence-like structure. Aside from formatting the SQL so that it looks nice, I can dictate it much faster than typing. Dictating code isn't for everyone, however. It can be quite frustrating in the beginning. The

Can I write SQL using speech recognition?

天涯浪子 提交于 2020-01-09 09:06:15
问题 I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition. 回答1: Yes. SQL is well-suited to speech recognition (as well-suited as a programming language can be, that is), given it's limited vocabulary and sentence-like structure. Aside from formatting the SQL so that it looks nice, I can dictate it much faster than typing. Dictating code isn't for everyone, however. It can be quite frustrating in the beginning. The

What is the difference between the commands SendKeys, SendSystemKeys or SendDragonKeys?

谁说胖子不能爱 提交于 2019-12-18 09:07:14
问题 When writing a voice command using Advanced Scripting, I can send the key using SendKeys , SendSystemKeys or SendDragonKeys . What's the difference between those three commands? I use Dragon NaturallySpeaking 12.5 professional (Windows 7 SP1 x64 Ultimate). 回答1: Amongst other differences, SendKeys, SendSystemKeys or SendDragonKeys use different key names: 来源: https://stackoverflow.com/questions/24110929/what-is-the-difference-between-the-commands-sendkeys-sendsystemkeys-or-senddrag

Which programming languages can I use with Dragon Advanced Scripting?

最后都变了- 提交于 2019-12-12 22:24:34
问题 I read on http://www.nuance.com/products/help/dragon/dragon-for-pc/scriptref/Content/scrptref/scripting_language_quickref.htm : Dragon Advanced Scripting lets you use programming languages such as Microsoft® VBA to program commands that can perform virtually any function on the computer with voice commands. Which programming languages can I use with Dragon Advanced Scripting on Microsoft Windows, besides Microsoft® VBA? 回答1: I suspect that the above reference to multiple languages that can be

Getting the system's time zone with Dragon NaturallySpeaking's Advanced Scripting

纵然是瞬间 提交于 2019-12-11 10:39:03
问题 I want to display the current date and time with Dragon NaturallySpeaking's Advanced Scripting: I display the date and the time as follows: Sub Main DateToday$ = Format(Now,"yyyy-mm-dd hh:nn:ss") SendKeys DateToday$ End Sub It outputs something like "2015-01-19 21:45:07". How can I write the system's time zone as well? I use Dragon NaturallySpeaking 12.5 Professional with Windows 7 SP1 x64 Ultimate. 回答1: Well, see my answer here: https://stackoverflow.com/a/44507647/5521857 So, have Dragon

How can I mute the speakers with Dragon NaturallySpeaking's advanced scripting?

狂风中的少年 提交于 2019-12-02 20:36:48
问题 Is there any way to mute the speakers with Dragon NaturallySpeaking's advanced scripting? 回答1: If what you want done can be done with any other scripting language, use it and call that script from Dragon. DNS and DP Advanced Scripting is generations old. I use AutoHotKey for nearly everything, but I have a few VBS and JS scripts I call, and even an HTA. E.g., I have an AHK script that manipulates my soundcards changes volume, mutes, etc., all by passing arguments in from the command line: Sub

What is the difference between the commands SendKeys, SendSystemKeys or SendDragonKeys?

淺唱寂寞╮ 提交于 2019-11-29 14:52:24
When writing a voice command using Advanced Scripting, I can send the key using SendKeys , SendSystemKeys or SendDragonKeys . What's the difference between those three commands? I use Dragon NaturallySpeaking 12.5 professional (Windows 7 SP1 x64 Ultimate). Amongst other differences, SendKeys, SendSystemKeys or SendDragonKeys use different key names: 来源: https://stackoverflow.com/questions/24110929/what-is-the-difference-between-the-commands-sendkeys-sendsystemkeys-or-senddrag

Can I write SQL using speech recognition?

夙愿已清 提交于 2019-11-28 05:44:22
I have wrist pain when I type and I would like to start writing SQL statements, stored procedure, and views using speech recognition. Keith Walton Yes. SQL is well-suited to speech recognition (as well-suited as a programming language can be, that is), given it's limited vocabulary and sentence-like structure. Aside from formatting the SQL so that it looks nice, I can dictate it much faster than typing. Dictating code isn't for everyone, however. It can be quite frustrating in the beginning. The people who try this and stick with it will probably be those who have no other choice. I use Dragon