danzi Posted January 8, 2013 Posted January 8, 2013 Hi. I want to change the shortcuts for osnap on/off (default F3) and ortho on/off (default F8 ) to either F1 and F2, or some letter like q and w, or ctrl+w and ctrl+e. I cant find them under cui-->all commands. Don´t know if they are there somewhere. Is it possible to change them to either of the above shortcuts? I prefer F1 and F2 if it´s possible, then q and w and last if neither of the other two is possible ctrl+w and ctrl+e. Quote
ReMark Posted January 8, 2013 Posted January 8, 2013 F1 = Help F2 is your text window. Are you just going to ditch those two? Re: Ctrl+W and Ctrl+E. Wouldn't these entries be made in the CUI under Shortcut Keys? Quote
Dadgad Posted January 9, 2013 Posted January 9, 2013 (edited) Welcome to CADTutor. Per ReMark's post, the following image shows where you would change your shortcut key to toggle ORTHO on and off. Lynn Allen has a post, which I think she calls here most popular customization, regarding changing the F1 key to something other than HELP, here is that link It would seem to me that using Q & W would be more efficient than using the F keys, because they are closer to where my left hand is usually stationed. Edited January 9, 2013 by Dadgad Quote
danzi Posted January 9, 2013 Author Posted January 9, 2013 F1 = Help F2 is your text window. Are you just going to ditch those two? Re: Ctrl+W and Ctrl+E. Wouldn't these entries be made in the CUI under Shortcut Keys? Yes I know but I want to change place for them, i.e. default F1 to F3 and default F3 to F1, and default F2 to F8 and default F8 to F1. Thanks for the help Dadgad. I found where to change the shortcutkeys for default F3 and default F8. However I ran into some new problems. When I change them, as you can see in the picture, the F1 key still refers to help, not osnap, and the F2 key still refers to text window. I figure I must change the shortcutkey for help and text window, but I can´t found where it is. Anyone who knows were it is? Quote
Dadgad Posted January 9, 2013 Posted January 9, 2013 (edited) Yes I know but I want to change place for them, i.e. default F1 to F3 and default F3 to F1, and default F2 to F8 and default F8 to F1. Thanks for the help Dadgad. I found where to change the shortcutkeys for default F3 and default F8. However I ran into some new problems. When I change them, as you can see in the picture, the F1 key still refers to help, not osnap, and the F2 key still refers to text window. I figure I must change the shortcutkey for help and text window, but I can´t found where it is. Anyone who knows were it is? [ATTACH=CONFIG]39512[/ATTACH] Did you watch the Lynn Allen link which I posted? I believe it may help you, which is of course why I posted it. And it does deal specifically with customizing the F1 key. I just watched it again, strongly suggest you do too. Edited January 9, 2013 by Dadgad Quote
danzi Posted January 9, 2013 Author Posted January 9, 2013 Did you watch the Lynn Allen link which I posted?I believe it may help you, which is of course why I posted it. And it does deal specifically with customizing the F1 key. I just watched it again, strongly suggest you do too. Okej I see what I did wrong there. I was in the temporary override keys and changed the shortcut. I solved the Toggle ortho as Lynn Allen described it. Howerever when I want to change the Toggle object snap it is´nt located in the same place as Toggle ortho, see picture. Is´nt it suppose to be there? And if not where do I find it? Quote
Dadgad Posted January 10, 2013 Posted January 10, 2013 Okej I see what I did wrong there. I was in the temporary override keys and changed the shortcut. I solved the Toggle ortho as Lynn Allen described it. Howerever when I want to change the Toggle object snap it is´nt located in the same place as Toggle ortho, see picture. Is´nt it suppose to be there? And if not where do I find it?[ATTACH=CONFIG]39515[/ATTACH] Glad you got that sorted. I think the image will help you find what you are after. Quote
lest Posted February 24, 2013 Posted February 24, 2013 hi guys, i am trying to do the same but once i am in the CUI i cannot find the "keyboard shortcuts" option...i have the auto cad 2013 so the window is completely different. thank you Quote
BIGAL Posted February 25, 2013 Posted February 25, 2013 A quick and dirty put in autoload (defun c:zz () (setvar "snapmode" 0) ; off ) (defun c:aa () (setvar "snapmode" 1) ) Quote
lest Posted March 1, 2013 Posted March 1, 2013 Thanks BIGAL, but i am not good friends with computers and i don't fully understand where i have to copy this...i tried it in the command bar and i assume that the snap option goes off and on, right? is that all? because it would be perfect to find the location where i can change the keyboard shortcuts. thanks again! Quote
ReMark Posted March 1, 2013 Posted March 1, 2013 BIGAL has posted a small lisp routine. Lisp is a programming language used in AutoCAD. I've taken the liberty of creating a file for you (see below). Download it to your Desktop. Rename the file to SNAPMO.lsp by removing the .TXT at the end of the file name. Come back when you're finished and I'll give you the next step. Go. Do. Return. Now. SnapMo.lsp.txt Quote
ReMark Posted March 1, 2013 Posted March 1, 2013 Start AutoCAD. Type the command APPLOAD at the command prompt. Browse to the location of the file and load it. Once loaded type the letters "zz" (no quotes) at the command line then press the Enter key to invoke the command. The second command in the lisp routine is invoked by typing "aa" (again, no quotes). Quote
lest Posted March 1, 2013 Posted March 1, 2013 i can load the file but when i type zz + enter nothing happens... Quote
ReMark Posted March 1, 2013 Posted March 1, 2013 "zz" should reset the SNAPMODE variable to "0". Did you check? I have not tested the routine. Quote
ReMark Posted March 1, 2013 Posted March 1, 2013 Well I doubt that BIGAL would post a routine that was untested. When I have a minute I'll test it myself since I am using AutoCAD 2013 as well. Quote
ReMark Posted March 1, 2013 Posted March 1, 2013 Test completed successfully. Here is the proof... Command: Command: ZZ 0 Command: Command: AA 1 Did you fail to remove the .TXT at the end of the file? Quote
lest Posted March 1, 2013 Posted March 1, 2013 yes sorry my fault! it works also for me as well, but i didn't see it because i was expecting the "object snap" to go off and on, not the "snap mode" ... :s Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.