colore Posted October 27, 2006 Posted October 27, 2006 hello I would like to check the text I type in every application (text editor, web browser, etc) I want to check the spelling and correct it on-the-fly, or the program to suggest me about possible corrections I want to use my own custom dictionary I want it to work with Greek and English language at the same time (2 or more dictionaries loaded) but ofcourse, not to do the double time or use the double system resources to check some text (it should recognize the language each time and use the relevant dictionary) I want it to autocorrect specific text (replace it on-the-fly) with some other text I specify, and I must be able to specify this text using wildcard/regex (althouth many programs have autocorrect features, no one supports wildcards/regex and thus they are very limited) I want to type something and the program to autocomplete the words I beging to type (autocomplete by the most frequently used words in a document) like OpenOffice does does this software meet the above requirements? thanks
Moderators SmOke_N Posted October 27, 2006 Moderators Posted October 27, 2006 (edited) does this software meet the above requirements?Not really a question of whether AutoIt can do it or not, it's more a question of do you have the ability to do such a thing without assistance. This is one are we don't help much on regardless of the "good/bad" intentions. Edited October 27, 2006 by SmOke_N Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Thatsgreat2345 Posted October 27, 2006 Posted October 27, 2006 wow seriously dude this is not a request forum its a help forum, maybe if you showed some innitiative it would be nice but coming in on 2 posts and asking for this im sorry isnt going to happen , start out simple and work your way up check out valuaters 1-2-3 in the scripts and scraps its a good starting place
colore Posted October 27, 2006 Author Posted October 27, 2006 what are you talking about? did I "request" anything? I asked if this program can do the above
Fossil Rock Posted October 27, 2006 Posted October 27, 2006 AutoIT can do pretty much anything you can do on a Windows based system. So if you can accomplish this by manual means then yes AutoIT can do it. The biggest question is can you do it manually ? Agreement is not necessary - thinking for one's self is!
colore Posted October 27, 2006 Author Posted October 27, 2006 AutoIT can do pretty much anything you can do on a Windows based system. So if you can accomplish this by manual means then yes AutoIT can do it. The biggest question is can you do it manually ?what you mean by that? autoit can do anything and... where is the problem one cannot do anything?
Paulie Posted October 27, 2006 Posted October 27, 2006 what you mean by that? autoit can do anything and... where is the problem one cannot do anything?Well, Autoit's major restriction is the user.Yes, what you desire is possible, but it is far from simple by any means.If it is help in creating this you seek, you must provide us with something to work with that you have created/found.Otherwise, the answer to your question is yes. But the help you will get here in doing it is limited.
NELyon Posted October 28, 2006 Posted October 28, 2006 well, for the spell check on-the-fly, try looking at StringReplace and While loops.
Paulie Posted October 28, 2006 Posted October 28, 2006 well, for the spell check on-the-fly, try looking at StringReplace and While loops.Agghhh...That sounds like either a whole hell of a lot of 'If' statements or one DAMN LONG 'Case' or 'Switch'
Paulie Posted October 28, 2006 Posted October 28, 2006 But nonetheless, it would work Yes. It would work. If you were masochistic... Unfortunately, a code like that would be too complex for me to suggest anything else
HackerZer0 Posted October 28, 2006 Posted October 28, 2006 (edited) it wouldn't be as complex as some scripts in this forum, but it would be very long, and drawn out, whenever i have to personally type something repetitive for a script that is more than about 50 lines i make another script with a loop to do it for me...i do not have the patience for somthing that big, sounds like your trying to do something pointless, when (i am not sure) but you could probably google it... EDIT: and think about how complex it would have to be to incorporate baskspaces... ie: i type "whi" and it interprets the word as "while", i decide i dont want that word so i backspace until i am at "wh" you must make the script know there is a "wh" still there so that if i type "whe" it is interpreted as "when" and not somthing like "whenergy" or "whentity" thinking that the "wh" no longer exists...and fills in "energy" or "entity"... hope that made sense...i'm really tired right now... Edited October 28, 2006 by HackerZer0 Earn money on CASHCRATE by sitting around doing nothing..
Rad Posted October 28, 2006 Posted October 28, 2006 (edited) Well one way to do is make another program that creates the code for you... Example, have an input box for the word, and an edit box for all the different typos Like: Input: lol Edit: kik ;p; ol lo Then you could have it create the code in a child window edit box, which essentially would be an If/Then/Else checking if a typo was entered, and replacing it with the input word Still, it would be far far far more easier to just use backspace! And to prevent the thing mentioned above, dont replace anything until you press space Example: " lo " replace: " lol " " lo" dont replace... simple Edited October 28, 2006 by Rad
HackerZer0 Posted October 28, 2006 Posted October 28, 2006 Still, it would be far far far more easier to just use backspace!agreed... i predict this going nowhere...of you have the time and energy to incorporate dictionaries into a script,you most likey use the computer so much you either no longer care about typos, or you notice and correct them as i am now without even glancing at the screen...i think most of us here have very good finger dexterity... Earn money on CASHCRATE by sitting around doing nothing..
Thatsgreat2345 Posted October 28, 2006 Posted October 28, 2006 what would be needed is seperate files of your dictionary , this would then get each letter pressed and quickly parse the files setting an array with the possible choices if space is pressed and the word did not match any of the words in the dictionary an error message would pop up, create a GUI and then list the possiblilities , i do think i remember a smart searcher in the scripts and scraps that updates the possibilities by what you've typed like the Scite command check idk if autoit is fast enough to say the least, i doubt its going to be able to go through every word in a dictionary that fast maybe if you only picked out the words you spell wrong most and or get Firefox auto spell check
Confuzzled Posted October 28, 2006 Posted October 28, 2006 You mean kinda like my cell phone (all 350Mhz and 128K of memory) does when composing a SMS message?
colore Posted October 28, 2006 Author Posted October 28, 2006 You mean kinda like my cell phone (all 350Mhz and 128K of memory) does when composing a SMS message?yes
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now