<?xml version="1.0" ?> 
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
<channel>
  <title>KnowBrainer Speech Recognition - DragonDictate</title> 
  <description>KnowBrainer Speech Recognition Forums - the largest speech recognition forum in the world.</description> 
  <link>http://www.knowbrainer.com/forums/forum/index.cfm?forumid=1</link> 
  <generator>FuseTalk Standard Edition</generator> 

	<item>
		<title>using AppleScript to get information about commands in Dragon Dictate 3 for Macintosh</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16507</link> 
		<pubDate>Thu, 16 May 2013 19:57:10 EST</pubDate> 
		<dc:creator>mpatton</dc:creator>
   	    <slash:comments>1</slash:comments> 
		<description><![CDATA[ &lt;p&gt;If you want to get information about your commands, such as their names, ID numbers, contents, etc. and use it in another application (for example creating a database of your commands that you can search easily) you need to be able to &amp;nbsp;programmatically access Dragon Dictate.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;You can do this directly from the AppleScript editor. For example, &amp;nbsp;if you enter the following command into the AppleScript editor, (while Dragon Dictate is running):&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;tell&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&lt;em&gt;application&lt;/em&gt;&lt;/span&gt;&lt;span&gt; &quot;Dragon Dictate&quot; &lt;/span&gt;&lt;strong&gt;to&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;get&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;the&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;first&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&lt;em&gt;command&lt;/em&gt;&lt;/span&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;of&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;the&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;strong&gt;first&lt;/strong&gt;&lt;span&gt; &lt;/span&gt;&lt;span&gt;&lt;em&gt;group&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;then you will get the following result:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&lt;span&gt;&lt;em&gt;command&lt;/em&gt;&lt;/span&gt; &quot;//Enter or Switch to// Full Screen&quot; &lt;strong&gt;of&lt;/strong&gt; &lt;span&gt;&lt;em&gt;group&lt;/em&gt;&lt;/span&gt; &quot;Global&quot; &lt;strong&gt;of&lt;/strong&gt; &lt;span&gt;&lt;em&gt;application&lt;/em&gt;&lt;/span&gt; &quot;Dragon Dictate&quot;&lt;/p&gt;
&lt;p&gt;Alternatively you can ask for other information as follows:&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&lt;strong&gt;tell&lt;/strong&gt; &lt;span&gt;&lt;em&gt;application&lt;/em&gt;&lt;/span&gt; &quot;Dragon Dictate&quot; &lt;strong&gt;to&lt;/strong&gt; &lt;strong&gt;get&lt;/strong&gt; &lt;strong&gt;the&lt;/strong&gt; &lt;span&gt;content&lt;/span&gt; &lt;strong&gt;of&lt;/strong&gt; &lt;strong&gt;the&lt;/strong&gt; 2&lt;strong&gt;nd&lt;/strong&gt; &lt;span&gt;&lt;em&gt;command&lt;/em&gt;&lt;/span&gt; &lt;strong&gt;of&lt;/strong&gt; &lt;strong&gt;the&lt;/strong&gt; &lt;strong&gt;first&lt;/strong&gt; &lt;span&gt;&lt;em&gt;group&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;then you will get the following result (or something &amp;nbsp;similar):&lt;/p&gt;
&lt;p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &quot;set _dictateApp to (name of current application)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; tell application _dictateApp&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;--set show Available Commands to false&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;set &amp;laquo;class shAC&amp;raquo; to false&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; end tell&quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;The &quot;content&quot; property of a command is what the command does when it is executed. &amp;nbsp;Since &amp;nbsp;(in this case) the command is an AppleScript command [e.g. it&apos;s &quot;command type&quot; is AppleScript], the &quot;content&quot; is the AppleScript itself. if the &quot;command &amp;nbsp;type&quot; property of a command is &quot;keystroke&quot; then it&apos;s &quot;content&quot; property will be something like &quot;Command-Shift-k&quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Other properties you can get include name, ID, description, content, active, language, command type, command mode, recognition training mode, dictation mode, sleep mode, spelling mode, application name, application version, version, &amp;nbsp;user created.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;if you export a command using Dragon Dictate&amp;gt;File&amp;gt;CommandExport ..., you will see that many of these values are embedded in the XML file of the command that is exported.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Using AppleScript, you should be able to loop your way through all the commands (all the commands they will let you see!) in &amp;nbsp;AppleScript, pull the data out, and stick it in a spreadsheet or table that you can then sort or search.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;if anyone knows any other websites that are helpful in extracting information regarding commands, I would appreciate knowing about it. Please add a comment to this topic.&lt;/p&gt;
&lt;/p&gt;
&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>I discovered how to create voice variables</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16503</link> 
		<pubDate>Thu, 16 May 2013 11:27:22 EST</pubDate> 
		<dc:creator>mpatton</dc:creator>
   	    <slash:comments>1</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Here is a simple command you can create that will let you pass a voice variable to Dragon Dictate 3 for Macintosh.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;1. &amp;nbsp;&amp;nbsp;Create a command as follows:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Command Name: &amp;nbsp;elephant calibrate /!Diddly!/&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Context: Global&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Type: Applescript&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Applescript:&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;on srhandler(vars)&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; set dictatedText to varDiddly of vars&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; say &quot;the text you spoke was&quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; say dictatedText&lt;/p&gt;
&lt;p&gt;&amp;nbsp; end srhandler&lt;/p&gt;
&lt;p&gt;2. &amp;nbsp;Try it out&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;a. you say &quot;elephant calibrate hello there buddy&quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;b. The computer should respond by saying &quot;the text you spoke was hello there buddy&quot;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;NOTES: &amp;nbsp;&lt;/p&gt;
&lt;p&gt;The words &quot;elephant calibrate&quot; were chosen at random. They can be anything.&lt;/p&gt;
&lt;p&gt;The variable name &quot;Diddly&quot; can be anything. But whatever variable name you choose to use in the Command Name, you must refer to it as &quot;varVariableName&quot; in the AppleScript.&lt;/p&gt;
&lt;p&gt;I believe that &quot;srhandler()&quot; is the speech recognition event handler for Dragon Dictate 3.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Next up: seeing if it can handle two or more voice variables.&lt;/p&gt;
&lt;p&gt;I am just learning the Mac (I use DNS12.5 at work)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>How to create variables in Dragon Dictate 3 (Mac)</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16500</link> 
		<pubDate>Thu, 16 May 2013 02:23:35 EST</pubDate> 
		<dc:creator>mpatton</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I just converted to a Mac. I have Dragon Dictate 3.&lt;/p&gt;
&lt;p&gt;When creating a custom command I would like to pass it a variable (e.g. something like &quot;Backspace &amp;lt;1to50&amp;gt; times&quot;.&lt;/p&gt;
&lt;p&gt;Anyone know how to create a voice variable like this in DD3?&lt;/p&gt;
&lt;p&gt;I am almost positive it can be done (with the proper syntax) since some of the built-in DD3 commands use variables such as:&lt;/p&gt;
&lt;p&gt;&quot;(Post or Update) (to) &amp;nbsp;(my) (Social Networking Site) (wall or page)&quot;&lt;/p&gt;
&lt;p&gt;where &quot;Post or Update&quot; is &quot;Post&quot; or &quot;Update&quot; or &quot;Tweet&quot; or &quot;Facebook&quot;&lt;/p&gt;
&lt;p&gt;and where &quot;Social Networking Site&quot; is &quot;Twitter&quot; or &quot;Facebook&quot;&lt;/p&gt;
&lt;p&gt;and where &quot;wall or page&quot; is &quot;wall&quot; or &quot;page&quot;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Opening vocabulary editor crashes Dragon Dictate 3</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16465</link> 
		<pubDate>Tue, 07 May 2013 16:48:08 EST</pubDate> 
		<dc:creator>harvid</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I start running into this issue today. My user profile continues to work for dictation. However, if I attempt to open the Vocabulary Editor Dragon Dictate 3 will crash. I do have an alternate profile which I created for which there is no issue opening the vocabulary editor. For my primary profile, the crash will happen regardless of which audio source I use.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have seen similar complaints with earlier versions of Dragon Dictate. Unfortunately, no one posted a resolution&amp;hellip;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any help that could be offered would be great!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Chris&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>DragonDictate 3.0 Classic Edition for Windows question</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16346</link> 
		<pubDate>Sat, 13 Apr 2013 10:42:56 EST</pubDate> 
		<dc:creator>netcruezer</dc:creator>
   	    <slash:comments>4</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I have always used DragonDictate 3.0 Classic Edition for Windows for the last 15 years and ran it successfully in Windows 95, 98, and XP Professional aSP3&lt;/p&gt;
&lt;p&gt;Recently I got a new computer running Windows 7 (64-bit) Professional and knew it wouldn&apos;t work within the Windows 7 OS but thought i would be able to install XP mode which is a functioning copy of Windows XP Professional SP3.&lt;/p&gt;
&lt;p&gt;I was able to get the DragonDictate 3.0 Classic Edition installed but it&apos;s not working properly.&amp;nbsp; The voice bar jumps and doesn&apos;t recognize what I&apos;m saying.&amp;nbsp; I can&apos;t even run the Quick Tutorial Training because it doesn&apos;t recognize anything.&lt;/p&gt;
&lt;p&gt;Has anybody tried installing DragonDictate 3.0 Classic Edition for Windows in XP mode in Windows 7 (64-bit)&lt;/p&gt;
&lt;p&gt;Is it possible to get it to work?&amp;nbsp; If you have any suggestions or insight on this problem please email me at netcruezer@aol.com&lt;/p&gt;
&lt;p&gt;Todd&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Hands-free solutions for Macintosh</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16313</link> 
		<pubDate>Mon, 08 Apr 2013 17:41:01 EST</pubDate> 
		<dc:creator>schafercg</dc:creator>
   	    <slash:comments>4</slash:comments> 
		<description><![CDATA[ &lt;p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span&gt;Nuance does not list Dragon Dictate 2 or 3 as 508 complaint &lt;/span&gt;&lt;a href=&quot;http://nuance.custhelp.com/app/answers/detail/a_id/3405/kw/508/session/L3RpbWUvMTM2NDgyOTkxNy9zaWQvSS1oVUREbWw=&quot;&gt;http://nuance.custhelp.com/app/answers/detail/a_id/3405/kw/508/session/L3RpbWUvMTM2NDgyOTkxNy9zaWQvSS1oVUREbWw=&lt;/a&gt;&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;but I know they are making a lot of changes and improvements. Has anyone been using Dragon Dictate version 2 or 3 as a hands-free alternative successfully on the Macintosh? Are there specific limitations in comparsion to using Dragon NaturallySpeaking on Windows? Can someone who has been using Dragon NaturallySpeaking on Windows make the switch to a Macintosh and be able to use the computer completely hands-free?&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;
&lt;p class=&quot;MsoNormal&quot;&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Enlarge Recognition Window Text</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16166</link> 
		<pubDate>Fri, 15 Mar 2013 15:12:50 EST</pubDate> 
		<dc:creator>kmlefebvre</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Is there a way to enlarge the font size of the recognition window for users with visual impairments? &amp;nbsp;Thank you!&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate 3 Mac -- User defined &quot;keystroke&quot; won&apos;t send modifier (command key)</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16161</link> 
		<pubDate>Thu, 14 Mar 2013 17:23:42 EST</pubDate> 
		<dc:creator>edtalks</dc:creator>
   	    <slash:comments>7</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I designed a User Defined Safari command that included&amp;nbsp;a Command-Key-modified Right Arrow] for use in a web app (comapping.com). It used to work fine, but now it doesn&apos;t.&amp;nbsp;My version is 3.0.2. &amp;nbsp;This command stopped working pretty recently, so I&apos;m wondering, could the new Dictate version be what crumped the command?&amp;nbsp;I have auto-update turned on...&amp;nbsp;could someone tell me when 3.0.2 came out?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I can&apos;t show it as it appears in the editing pane of the Commands window of Dragon Dictate, because this message board won&apos;t show the symbols, but here&apos;s what the command does:&amp;nbsp;&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #008000;&quot;&gt;esc&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p style=&quot;padding-left: 30px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;color: #008000;&quot;&gt;command-right-arrow&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Dragon does send the esc followed by the right arrow, but doesn&apos;t send the Command Key modifier.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Sending other keystrokes in combination with the command key, for instance command-tab, (the app switcher) does work. &amp;nbsp;Manually typing&amp;nbsp;??&lt;span&gt; &lt;/span&gt;(command-right-arrow) still works on comapping.com.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thoughts? I don&apos;t know AppleScript, but could that be a work-around?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;THANKS!&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &amp;nbsp;...Ed&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>DNS 10.1 questions and error message</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=16031</link> 
		<pubDate>Sun, 24 Feb 2013 20:14:11 EST</pubDate> 
		<dc:creator>Alan_Stancliff</dc:creator>
   	    <slash:comments>7</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Hello all,&lt;br /&gt;&lt;br /&gt;It&apos;s been a long time since I&apos;ve been here. I was last here in 2010. Shortly after my last visit, my wife of many years died and many things in my life changed. I stopped using DNS when I realized that the computer I had probably was just not powerful enough to run it.&lt;br /&gt;&lt;br /&gt;I now have a new computer, described in my profile and in my signature line, which I&apos;m sure is up to the job. I am still using version 10.1, and I have a few questions.&lt;br /&gt;&lt;br /&gt;I work as a medical transcriptionist. I use this application to redictate material that the physicians record. I now have 8 Gb of memory, Windows Premium Home Edition 64-bit on a pretty powerful CPU. DNS is working far better on this computer them on my previous one. Nevertheless, I&apos;m having some problems that seem to be similar to a few problems I had on the older system. One is this: If I get confused in my punctuation and seek to use voice commands to fix it, the program locks up, and I get an error message.&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://www.knowbrainer.com/forums/forum/attachments/viewattachment.cfm?attachid=2570&amp;forumid=1&quot; alt=&quot;&quot; /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;br /&gt;The other question that I have is this: Would I be better off upgrading to the latest version of DNS? Right now I have DNS 10.1 Preferred, and I&apos;m on rather limited means, so if I do upgrade, would it be worth the extra shekels to pay for the Professional as opposed to the Preferred edition?&lt;br /&gt;&lt;br /&gt;I&apos;m sure I&apos;ll have other questions as time goes by.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Alan&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Global Insert Date Command</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15940</link> 
		<pubDate>Tue, 12 Feb 2013 09:16:09 EST</pubDate> 
		<dc:creator>stevealex</dc:creator>
   	    <slash:comments>3</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Is it possible to have a global &quot;insert date&quot; command in Dragon Medical? Specifically, I would like to include the current date as part of Word filenames without having to say the entire date each time. The &quot;insert date&quot; command works in the body of a word document, but it does not work in the file save dialog.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>DNS vs ViaVoice</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15857</link> 
		<pubDate>Sat, 26 Jan 2013 12:55:20 EST</pubDate> 
		<dc:creator>archaeologist127</dc:creator>
   	    <slash:comments>10</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I have been using ViaVoice to dictate letters and technical reports for the past 20 years, but only as a minor addition to typing when my eyes are tired. The accuracy, even though it is well trained and I speak standard English, is disappointingly low. Not surprisingly it gets technical words such as Archaeopteryx right every time, but is less accurate on common words. I am currently using ViaVoice Pro Version 10 with Windows XP Pro 32-bit. Speed was a major problem in the distant past but even with Win 32-bit this is no longer a problem. Recognition always was and stil is the problem.&lt;/p&gt;
&lt;p&gt;I would like to &apos;upgrade&apos; to DNS, but only if the recognition is likely to be better. If so, which version should I buy? I would not want to upgrade to version that had more &apos;capabilities&apos; but the same poor recognition. &amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate 3 commands</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15823</link> 
		<pubDate>Sun, 20 Jan 2013 07:46:00 EST</pubDate> 
		<dc:creator>Robianx</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I recently had to make a new user on my Macbook Pro due to corrupted files. &amp;nbsp;In doing so, I was able to bring over Dragon Dictate with my microphone profiel, however when I started to dictate and tried to use my personal commands- they were not there.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have yet to delete my old ueser. &amp;nbsp;Would anyone be able to tell me where I can find (what files) my personal commands would be located?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
&lt;p&gt;Rob&lt;/p&gt;
&lt;p&gt;PS&lt;/p&gt;
&lt;p&gt;I am using a mid 2012 Macbook Pro 15 inch retina 16gb ram 2.7Ghz i7&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate 2.5 crashes upon launch</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15738</link> 
		<pubDate>Mon, 07 Jan 2013 07:36:24 EST</pubDate> 
		<dc:creator>godstrongpatty</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I use a MacBook Pro with my Dragon and microphone because that&apos;s all I have except a Netbook which has no external disk drive and is slow as molasses.&amp;nbsp; Because it is a laptop, I frequently move it from place to place, particularly to the printer so that I can plug it in and print when I need to.&amp;nbsp; The problem is that Dragon Dictate apparently does not like its microphone to be unplugged for long and will now crash whenever I try to launch it.&lt;/p&gt;
&lt;p&gt;I have done the steps of uninstalling it and then reinstalling it but this last time it did not work.&amp;nbsp; The downloaded file will not open&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Which Tablet OS best  for Dragon? Android  -  Win 8  -  IPad or Samsung Galaxy?</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15568</link> 
		<pubDate>Fri, 07 Dec 2012 21:42:30 EST</pubDate> 
		<dc:creator>Windstarsc</dc:creator>
   	    <slash:comments>12</slash:comments> 
		<description><![CDATA[ &lt;div class=&quot;HL_Object-Field-Value&quot;&gt;I&apos;m  about to purchase a tablet for use with my home automation system but I  have a rather unique situation as me wondering which operating system  to go with. I need to use Dragon NaturallySpeaking with this tablet  because I&apos;m unable to push any of the buttons (no use of my limbs). I  would need to either have Dragon be capable of mouse commands by saying  &quot;MouseGrid&quot; or I&apos;m open to any other suggestions but it would absolutely  be necessary for me to control the tablet by voice only.&lt;/div&gt;
&lt;div class=&quot;HL_Object-Field HL_Style_ClearFix HL_ContentType_Wysiwyg&quot;&gt;
&lt;div class=&quot;HL_Object-Field-Value&quot;&gt;
&lt;p&gt;&lt;br /&gt; What operating systems will Dragon NaturallySpeaking V12 be compatible  with and for what I need, what platform would be the best one to go  with? I prefer to stay away from Apple products for a number of reasons&amp;hellip; Please keep in mind, I&apos;m unable to use any of the touchpad functions or even touch the screen per se.&lt;br /&gt; &lt;br /&gt; I&apos;m open to any and all suggestions but I need to get this working as  soon as possible. I appreciate you taking the time to read my post.&lt;br /&gt; &lt;br /&gt; &amp;ndash;&amp;gt;Bruce&lt;/p&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;div id=&quot;nuan_ria_plugin&quot;&gt;
]]></description>
	</item>

	<item>
		<title>Insert date in DNS Premium</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15539</link> 
		<pubDate>Wed, 05 Dec 2012 00:03:22 EST</pubDate> 
		<dc:creator>Leon</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;
&lt;p&gt;I&apos;m just wondering if the latest version of Dragon NaturallySpeaking premium allows you to prevent the automatic updating of dates. In previous versions it seemed you had no choice; the automatic updating box was always crossed in Dragon NaturallySpeaking.&lt;/p&gt;
&lt;p&gt;How can you change this option?&lt;/p&gt;
&lt;p&gt;This may seem a small matter but it can be highly irritating, particularly if I do not not recognise I have left it crossed.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Equivalent of the Resume command in DragonDictate</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15506</link> 
		<pubDate>Thu, 29 Nov 2012 21:11:54 EST</pubDate> 
		<dc:creator>christianagain</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;&amp;nbsp;I&apos;ve been using Dragon NaturallySpeaking under Windows (versions 8 and 9.5) for several years, and have recently started using DragonDictate on the Mac. &amp;nbsp;My question is, is there an equivalent of the Resume command in DragonDictate? (For anyone not familiar, this works by saying &quot;resume with xxxxx&quot; and all the text prior to that specified is deleted.)&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks in advance,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Christian.&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate can&apos;t &quot;hear&quot; bluetooth microphone</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15477</link> 
		<pubDate>Sat, 24 Nov 2012 13:37:37 EST</pubDate> 
		<dc:creator>JerryL</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;
&lt;p&gt;I recently bought an Xpressway bluetooth headset for my Macbook with DD 3. &amp;nbsp;I&apos;m using a USB bluetooth adapter as recommended.&lt;/p&gt;
&lt;p&gt;The Xpressway is able to &quot;pair&quot; with the bluetooth adapter, and I can see in &quot;Sound Preferences&quot; that the computer is picking up the input from the mic.&lt;/p&gt;
&lt;p&gt;When I try to create a new input profile in DD3, however, it is obvious the Dragon doesn&apos;t &quot;hear&quot; any audio input, whether on the &quot;internal microphone&quot; (recommended by the on-line guide) or the &quot;line-in&quot; input. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&apos;m so close, so it&apos;s frustrating to not be able to complete this last step - any suggestions?&lt;/p&gt;
&lt;p&gt;Thanks in advance,&lt;/p&gt;
&lt;p&gt;Jerry&lt;/p&gt;
&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate sometimes stops transcribing</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15390</link> 
		<pubDate>Sun, 11 Nov 2012 19:51:42 EST</pubDate> 
		<dc:creator>veganjenny</dc:creator>
   	    <slash:comments>10</slash:comments> 
		<description><![CDATA[ &lt;p&gt;
&lt;p class=&quot;p1&quot;&gt;I&apos;ve been having this really frustrating problem with Dragon Dictate lately. I will start dictating and everything will be going fine. Then, suddenly, Dragon just stops transcribing. It may have something to do with audio, since the status window doesn&apos;t show that it is receiving as much audio as I would expect when I speak. Sometimes, it doesn&apos;t pick up anything at all, and sometimes it picks up one or two words out of the phrase that I am saying. Does anyone know what could be causing this? It seems that if I quit out of Dragon Dictate, and reopen the application, things get better.&lt;/p&gt;
&lt;p class=&quot;p2&quot;&gt;&amp;nbsp;&lt;/p&gt;
&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate 3 Transcription - Olympus Pro Dictaphones Not Yet Compatible</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15351</link> 
		<pubDate>Sat, 03 Nov 2012 04:37:41 EST</pubDate> 
		<dc:creator>dictate</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;My first post .. bit nervous, but I guess nobody is watching so here I go !!&lt;/p&gt;
&lt;p&gt;I was one of the few that was genuinely excited when Nuance bumped to Dragon Dictate 3 and finally introduced transcription. I have had so many calls by my Aussie customers over the years asking about this feature. We all knew it would come but boy did it take a while.&lt;/p&gt;
&lt;p&gt;So of course first thing we try is our trusty DS-7000 to record some audio and run it into transcription .. no joy:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The file &quot;DS700001.aif&quot; cannot be transcribed.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Dictate cannot use files with a sampling rates below 22.050 kilohertz.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;DSS Player Plus v7 converts .ds2 (as DD3 won&apos;t take .ds2 files on Mac unlike NaturallySpeaking on Windows) to the only compatible audio format on a Mac - .aif but only achieves a maximum of 16 kHz.&lt;/p&gt;
&lt;p&gt;There is a way around this using some other software from Olympus called Sonority. But getting ahold of Sonority is not as easy as a download from the Olympus website. I have been giving copies of Sonority away to my customers.&lt;/p&gt;
&lt;p&gt;Anyway, just thought I would put this one out there. I have had chats with Olympus and Nuance in Australia to update them and I know it is being raised with Olympus in Japan. Hopefully a fix will be rolled out in the next release of DSS Player Plus.&lt;/p&gt;
&lt;p&gt;More on this on my blog: &lt;a href=&quot;http://dictat.es/dd3-ds2&quot; target=&quot;_blank&quot;&gt;dictat.es/dd3-ds2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Weird glitches with Dragon Dictate 3.0</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15350</link> 
		<pubDate>Sat, 03 Nov 2012 00:39:16 EST</pubDate> 
		<dc:creator>veganjenny</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&apos;m getting some really bizarre behavior when I&apos;m using Dragon. I tend to dictate into the &amp;nbsp;Dragon Notepad because it seems to work better than trying to dictate into an application directly. I&apos;ve been noticing as I dictate that sometimes, if I pause, and pick up again, instead of continuing from the end, it moves the insertion point a few characters to the left. Sometimes, it will even randomly move the insertion point into the middle of a paragraph. As you can imagine, this makes dictation of little challenging.&lt;/p&gt;
&lt;p&gt;Also, there are some words that just refuses to transcribe. For example, the word &quot;cat&quot;. If I use the word cat in a sentence, it works. However, if I use the word on its own or in a very short phrase, for example, &quot;Hi, Cat&quot; it will not work (I had to type out in that last case).&lt;/p&gt;
&lt;p&gt;(edit) FYI: I&apos;m using Dragon Dictate 3.0 with a Sennheiser ME-3 + Andrea USB pod (AK 5370) running on an iMac with a Core i7 and 16 GB of RAM.&lt;/p&gt;
&lt;p&gt;Any suggestions?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Use of commands quote that, bracket that in DNS</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15266</link> 
		<pubDate>Tue, 23 Oct 2012 00:20:57 EST</pubDate> 
		<dc:creator>Leon</dc:creator>
   	    <slash:comments>7</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Two of the three computers I use DNS premium on can respond to the commands quote that and bracket that e.g. if I want to put quotes around a phrase I just select it and say quote that - the quotes appear instantly&apos;; the same with braket that.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;One of my computers does not do that. &amp;nbsp;I cannot see how to get those useful comamnds set up on that third computer. &amp;nbsp;I looked at the commands section but I was somewaht bamboozled.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>DNS - value of more RAM</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15265</link> 
		<pubDate>Tue, 23 Oct 2012 00:17:49 EST</pubDate> 
		<dc:creator>Leon</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;With the most recent desk-top computer I had put together I asked for 24 Gb of RAM, a 1 Tb HD and a four core (I think) i7 chip. &amp;nbsp;It boots off an SSD, not always very reliably.&lt;/p&gt;
&lt;p&gt;I had thought that increasing the RAM to this level would make the recognition almost instant.&lt;/p&gt;
&lt;p&gt;I also have a VAIO laptop with SSD, i7 chip and 8 Gb of RAM. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;There is only a slight perceptible difference in the running of DNS on both; the desktop is marginally faster but not a a difference of practical value.&lt;/p&gt;
&lt;p&gt;Is there is something I am doing wrong preventing DNS from accessing the whole 24 Gb of RAM if it needs it? &amp;nbsp;I am running Windows 7 64 so there should not be any problem in accessing 24 Gb of RAM.&lt;/p&gt;
&lt;p&gt;I am thinking, for my next computer, to just use a Mac Mini server 2.0 with Windows 8 on board and perhaps 8Gb of RAM. &amp;nbsp;Do you think I would notice much loss in speed with DNS over my 24 Gb behemoth?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Review: Dragon Dictate 3 for Mac</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15255</link> 
		<pubDate>Sun, 21 Oct 2012 14:31:52 EST</pubDate> 
		<dc:creator>GDS</dc:creator>
   	    <slash:comments>8</slash:comments> 
		<description><![CDATA[ &lt;p&gt;All,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For as long as I&apos;ve heard about speech recognition on the Mac, the prevailing opinion has been some form of &quot;Dragon Dictate is OK, but it pales in comparison to NaturallySpeaking.&quot; I thought I&apos;d take a closer look at that and share my findings with you. Some choice quotes:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;div class=&quot;FTQUOTE&quot;&gt;&lt;begin quote&gt;At the risk of ascribing human qualities to lines of code (and why not? Dragon is such a good listener!), Dragon Dictate suffers from short term memory loss. Unlike Dragon NaturallySpeaking for the PC, Dragon Dictate will sometimes &amp;ldquo;forget&amp;rdquo; what application you&amp;rsquo;re working in, forget the last utterance you acted on, or forget the last thing you said. All too often I found my work would come to a halt as I was forced to reach for the keyboard and mouse because I was unable to act as expected on text that I just dictated.&lt;/end quote&gt;&lt;/div&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;FTQUOTE&quot;&gt;&lt;begin quote&gt;&lt;span&gt;Dragon Dictate 3 lives up to its name but not its brand. The dictation capability here is stunning, a worthy investment for any Mac owner who wants to save time by dictating and reduce writer&amp;rsquo;s block by speaking what&amp;rsquo;s on their mind. But Dragon Dictate 3 is not representative of what the Dragon speech recognition experience can or should be.Dictate&amp;rsquo;s inability to let users interact with on screen controls by saying what they see forces those who prioritize voice control over dictation into a series of crippling compromises.&lt;/end quote&gt;&lt;/div&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I put &lt;a href=&quot;http://ewaccess.wordpress.com/2012/10/21/dictate-3-review/&quot;&gt;the rest of the review&lt;/a&gt; on my blog. I hope you&apos;ll stop by and read it.&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Speech recognition from recordings</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15172</link> 
		<pubDate>Wed, 10 Oct 2012 11:55:26 EST</pubDate> 
		<dc:creator>DrCreosote</dc:creator>
   	    <slash:comments>3</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Hello,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have hours and hours of recordings that I initially intended to re-type into my computer. Some of these recordings are 25 years old and recorded cassette and microcassette. More recent versions are taken using an RCA digital voice recorder. I don&apos;t even know if it is possible for voice recognition to convert any or all of these recordings to written text. Most of the recordings are short stories and often have some background noise as I generally make these recordings on long commutes, so there is car noise in there.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;My question then is in two parts: First, is it even possible to use software to convert these recordings to text files? Second, if it is possible, what software solutions would be the best fit for me?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thank you,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;DC.&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Can network settings disrupt DNS version 12?</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15158</link> 
		<pubDate>Mon, 08 Oct 2012 15:44:33 EST</pubDate> 
		<dc:creator>brianwalz</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Hello,&lt;br /&gt;&lt;br /&gt;Whenever I&apos;m using Dragon NaturallySpeaking 12 and I click on a YouTube video or even download a new program for instance and my Internet connection is busy, I cannot do anything with Dragon. The area that shows the green microphone icon and next to that area where it shows microphone modulation will be filled in with green or yellow as if I&apos;m talking. I&apos;m not sure if it&apos;s because of a download and my network settings are making noise that only the computer can hear but &lt;strong&gt;I&apos;m unable to do anything nor even turn off the microphone &lt;/strong&gt;for a temporary amount of time once the download begins per se. I don&apos;t recall having any type of similar issues with version 11, this seems to be all new with version 12 and I can&apos;t figure out why it would be doing this. Also, nothing has changed with my network settings and my Internet provider has been unchanged for the past five years.&lt;strong&gt; HELP!&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;My network consists of a wireless modem, I have DSL and I&apos;ve never heard any noise through my computer while downloading or viewing any type of video, etc. Does all this make sense because it doesn&apos;t to me&lt;/strong&gt;.&lt;br /&gt;Thank you and any help you can be, I would appreciate.&lt;/p&gt;
&lt;div id=&quot;nuan_ria_plugin&quot;&gt;
]]></description>
	</item>

	<item>
		<title>Outlook problems</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15143</link> 
		<pubDate>Thu, 04 Oct 2012 20:38:18 EST</pubDate> 
		<dc:creator>RMilo</dc:creator>
   	    <slash:comments>1</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I just switched from legal 11 to legal 12 yesterday and I am unable to scroll down in the message area in Outlook 2010. It work fine in legal 11 as soon as a switched it appears that when you scroll down either by saying &quot;page down&quot; or &quot;move down [X]&quot; it just appears to go down then bounces right back up.&lt;br /&gt;I also found that when I tried many commands they didn&apos;t work. In the correction box I will say &quot;cancel&quot; and nothing will happen. Same thing happens in many boxes. I have trained it 3 different times. Still no improvement, it happens in many other for commands in Dragon commands.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;I&apos;m so confused.&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon dictate 3 and medical vocabulary import</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15120</link> 
		<pubDate>Tue, 02 Oct 2012 19:08:20 EST</pubDate> 
		<dc:creator>dcneuro</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Is this forum compatible with an iPad? Lots of trouble trying to post this message. &amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;nbsp;&lt;span style=&quot;-webkit-tap-highlight-color: rgba(26, 26, 26, 0.292969); -webkit-composition-fill-color: rgba(175, 192, 227, 0.230469); -webkit-composition-frame-color: rgba(77, 128, 180, 0.230469);&quot;&gt;just purchased dragon dictate 3. I have every other product including DNS medical for windows and Mac speech medical. I tried to export my vocabulary from Mac speech and it crashed. As this new version seems to work better with my EMR, is there a way to export and import a vocabulary file from either DNS or Mac speech?&lt;/span&gt;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon Dictate vs Mac Speech</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15106</link> 
		<pubDate>Mon, 01 Oct 2012 13:07:06 EST</pubDate> 
		<dc:creator>Dr. S.</dc:creator>
   	    <slash:comments>12</slash:comments> 
		<description><![CDATA[ &lt;p&gt;What is the difference between DragonDictate and MacSpeech? I currently have Mac speech medical as well as Dragon naturally speaking medical for Windows, the latter of which I use in Windows XP on a virtual machine. I stopped using MacSpeech medical because it just doesn&apos;t work very good at all. Does DragonDictate 3 work any better or any different? &amp;nbsp;Mac Speech med is very diffferent from DNS products?&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>What&apos;s the deal w/ wideband bluetooth support in Dragon Dictate 3?</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15098</link> 
		<pubDate>Sat, 29 Sep 2012 14:23:51 EST</pubDate> 
		<dc:creator>veganjenny</dc:creator>
   	    <slash:comments>3</slash:comments> 
		<description><![CDATA[ &lt;p&gt;Nuance touts wideband bluetooth support in Dragon Dictate 3:&lt;/p&gt;
&lt;p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Enhanced Bluetooth Support&amp;nbsp;&lt;/strong&gt;&amp;ndash; Dragon Dictate for Mac 3 adds support for wideband Bluetooth wireless headset microphones, and you can get up and running quickly. When it detects that the USB dongle of a certified microphone is plugged into the Mac, Dragon Dictate offers &amp;ldquo;Enhanced Bluetooth&amp;rdquo; as an audio source type and does not require a script reading to get started.&amp;nbsp;&amp;nbsp;&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;
&lt;p&gt;What does this mean? That you don&apos;t need to go through training if you use &quot;Enhanced Bluetooth&quot;? Sounds kind of wrong ...&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, I&apos;m having trouble finding out a list of wideband bt mics. Anyone have any suggestions? Also, any feedback on how these compare to wired mics? I just don&apos;t see how the medium (wired v. unwired) can have an effect on whether to need training or not.&lt;/p&gt;
&lt;p&gt;FYI, I&apos;m currently using a Sennheiser ME 3 and having good results. But would be interested in seeing if there are wireless options that are equally good or better. Or, for that matter, wired options that are better.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon NaturallySpeaking version 12 hanging up</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=15019</link> 
		<pubDate>Wed, 19 Sep 2012 00:03:22 EST</pubDate> 
		<dc:creator>Windstarsc</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I received my Dragon NaturallySpeaking upgrade to version 12 yesterday (thank you for the quick shipment) but I&apos;m having a problem with it hiccuping and locking up from time to time. When the correction menu opens up in Firefox that that comes up; DLL.dedr. I&apos;m not sure if it&apos;s a coincidence or not but sometimes happens after having Microsoft Word open. Attached is a copy of the error message I received and I&apos;m at a loss when it comes to what to do and apologize. Some of the problems occurred while using Gmail, it seemed to lock up for some reason.&lt;br /&gt;&lt;br /&gt;Your KnowBrainer software that I&apos;ve downloaded, it&apos;s absolutely priceless and the more I use it, the more I love it and can imagine not having it!&lt;br /&gt;&lt;br /&gt;Thank you much, I appreciate your help.&lt;/p&gt;
&lt;div id=&quot;nuan_ria_plugin&quot;&gt;
]]></description>
	</item>

	<item>
		<title>When I start NaturallySpeaking, I get an error message that there is a wrong file in my system directory.</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=14929</link> 
		<pubDate>Fri, 07 Sep 2012 05:42:36 EST</pubDate> 
		<dc:creator>cjbob</dc:creator>
   	    <slash:comments>2</slash:comments> 
		<description><![CDATA[ &lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;
&lt;p&gt;Every time NaturallySpeaking starts, a box pops up with the following: The file C\Windows\system32\pdm.dll is version 6.0.0.8169.This version is known to not work well with NaturallySpeaking.&lt;/p&gt;
&lt;p&gt;Please refer to technote #4096 on the Nuance website or contact Nuance technicals for further information.&lt;/p&gt;
&lt;p&gt;This is a fresh install of NaturallySpeaking Professional Edition 11.5. I checked for updates but there are none available.&lt;/p&gt;
&lt;p&gt;If anyone can send me the right version of that file or news how to fix this, I would be most appreciative.&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Bob&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Being Prompt with alarm/sound when Microphone comes on</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=14894</link> 
		<pubDate>Sat, 01 Sep 2012 14:40:04 EST</pubDate> 
		<dc:creator>Windstarsc</dc:creator>
   	    <slash:comments>12</slash:comments> 
		<description><![CDATA[ &lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: #003300; font-size: small;&quot;&gt;I&apos;ve been having a problem with my microphone getting triggered on when someone is speaking in the background. Granted, I know that I could click on the green microphone icon but because of my disability, I wouldn&apos;t be able to turn it back on if I was lying in bed while using my computer. With that said, I was wondering if there&apos;s anyway to have a sound alarm me in my ear each time the microphone gets turned on? This might remedy the problem, since it&apos;s difficult to mute some of the guest I have. I&apos;ve been in touch with Nuance but they said they get in contact with somebody on a forum which led me in this direction.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style=&quot;color: #003300; font-size: medium; &quot;&gt;Thank you &amp;ndash; Bruce&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Dragon dictate for Apple computers</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=14474</link> 
		<pubDate>Wed, 13 Jun 2012 14:48:56 EST</pubDate> 
		<dc:creator>StGeorge</dc:creator>
   	    <slash:comments>5</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I have a priest that uses a Apple computer and was wondering if the Dragon Dictate, and, possibly Knowbrainer would work on his computer, together?&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>3rd Party assistance for DragonDictate?</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=14434</link> 
		<pubDate>Sat, 02 Jun 2012 20:41:09 EST</pubDate> 
		<dc:creator>Alan</dc:creator>
   	    <slash:comments>3</slash:comments> 
		<description><![CDATA[ &lt;p&gt;I use the PC version of DNS 11.5 Pro - even when using a Mac by using Paralles 7 and using the Windows side. I use both Knowbrainer and VoicePower and honestly don&apos;t want to give them up because they are so helpful. Does anyone know of&amp;nbsp;anything similar to Knowbrainer and/or VoicePower that works with DragonDictate?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best,&lt;/p&gt;
&lt;p&gt;Alan&lt;/p&gt;]]></description>
	</item>

	<item>
		<title>Speech recognition for the Macintosh</title>
		<link>http://www.knowbrainer.com/forums/forum/messageview.cfm?catid=8&amp;amp;threadid=14359</link> 
		<pubDate>Fri, 18 May 2012 14:08:18 EST</pubDate> 
		<dc:creator>Alan Cantor</dc:creator>
   	    <slash:comments>7</slash:comments> 
		<description><![CDATA[ &lt;p&gt;It&amp;#39;s hard to keep up with every development in speech recognition, so I would appreciate if somebody could recap the current state of affairs of speech recognition software for the Macintosh.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;The Mac user I will be working with is primarily interested in speech recognition for writing and editing academic articles. The NaturallySpeaking features that are most important include:&lt;/p&gt;&lt;ol&gt;&lt;li&gt;The ability to adapt the acoustic model to a nonstandard accent. (She speaks fluent English, but with an Israeli accent.)&lt;/li&gt;&lt;li&gt;The ability to import and export word/phrase lists.&lt;/li&gt;&lt;li&gt;The ability of the program to analyze a writing sample, and tweak the language model based on that analysis.&lt;/li&gt;&lt;li&gt;Insert after/before XYZ commands.&lt;/li&gt;&lt;li&gt;Select XYZ through XYZ commands.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;]]></description>
	</item>

</channel>
</rss>
