CarlB Posted August 22, 2006 Posted August 22, 2006 Depends how you're using it in the code. If a "command" function, duplicating an AutoCAD command, an enter is a double quote. For exaple to draw a line from 0,0 to 2,2 the code is: (command "line" '0,0" "2,2" "") Quote
tzframpton Posted August 22, 2006 Author Posted August 22, 2006 sweet, thanks. i'm doing a little bit of customizing today.... :-) Quote
Ferdinand Posted November 2, 2006 Posted November 2, 2006 I don`t know so somebody to use lisp routine DeleteFilters.lsp. This utility require validate in the end: Command: DeleteFilters Name filters to keep (e.g. 'A*,B*') deletes all: If I need to use/call DeleteFilters command into another lisp, how I do fetch there this Enter? Quote
Ferdinand Posted November 3, 2006 Posted November 3, 2006 I have it already... It`s necessary to use text string SPACEBAR with character "spacebar" (i.e. "SPACEBAR ") Quote
elizabeth Posted November 3, 2006 Posted November 3, 2006 figure it out for your self you lazy basterd please some one ban stykface, she keeps insulting me by sending me bad pm's ;-( enen tho stykface is a gut, i think hes a woman, cause of his lame pm's he keeps sending me Quote
iain9876 Posted November 3, 2006 Posted November 3, 2006 figure it out for your self you lazy basterdplease some one ban stykface, she keeps insulting me by sending me bad pm's ;-( enen tho stykface is a gut, i think hes a woman, cause of his lame pm's he keeps sending me Your such a child.... people have helped you so much already on this forum. Quote
elizabeth Posted November 3, 2006 Posted November 3, 2006 i havent recieved no help from here, if i do ask some one for help, stykface sends me insulting pm's...and your saying i have recieved help...look at the my posts, nothing has helped...im still struggling on the same problem. Quote
tzframpton Posted November 3, 2006 Author Posted November 3, 2006 i havent recieved no help from here, if i do ask some one for help, stykface sends me insulting pm's...and your saying i have recieved help...look at the my posts, nothing has helped...im still struggling on the same problem. i "responded" twice in PMs, i didn't "send" pm's to you. the 1st PM i told you i don't know lisp. the second PM was very simple, i said "No." after you asked for more help, AFTER i told you i can't. and i outnumber my own questions 20 to 1 compared to me giving help on here. i have made tutorials, answered questions, and given my thoughts and advice, and i am on here every day during the week. my questions and help are for my job, your questions are simply you wanting a free ride so you can get a grade in school. i think i've cleared that up, and most regulars on here know me well enough to trust my words. have a nice day Rebecca..... Quote
iain9876 Posted November 3, 2006 Posted November 3, 2006 i "responded" twice in PMs, i didn't "send" pm's to you. the 1st PM i told you i don't know lisp. the second PM was very simple, i said "No." after you asked for more help, AFTER i told you i can't. and i outnumber my own questions 20 to 1 compared to me giving help on here. i have made tutorials, answered questions, and given my thoughts and advice, and i am on here every day during the week. my questions and help are for my job, your questions are simply you wanting a free ride so you can get a grade in school. i think i've cleared that up, and most regulars on here know me well enough to trust my words. have a nice day Rebecca..... Don't bite styke...its her loss!. Quote
Guest Alan Cullen Posted November 5, 2006 Posted November 5, 2006 ooooohhhhh Styk....is she getting under your skin......because you are definitely getting under hers.... I wouldn't bother trying to justify what you have been doing regarding Elizabeth and/or Rebbeca...everyone here would be on your side at the drop of a hat...:wink: I really am stunned at her posts here...her attitude and demands suck... ..and that a beginner/student can think that anyone on this forum would give her precedence over you is ludicrous... To Elizabeth & Rebbeca......I was prepared to help you and support you.....but no longer. Quote
tzframpton Posted November 6, 2006 Author Posted November 6, 2006 hahaha yeah, i'm that way tho. i have to say something, at least once. lol Quote
drwhite Posted August 29, 2014 Posted August 29, 2014 OK, question. When I enter the following: (command "insert" "block" pause "" "" "") at the command line, the block is placed where I want it with the pause, and then accepts the defaults for inserting a block, scale x, scale y, and rotation 0. But when I put the same thing for a custom command with the CUI command editor, Autocad does not accept the "" "" "" for the defaults and asks you for each one. x, y, and rotation. WHY is there a difference between the routine at the command line versus the same thing defined as custom command in the CUI? Quote
Snownut Posted August 29, 2014 Posted August 29, 2014 You would be better off putting in the "0" instead of just the enter "" symbol. Quote
drwhite Posted August 29, 2014 Posted August 29, 2014 You would be better off putting in the "0" instead of just the enter "" symbol. :cry:That didn't work either. I even tried it without any parentheses. It only works at the COMMAND line, using "" or ; for enter commands. Anyone have any suggestions. Quote
BIGAL Posted August 30, 2014 Posted August 30, 2014 There is a difference between -insert & insert the insert command can have presets ticked on in the background bit like text can have different number of inputs required. Try "-insert", have a look at command line just type -insert. Quote
drwhite Posted August 30, 2014 Posted August 30, 2014 Well I just read that the - before a command means it will be a non-dialog version of a command. So command like style will not have a dialog box pop up, but will just be prompted entries on the command line to run the command. BigAl, I was just having a problem with the insert command. I have some blocks I like to use, and I want the insert command to act as a single click command where I can pick where the block is to go, and the rest of the insert command is just the defaults. Like (command "insert" "block" pause "" "" "0") would allow me to put the block where I want it, and the default scales would be accepted by the "", and the "0" would set the rotation to zero. The syntax above works at the command line, but not from a macro created in the cui. If I create a custom command in the cui, and enter the above syntax, I still have to press enter for each part of the insert command for the default. Just wondered why it is different in the cui. 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.