Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. naujoke

    xline command

    Hi all, ^C^C_xline;h;\;^C^_xline;v;@0,0;; this worked to me. Regards.
  2. naujoke

    How to draw a involute line under Acad 2000

    There a simple example of drawing circle involute via LISP: (defun c:involute(/ plist fi old_osnap cent rad xp yp eang) (setq plist (list "pline" 'command) fi 0.0 old_osnap (getvar "osmode") cent (getpoint "\nSpecify center of invotute: ") rad (getdist cent "Specify circle radius of...
  3. naujoke

    Suppress dimension extension lines

    ;;; Before executing this routine create two dimension styles that control DIMSE1 (2) or other DIM variables. ;;; "Left_Style_Name" and "Right_Style_Name" are the dimension style names. They have to be named with the same name as in Dimension Style Manager table. (defun...
  4. naujoke

    Suppress dimension extension lines

    Hello Hayden, Not the best way, but there its possible to change selected only dimensions in properties dialog box. Regards
  5. naujoke

    Lisp help

    Two questions: 1) Are this file succesfuly loaded? Check it in Tools->Application "Loaded Application" box. 2) Is there a string in "message.lsp": (defun c:message())? If yes, changed string (command "message") to (c:message) in your script should work properly...
  6. naujoke

    More LISP info please

    Try this: (C:message) Regards
  7. naujoke

    More LISP info please

    Hello, I think at first this computer on a network needed to be mapped as disc for example F: on your computer. Then write in Lisp as usual: "F:\\ARCHITECTS\\ACAD2002\\LISP\\LISPFILE.LSP" Regards
  8. naujoke

    Convert .stb to .ctb in Autocad 2002

    Usualy plot style tables are saved in your computer. So if you've got a drawing with named plot style Autocad will use the same name plot style from your computer. Drawing saves just current plot style file name. Regards
  9. naujoke

    Convert .stb to .ctb in Autocad 2002

    Hi Adrian2, Try this: Tools -> Options -> Plotting and check 'Use color dependent plot styles' radio button in a gotten drawing. Then you should able to select *.ctb plot styles. Hope helped.
  10. naujoke

    2000i 3D Hide Problem

    I suppose it is AutoCAD 2000 bug. I've seen plotted drawings of furniture from viewpoint. There polyline was as limits of the room and unhided too. The cupboards were made in 3D solids and inserted as blocks. And this phenomenon appeared only on AutoCAD 2000.
  11. naujoke

    Drawing a mesh?

    To draw kayak in Polygon Mesh use RULESURF (Draw -> Surfaces -> Ruled Surfaces) and select two defining curves. Hopefully
  12. naujoke

    Lisp help

    Hello Welshman, I think here is your problem: (if (= (getvar "loginname") "DAVID") (alert "HELLO DAVID") )
  13. naujoke

    Xerox 8830 plot margin problems

    Did you tried plotter calibration: File -> Page Setup -> Plot Device -> Device and Document Settings? Also: File -> Page Setup -> Layout Settings -> Plot Ofset by X and Y should help to you.
  14. naujoke

    2000i 3D Hide Problem

    Tools -> Display Order ->... But I'm not sure will it work on that case.
  15. naujoke

    macro button help for menuloading

    Why not load menu file as usualy? Its enough to make once. AutoCAD will keep menu settings for next session.
  16. naujoke

    2000i 3D Hide Problem

    I'm not sure did I understand your problem, but try this. If you plot from model tab, check box "Hide objects" in plot dialog box , or if you are plotting from layout, select viewport you want to plot hidden and in object properties box (Modify -> Properties) switch "Hide...
  17. naujoke

    Print Outs in Shade Mode

    AutoCAD does not support that option. There is one way: press Alt+PrintScrn, pasteclip to any graphical application as bitmap then edit and print.
  18. naujoke

    Moments of inertia in autocad

    To get rigth answer it is needed use Mass Properties twice: first find position of centroid and after the moved origin UCS (Command: UCS O ) to that position you will find products of inertia and moments in that point. AutoCAD for Mass Properties uses AutoCAD units i.e. milimeters.
  19. naujoke

    Lisp Routine

    It's might better to write: (setvar "textsize" txth1) (command ".text" pt1 0 n2)
  20. naujoke

    Radius dimension arrow flipping

    Hello Hayden, I think it should help if you set DIMCEN > 0 (center marks are drawn).
Back
Top