Jump to content

All Activity

This stream auto-updates

  1. Yesterday
  2. @JerryFiedler look at fanzy zone that is also part of powertoys. its the whole reason i got it when it first came out.
  3. JerryFiedler

    Notepad always on top of CAD

    @BIGAL This may not be what the OP was looking for but this is an extremely useful tool. Thanks for posting the link. I keep my CAD window "full" size from start to finish. I simply do not change it since doing so messes with the ribbon, toolbars, etc. I often want another "clip" of a spreadsheet or notepad text (lisp program or some other list) visible while actually working in the CAD window. This tool does exactly that. Thanks again Alan for posting the link.
  4. Steven P

    Hybrid parallel

    My one should find the centre between the shortest lines from polylines point to the other... not perpendicular so should give a reasonably curve.
  5. PGia

    Hybrid parallel

    And, VERY IMPORTANTLY, it should return the same result regardless of which reference polyline is processed first. In my opinion, this is the first requirement for the method to be consistent.
  6. CosmoIV

    Stop text appearing massive...

    15 years later I am annoyed by this effect too and This is one of the first links that shows up when searching for a solution. The system variable is MTextFixed. Changing it from 2 to 1 disables it.
  7. PGia

    Hybrid parallel

    Thank you @Steven P The problem with creating the centerline using perpendiculars is that even in straight sections, the centerline is not equidistant perpendicularly from the reference polylines (unless the reference polylines are parallel). This is the method I used manually, but I didn't achieve this goal.
  8. PGia

    Applications on top

    Thanks @Steven P I guess you're right. Anyway, I'll try to keep this thread going a little longer to give others time to make their suggestions.
  9. Steven P

    cannot print to pdf

    We used to have a 3rd party PDF printer - it also worked with all the office applications for example. Worked just the same as adding any other physical printer, might be a solution. However I thought LT had a PDF plotter as a part of the package
  10. I think you didn't understand the point of this thread because you're not familiar with the original post.
  11. SLW210

    cannot print to pdf

    I looked at the Autodesk site and as far as I know only AutoCAD for MAC (LT) 2026 is compatible with Tahoe which was just released September 2025. Can you print to an image file, that may work, or just see if Fedex/Kinkos can print the drawing file.
  12. ScottMC

    Notepad always on top of CAD

    Notepad++ is my preference which has lisp with customizable colors, words looks like vlide but without its diagnostics.
  13. ScottMC

    Unwritten revealing

    Oops again. Didn't know '@' is the same - my bad. Still the offset of it amazes me.
  14. ScottMC

    Unwritten revealing

    BTW this is also included without a command initialize, just wish I new what/how to access that as with (getvar 'lastpoint)
  15. Is it for Windows 11?
  16. Last week
  17. Never before knew AutoCAD saved this info.. Please test as I'm still A2K.. Key "0" to get last point picked when asked by command where to start.. which also includes: *ANY.point.on.screen. Any other number [understood as 'from'] changes this location as offset.from that <dist+angle> toward the current mouse position. Another is to click on a live vertex, hit esc, now that point is the saved/usable coord as mentioned. Similar to the second point of command which is used as 'dist.from.lastpoint' toward mouse as you press 'enter'. ... Still learning so I'll contact here. This is certainly useful once you add it to your mental tools.of.trade. * ANY.point.on.screen also includes non.entity,bare loc.
  18. Steven P

    Notepad always on top of CAD

    Admin: It is this post
  19. I lost the post but found the answer, the question was how to keep a notepad window always on top of the CAD window. I did a google and found a Microsoft product. Admin please move if find other post. https://learn.microsoft.com/en-us/windows/powertoys/always-on-top You need to download and install then restart but works, tried with Bricscad.
  20. Need a Plan dwg showing the line work etc this will give some clues about the extra points that you want highlite those points in the Plan dwg, to really get an proper answer need a full CIV3D dwg not just a output setcion so a CIV3D user can run the make long and cross sesctions.
  21. "so that it works for "Y" direction movements as well." I did think about what happens if the objects are drawn on an angle, There may be a way by using work out the new points using a 90 angle off the existing points. Suddenly busy so not sure when will have time to do something.
  22. lge

    cannot print to pdf

    I need to print a PDF so I can take the file to be printed at Fedex/Kinkos. I have AutoCAD LT 2021 for Mac. Computer recently upgraded to Tahoe OS. In trying to fix this I found that I seem to have two versions of the app: AutoCAD LT 2021 and AutoCAD LT 2021F. The 2021F, I think I understand, is the new version created by the upgrade to Tahoe. In the Plot window, the Print drop-down does not have the option for printing to PDF. There are only physical printers listed. The Save to PDF button at the bottom creates an Acrobat error and will not print. Export to PDF does not work. In addition, the Plot Style is set to Print As Displayed. I am not using .ctb because I can’t get one loaded at this point. The drop-down options for Plot Style are New, Import, Reveal in Finder. These are not working. (I want them to work eventually, but I have to get the PDF printed as soon as possible.) So setting the Plot Style to other than Print As Displayed can wait for now. I’m thinking this is a file path issue, but I have no idea how fix it. But maybe that's wrong. Thank you for any help.
  23. Use OVERKILL to remove the overlaps.
  24. Steven P

    Hybrid parallel

    Dinner time but been playing with this for interest. Will leave this here to pick up next time.... This looks at both polylines and draws a point at the mid point between every point and the closest point on the other for each. Not quite there with it yet though, but might give an idea for later. The point list used for drawing the points isn't in order so drawing a line sometimes gives odd results - need to have a think how to set the order of these to draw the lines. Left this drawing the shortest distances between polyline points and lines just for my checking. One last thing for next time is to fix any arc segments.. but getting there. (defun c:PolyMD ( / acount MyPoly1 MypolyEnt1 MyPolyVert1 MyPoly2 MypolyEnt2 MyPolyVert2 pt pt1 pt2 Ptist1 PtList2 LinePt) (defun mAssoc ( key lst / result ) (foreach x lst (if (= key (car x)) (setq result (cons (cdr x) result)) ) ) (reverse result) ) ; end Massoc (defun midpt (p1 p2) (polar p1 (angle p1 p2) (/ (distance p1 p2) 2.) ) ) (defun LM:Unique ( l ) (if l (cons (car l) (LM:Unique (vl-remove (car l) (cdr l))))) ) (defun CtrCoo ( a / findctr a apt) ;;https://www.cadtutor.net/forum/topic/66091-centre-of-hatch/ (defun findctr (en / pt) (command "_.Zoom" "_Object" en "") (setq pt (getvar 'viewctr)) (command "_.Zoom" "_Previous") pt ) (setq ;;a (car (entsel "Select Rectangle: : ")) apt (findctr a) ) ) (defun MakePoint ( pt / ) (entmakex (list '(0 . "POINT") '(100 . "AcDbEntity") '(100 . "AcDbPoint") (cons 10 pt) )) ) (defun MakeLine (pt1 pt2 / ) (entmakex (list '(0 . "LINE") '(100 . "AcDbEntity") '(100 . "AcDbLine") (cons 10 pt1) (cons 11 pt2) )) ) ;; Create extract arcs from polyline defun for curves (setq MyPoly1 (car (entsel "\nSelect Polyline 1: "))) (setq MyPoly1Ent (entget MyPoly1)) (setq MyPoly1Vert (mAssoc 10 MyPoly1Ent)) (setq Poly1CtrCoo (CtrCoo MyPoly1)) (setq MyPoly2 (car (entsel "\nSelect Polyline 2: "))) (setq MyPoly2Ent (entget MyPoly2)) (setq MyPoly2Vert (mAssoc 10 MyPoly2Ent)) (foreach pt MyPoly1Vert (setq pt2 (vlax-curve-getclosestpointto MyPoly2 pt _none)) (makeline pt pt2) (setq PtList1 (cons (midpt pt pt2) PtList1)) ) ; end foreach (foreach pt MyPoly2Vert (setq pt1 (vlax-curve-getclosestpointto MyPoly1 pt _none)) (makeline pt pt1) (setq PtList1 (cons (midpt pt pt1) PtList1)) ;;not sure which to go with (setq PtList2 (cons (midpt pt pt1) PtList2)) ) ; end foreach (setq PtList1 (lm:unique (reverse PtList1))) (foreach pt PtList1 (Makepoint pt) ) ;;Work out if midpoints outside of exterior polyline (in case of complicated shapes) ;;Work out order of points to link together ;;Work out polyline bulges )
  25. I follow your instructtion. and do the other test, flattened it befor running TICS ,make sure they are flat. but there are still some overlaping lines left . I am confused... lisp test-V2.dwg
  26. OK!! Thanks you so much for remind me.
  27. Thank you for your help. I managed to figure out where I was doing it wrong (I defined the values after the point where they were already used/called upon, didn't notice, so it was a simple matter or moving it higher, to the start of the code). The LISP does what I need it to do now, however I did encounter some issues with extreme cases, like a sharp angle (couple of degree) between the two lines/tangents - comment for future users
  1. Load more activity
×
×
  • Create New...