In the box where you would normally put your expansion text. n/m
Posted By: aero860 on 2008-05-12
In Reply to: Where do you put the code? - MT mom of 3
.
Complete Discussion Below: marks the location of current message within thread
The messages you are viewing
are archived/old. To view latest messages and participate in discussions, select
the boards given in left menu
Other related messages found in our database
Not for what it does besides just text expansion.
xx
text expansion?
I was wondering if anyone can recommend a good text Expander program. I have never used one before, and there are so many out there, I am just looking for some advice as to what might be a good one, easy to use, for a person who has no experience with text expansion. Any advice would be much appreciated. Thanks!
It's only when I use an expansion
at the beginning of the sentence that I can't get it to automatically capitalize the first letter. I have the auto-cap option checked and it works for regular typing. I have been planning on getting Instant Text forever now and just keep putting it off. Probably going to do it soon because this is driving me crazy. Thanks.
expansion, expansion, expansion
Use your expansion tools. I have just about every acronym under the sun set up into my expansions. It really helps.
Expansion help
I have a great primary account, make usually more than 2000 lines a day, and I have several of the same docs who say the same things repeatedly, so I have their "normal" ROS or PE set up as an expansion. I make sure to proof those really well for changes. And I have any phrase that is three words long as an expansion. Like ctax for clear to auscultation, rrrx for regular rate and rhythm, etc. And if a word is long, like hepatosplenomegaly, I make an expansion for it with hsmx. You just need to play around and see what you come up with...
word expansion
By MS Word expander, I guess you mean the one built into Word. In addition to this, I make my own "normals" and just copy and paste them into a Word document to retrieve when I need them.
I don't use DocQscribe nor do I know what the expansion
formula looks like, but if you can open it up in Notepad and manipulate the formula to look like this, tp=the patient, then you can import them into EXText. I don't have my EXText in front of me so this is from rough memory. Once you have your expansions in the above formula, save them in Notepad on your desktop. In EXtext click on Options, Import file from Text(?), in the drop down box click on Desktop, click on your saved list, put an = sign in the delimiter box, click on Ok or import or whatever the next step is (lol...told you it was from rough memory). Once these are imported you'll need to save your ESP list. It is really simple to import once you have your expansions in the right formula. I'll check back here in a little bit and answer any questions I can. I'll be working tonight and may be able to give better step-by-step instructions once I have the actual program up and running.
CW
I go to alt-E and bring up the expansion menu sm
then I add a new header in there. That way, the new header created will be saved and usable in future reports. Maybe there is a better way - I do not claim to be a DQS genius, but this does work for me
Word Expansion Programs
I am trying to get a general idea of the best/worst Word Expansion programs available. What do you use and how does it compare to others? I know of Shorthand, PRD+, MedBrain, and good ol' Auto Correct. Please give me your opinions. Thank you very much ~
Normals in Expansion File
Just be aware that your company may have set a size limit for individual expansions to prevent transcriptionists from making "normals" that are not really normal, that is, not always exactly what the doctor says.
Why not add them to your expansion software with different endings? Like
s
Should expand when using the period after an expansion - sm
Shorthand should expand when you use the period after an expansion. For example... I have "tpi" as "the patient is" -- and if I type "tpi." I will get the patient is. (including the period)
Newbie expansion software help
Yikes! I need expansion software help. Can someone tell me how Instant Text works? Do I need to enter words into the program to in order to use it? I have downloaded a free trial of ShortHand for Windows, but it doesn't come with very many words. How does a newbie MT use expansion software if it doesn't have any words in the glossary?
Sorry, I know this is very basic. Unfortunately my MT program has not covered this, and I'm not trying to figure it out!
Thanks in advance!
Just wondering which expansion program you use? *nm*
*nm*
For those who use Shortcut expansion program...
I have been a ShortHand user for the past 2 years and prior to that Smartype. I need to try ShortCut to see if I can get it to work in CS.net (Chartscript) since my Shorthand does not. But before I download the trial version, I wanted to find out: Does it also offer a "suggestion window" like Shorthand...like a preview window to see that the expansions are as you type? I relied on that with Shorthand (and Smartype) and hate to give that feature up. (I can't afford Instant Text)
Word Expansion Suggestion
I was wondering what is the best to different in expansions between laparoscopy, laparoscope, laparoscopic, arthroscope, arthroscopy, arthroscopic. Does anyone has any suggestions? I use the Expander in Word. Thanks so much!
Better yet, if it's REALLY good, make an expansion for it. sm
Especially with op notes ... once you get a feel for a dictator's normal patter, whether that be an operative procedure, ROS, PE section, closing, or whatever, make a shortcut/expansion for it ...
I do the same thing for letter addresses, since the same addressees seem to keep popping up over and over (i.e., docsmitha would bring up all of the Smiths I have saved with a first name starting with an A) -- saves a lot of time in the long run.
Wow, getting far afield from the original question here; I must need that first cup of coffee.
ctrl+space will prevent expansion.
A bunch, can't really guess. But don't use something just for expansion. You need it to preven
s
I use an expansion that puts the numbers and stop
x
I find Ctrl/X stops the expansion. nm
s
Google xyz method of expansion use. Easy
x
I've just started using SH, where do I set expansion with normal punc...nm
x
Pros & Cons of ESP word expansion program?
Does this work pretty well? (I have Word 2002) I'd like not to have to buy any software. Any opinions on ESP? Any other Word-compatible programs that work well, also?
Get a decent word expansion program like PRD or Shorthand sm
autocorrect is very limited. If you want to make money, your really need a good expander.
go into expansion and delete "phantom space" by backspacing....
nm
I had all those dang ages in my auto correct before. The whole 90-year-old expansion. nm
x
If you don't have an expansion program, you can put stuff in Word in your AutoCorrect/AutoText un
s
macro to import expansion list into MSWord Autocorrect
Here is my macro that will import your expansions into MSWord. Your list needs to be in the following format for this macro to work:
tp=the patient
copd=COPD
chf=CHF
There needs to be a hard return at the end of each entry. If you have any expansions that contain an equal sign or a hard return, you will need to enter those into your autocorrect manually. Here is the macro:
Sub Add2AutoCorrectList() Dim AddName, AddValue As String Dim W, C, A, L, Y, T, N As Long Dim CountWords As Boolean Selection.WholeStory: Selection.Collapse N = ActiveDocument.Words.Count: C = 0: A = 0: T = 0 ScreenUpdating = False While N > 0 x = Selection.MoveEndUntil(cset:=("=), Count:=wdForward) If x = 0 Then End End If Selection.MoveEndUntil cset:=("=), Count:=wdForward AddName = Trim(Selection.Text) L = Selection.Words.Count With Selection .Delete: .Delete .MoveEndUntil cset:=Chr$(13), Count:=wdForward End With AddValue = Trim(Selection.Text) Y = Selection.Words.Count AutoCorrect.Entries.Add (AddName), Value:=(AddValue) Selection.Delete , Count:=2 T = L + 2 N = N - T C = C + 1 A = A + 1 If N < 1000 Then ScreenUpdating = True N = ActiveDocument.Words.Count End If
If A = 100 Then Application.ScreenRefresh 'ScreenUpdating = True StatusBar = N & " " & C & " " & " entries processed!" A = 0 End If Wend
End Sub
One word of warning: When I posted a line counting macro here some time ago, I could not get a quote mark in the code to post, so the macro as posted would not work, and I had to followup with a post explaining how to correct that. This macro is a bit more complicated than the other one was, and although I will look at the code as soon as this posts, if it doesn't come through perfectly, and you don't understand my corrections, you can e-mail and I will send it to you.
Also, I wrote a companion macro that will list your autocorrect into a document so that you can import it into another computer or just keep it as a backup in case you lose your normal.dot.
structured text from free text...
eventually just templates filled in. being that I am near 50, I will probably be okay, but I feel bad for all the younger MTs just now in school. according to this article, we will all have to be willing to learn the new ways.
no more 'blind faith'
DQS pay for text
Once again, it seems that you could ask all 10,000 strong we are supposed to be and probably get 10,000 different answers to what MQ pays/does not pay for, BECAUSE, there just is no consistency across the board and different management give different answers to all of these questions.
Just like the DQS manual, there SHOULD be a one for all/all for one manual with rules, etc set in stone..just not the multiple language instructions like we see in any manual these days....enough of that going through my brain right now
Have you ever had most of the text in - sm
one of your My Documents files in your PC just plain VANISH? I had a spelling reference file I'd built over many months just plain disappear, except for just a couple of lines. It's so WEIRD! I've done a search of the hard drive, checked the Recycle Bin, etc. But it's nowhere to be found. I hadn't backed it up because it was still a relatively new file for me, and there was more I wanted to add to it first.
So my question is this: Is there a way to retrieve or restore an apparently "lost" file?
Instant Text V Pro
If you would like to learn more about Instant Text, please see the link below for a brief overview.
auto text, auto text auto text - I also have ...
a couple of doctor accounts that pay me "off the books" and it's less than $800/month so that helps out a great deal.
I autotext every report until I build each doctor up to a "normal" text format. if you want more info - email me at dcr468@aol.com. I am always hesitant about writing the name of companies on this board because of the serious bashing that goes on.
INSTANT TEXT PRO
BUY THIS - WORTH EVERY CENT YOU PAY FOR IT AND MORE. YOU CAN CUSTOMIZE ALL YOUR ACCOUNTS EASILY (YOU JUST PLUG IN THE VALUES FOR THAT ACCOUNT)AND DOUBLE CHECK WORK THAT YOU DO NOT PERSONALLY BILL FOR AND WORK THAT YOU DO BILL FOR CAN BE EASILY KEPT TRACK OF ALLOWING YOU TO ONLY SPEND 5 MINUTES A MONTH OR SO TO GENERATE A REPORT FOR YOUR CLIENT. AFTER YOU SET THEM UP ONCE THEY ARE THERE AND YOU JUST RIGHT CLICK A BAR INSIDE A DOCUMENT TO GET A REPORT ON THAT DOCUMENT. NEAT! IT IS ALSO AN EXPANDER PROGRAM AND ALLOWS YOU TO IMPORT YOUR WORD LISTS FROM MOST OTHER EXPANDER PROGRAMS. THEY HAVE A WEBSITE (GOOGLE FOR INSTANT TEXT ON THE WEB).
Instant Text V Pro
IT V Pro is an expander program that works with almost all word-based programs running on any Windows platform.
You can import abbreviation files from other programs (such as AutoCorrect) and it also comes with 55 built-in glossaries to help get you started.
For more information on IT V Pro, please see the link below.
Do you mean Instant Text?
x
Where did you get Instant Text?
Like Best Buy or somewhere like that?
Instant Text ?
All you have to do is add VENTILATION PERFUSION SCAN to the glossary. Type it in your document the way you want all caps with a colon or not, etc. and highlight it and press Alt and the +/= sign at the same time to add it to the glossary and then the next time you want it type vps but look at the list and pick the one you want all caps or lower case. You can always delete the lower case version if you do not need it. Let me know if you need more info. Good Luck
Instant Text V Pro
I can give you some info on Instant Text V Pro if you'd like.
The most popular features of IT V Pro include the Importer, the Compilation feature, the Includes feature and Continuations.
The Importer takes abbreviation lists from other sources, such as AutoCorrect, and imports them into IT so you can continue using them without having to start creating a new list from scratch.
The Compilation feature is used to create personalized glossaries by scanning saved documents on your computer and pulling out the most frequently used phrases and words to instantly compile a customized glossary in seconds.
The Includes feature allows you to use more than one glossary at a time.
And the Continuations feature is a feature that brings up what you are likely to type next in your sentence. So for example, if you were to type "The patient", IT will then suggest what you are likely to type next based on what you've typed in the past.
For more information on IT, please see the link below for a short product presentation. |