<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: change exploding linetype lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763345#M14237</link>
    <description>&lt;P&gt;Yes, this is what I want, many thanks. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 May 2024 18:08:15 GMT</pubDate>
    <dc:creator>mruPRQUJ</dc:creator>
    <dc:date>2024-05-09T18:08:15Z</dc:date>
    <item>
      <title>change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12762974#M14223</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;The below lisp is used to exploding linetype to dashed line.&lt;/P&gt;&lt;P&gt;Could you please modify the lisp to exploding linetype to continuous (solid) line?&lt;/P&gt;&lt;P&gt;Please see the lisp below, it was attached as well, thank you very much in advance. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;;;&lt;BR /&gt;;;;&lt;BR /&gt;;;; By Dominic Panholzer&lt;BR /&gt;;;;&lt;BR /&gt;;;; Modified original TXTEXP.LSP from Express Tools&lt;BR /&gt;;;; Copyright © 1999 by Autodesk, Inc.&lt;BR /&gt;;; LINEXP.LSP modifications by CAD Studio&lt;BR /&gt;;;;&lt;BR /&gt;;;; Your use of this software is governed by the terms and conditions of the&lt;BR /&gt;;;; License Agreement you accepted prior to installation of this software.&lt;BR /&gt;;;; Please note that pursuant to the License Agreement for this software,&lt;BR /&gt;;;; "[c]opying of this computer program or its documentation except as&lt;BR /&gt;;;; permitted by this License is copyright infringement under the laws of&lt;BR /&gt;;;; your country. If you copy this computer program without permission of&lt;BR /&gt;;;; Autodesk, you are violating the law."&lt;BR /&gt;;;;&lt;BR /&gt;;;; AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS.&lt;BR /&gt;;;; AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF&lt;BR /&gt;;;; MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC.&lt;BR /&gt;;;; DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE&lt;BR /&gt;;;; UNINTERRUPTED OR ERROR FREE.&lt;BR /&gt;;;;&lt;BR /&gt;;;; Use, duplication, or disclosure by the U.S. Government is subject to&lt;BR /&gt;;;; restrictions set forth in FAR 52.227-19 (Commercial Computer&lt;BR /&gt;;;; Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii)&lt;BR /&gt;;;; (Rights in Technical Data and Computer Software), as applicable.&lt;BR /&gt;;;;&lt;BR /&gt;;;; ----------------------------------------------------------------&lt;BR /&gt;;;;&lt;BR /&gt;;;; External Functions:&lt;BR /&gt;;;;&lt;BR /&gt;;;; ACET-ERROR-INIT --&amp;gt; ACETUTIL.FAS Intializes bonus error routine&lt;BR /&gt;;;; ACET-ERROR-RESTORE --&amp;gt; ACETUTIL.FAS Restores old error routine&lt;BR /&gt;;;; ACET-GEOM-ZOOM-FOR-SELECT --&amp;gt; ACETUTIL.FAS Zoom boundry to include points given&lt;BR /&gt;;;; ACET-LAYER-LOCKED --&amp;gt; ACETUTIL.FAS Checks to see if layer is locked&lt;BR /&gt;;;; ACET-GEOM-PIXEL-UNIT --&amp;gt; ACETUTIL.FAS Size of pixel in drawing units&lt;BR /&gt;;;; ACET-GEOM-TEXTBOX --&amp;gt; ACETUTIL.FAS Returns the textbox for any text&lt;BR /&gt;;;; ACET-GEOM-MIDPOINT --&amp;gt; ACETUTIL.FAS Returns midpoint between two points&lt;BR /&gt;;;; ACET-GEOM-VIEW-POINTS --&amp;gt; ACETUTIL.FAS Returns corner points of screen or viewport&lt;BR /&gt;;;; ACET-STR-FORMAT --&amp;gt; ACETUTIL.ARX String builder&lt;BR /&gt;;;; ACET-WMFIN --&amp;gt; ACETUTIL.FAS Brings in WMF file&lt;BR /&gt;;;;&lt;BR /&gt;&lt;BR /&gt;(defun c:linexp (/ grplst getgname blknm FLTR GLST GDICT SS VIEW UPLFT TMPFIL TBX&lt;BR /&gt;TMPFIL CNT PT1 PT2 ENT TXT TXTYP PTLST ZM LOCKED GNAM vpna vplocked)&lt;BR /&gt;(acet-error-init&lt;BR /&gt;(list&lt;BR /&gt;(list "cmdecho" 0&lt;BR /&gt;"highlight" 1&lt;BR /&gt;"osmode" 0&lt;BR /&gt;"Mirrtext" 1&lt;BR /&gt;"limcheck" 0&lt;BR /&gt;)&lt;BR /&gt;T&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;; --------------------- GROUP LIST FUNCTION ----------------------&lt;BR /&gt;; This function will return a list of all the group names in the&lt;BR /&gt;; drawing and their entity names in the form:&lt;BR /&gt;; ((&amp;lt;ename1&amp;gt; . &amp;lt;name1&amp;gt;) ... (&amp;lt;enamex&amp;gt; . &amp;lt;namex&amp;gt;))&lt;BR /&gt;; ----------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;(defun acet-txtexp-grplst (/ GRP ITM NAM ENT GLST)&lt;BR /&gt;&lt;BR /&gt;(setq GRP (dictsearch (namedobjdict) "ACAD_GROUP"))&lt;BR /&gt;(while (setq ITM (car GRP)) ; While edata item is available&lt;BR /&gt;(if (= (car ITM) 3) ; if the item is a group name&lt;BR /&gt;(setq NAM (cdr ITM) ; get the name&lt;BR /&gt;GRP (cdr GRP) ; shorten the edata&lt;BR /&gt;ITM (car GRP) ; get the next item&lt;BR /&gt;ENT (cdr ITM) ; which is the ename&lt;BR /&gt;GRP (cdr GRP) ; shorten the edata&lt;BR /&gt;GLST ; store the ename and name&lt;BR /&gt;(if GLST&lt;BR /&gt;(append GLST (list (cons ENT NAM)))&lt;BR /&gt;(list (cons ENT NAM))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(setq GRP (cdr GRP)) ; else shorten the edata&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;GLST ; return the list&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;; ------------------- GET GROUP NAME FUNCTION --------------------&lt;BR /&gt;; This function returns a list of all the group names in GLST&lt;BR /&gt;; where ENT is a member. The list has the same form as GLST&lt;BR /&gt;; ----------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;(defun acet-txtexp-getgname (ENT GLST / GRP GDATA NAM NLST)&lt;BR /&gt;(if (and GLST (listp GLST))&lt;BR /&gt;(progn&lt;BR /&gt;(foreach GRP GLST&lt;BR /&gt;(setq GDATA (entget (car GRP)))&lt;BR /&gt;(foreach ITM GDATA ; step through the edata&lt;BR /&gt;(if (and&lt;BR /&gt;(= (car ITM) 340) ; if the item is a entity name&lt;BR /&gt;(eq (setq NAM (cdr ITM)) ENT) ; and the ename being looked for&lt;BR /&gt;)&lt;BR /&gt;(setq NLST ; store the ename and name&lt;BR /&gt;(if NLST&lt;BR /&gt;(append NLST (list (cons (car GRP) (cdr GRP))))&lt;BR /&gt;(list (cons (car GRP) (cdr GRP)))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;NLST&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;; ----------------------------------------------------------------&lt;BR /&gt;; MAIN PROGRAM&lt;BR /&gt;; ----------------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;(if (and ; Are we in plan view?&lt;BR /&gt;(equal (car (getvar "viewdir")) 0 0.00001)&lt;BR /&gt;(equal (cadr (getvar "viewdir")) 0 0.00001)&lt;BR /&gt;(&amp;gt; (caddr (getvar "viewdir")) 0)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(progn&lt;BR /&gt;&lt;BR /&gt;(prompt "\nSelect lines to be EXPLODED: ")&lt;BR /&gt;&lt;BR /&gt;(Setq FLTR '((-4 . "&amp;lt;AND")&lt;BR /&gt;(-4 . "&amp;lt;OR") ; filter for mtext and text&lt;BR /&gt;(0 . "MTEXT")&lt;BR /&gt;(0 . "TEXT")&lt;BR /&gt;(-4 . "OR&amp;gt;")&lt;BR /&gt;(-4 . "&amp;lt;NOT")&lt;BR /&gt;(102 . "{ACAD_REACTORS") ; and not leader text&lt;BR /&gt;(-4 . "NOT&amp;gt;")&lt;BR /&gt;(-4 . "AND&amp;gt;")&lt;BR /&gt;)&lt;BR /&gt;GLST (acet-txtexp-grplst) ; Get all the groups in drawing&lt;BR /&gt;GDICT (if GLST&lt;BR /&gt;(dictsearch (namedobjdict) "ACAD_GROUP")&lt;BR /&gt;)&lt;BR /&gt;SS (ssget); FLTR)&lt;BR /&gt;CNT 0&lt;BR /&gt;)&lt;BR /&gt;;; filter out the locked layers&lt;BR /&gt;(if SS&lt;BR /&gt;(setq SS (car (bns_ss_mod SS 1 T)))&lt;BR /&gt;) ;if&lt;BR /&gt;&lt;BR /&gt;;; if we have anything left&lt;BR /&gt;(if SS&lt;BR /&gt;(progn&lt;BR /&gt;(setq CNT 0) ; Reset counter&lt;BR /&gt;(while (setq ENT (ssname SS CNT)) ; step through each object in set&lt;BR /&gt;&lt;BR /&gt;(and&lt;BR /&gt;GLST ; if groups are present in the drawing&lt;BR /&gt;(setq GNAM (acet-txtexp-getgname ENT GLST)) ; and the text item is in one or more&lt;BR /&gt;(foreach GRP GNAM ; step through those groups&lt;BR /&gt;(command "_.-group" "_r" ; and remove the text item&lt;BR /&gt;(cdr GRP) ENT ""&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(setq TBX (acet-geom-textbox (entget ENT) 0)) ; get textbox points&lt;BR /&gt;&lt;BR /&gt;(setq TBX (mapcar '(lambda (x)&lt;BR /&gt;(trans x 1 0) ; convert the points to WCS&lt;BR /&gt;)&lt;BR /&gt;TBX&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(setq PTLST (append PTLST TBX)) ; Build list of bounding box&lt;BR /&gt;; points for text items selected&lt;BR /&gt;&lt;BR /&gt;(setq CNT (1+ CNT)) ; get the next text item&lt;BR /&gt;); while&lt;BR /&gt;&lt;BR /&gt;(setq PTLST (mapcar '(lambda (x)&lt;BR /&gt;(trans x 0 1) ; convert all the points&lt;BR /&gt;) ; to the current ucs&lt;BR /&gt;PTLST&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(if (setq ZM (acet-geom-zoom-for-select PTLST)) ; If current view does not contain&lt;BR /&gt;(progn ; all bounding box points&lt;BR /&gt;(setq ZM&lt;BR /&gt;(list&lt;BR /&gt;(list (- (caar ZM) (acet-geom-pixel-unit)) ; increase zoom area by&lt;BR /&gt;(- (cadar ZM) (acet-geom-pixel-unit)) ; one pixel width to&lt;BR /&gt;(caddar ZM) ; sure nothing will be lost&lt;BR /&gt;)&lt;BR /&gt;(list (+ (caadr ZM) (acet-geom-pixel-unit))&lt;BR /&gt;(+ (cadadr ZM) (acet-geom-pixel-unit))&lt;BR /&gt;(caddr (cadr zm))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(if (setq vpna (acet-currentviewport-ename))&lt;BR /&gt;(setq vplocked (acet-viewport-lock-set vpna nil))&lt;BR /&gt;);if&lt;BR /&gt;(command "_.zoom" "_w" (car ZM) (cadr ZM)) ; zoom to include text objects&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(setq VIEW (acet-geom-view-points)&lt;BR /&gt;TMPFIL (strcat (getvar "tempprefix") "txtexp.wmf")&lt;BR /&gt;PT1 (acet-geom-midpoint (car view) (cadr view))&lt;BR /&gt;PT2 (list (car PT1) (cadadr VIEW))&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(if (acet-layer-locked (getvar "clayer")) ; if current layer is locked&lt;BR /&gt;(progn&lt;BR /&gt;(command "_.layer" "_unl" (getvar "clayer") "") ; unlock it&lt;BR /&gt;(setq LOCKED T)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;(command "_.mirror" SS "" PT1 PT2 "_y"&lt;BR /&gt;"_.WMFOUT" TMPFIL SS "")&lt;BR /&gt;&lt;BR /&gt;(if (findfile tmpfil) ; Does WMF file exist?&lt;BR /&gt;(progn&lt;BR /&gt;(command "_.ERASE" SS "") ; erase the orignal text&lt;BR /&gt;(setq ss (acet-wmfin TMPFIL)) ; insert the WMF file&lt;BR /&gt;(command "_.mirror" ss "" PT1 PT2 "_y")&lt;BR /&gt;) ;progn&lt;BR /&gt;) ;if&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;(if LOCKED&lt;BR /&gt;(command "_.layer" "_lock" (getvar "clayer") "") ; relock if needed&lt;BR /&gt;) ;if&lt;BR /&gt;&lt;BR /&gt;(if ZM (command "_.zoom" "_p")) ; Restore original view if needed&lt;BR /&gt;(if vplocked&lt;BR /&gt;(acet-viewport-lock-set vpna T) ;re-lock the viewport if needed.&lt;BR /&gt;);if&lt;BR /&gt;(prompt (acet-str-format "\n%1 object(s) have been exploded to lines." CNT))&lt;BR /&gt;(prompt "\nThe line objects have been placed on layer 0.")&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;(prompt "\nView needs to be in plan (0 0 1).")&lt;BR /&gt;);if equal&lt;BR /&gt;(acet-error-restore) ; Retsore values&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;(princ)&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:12:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12762974#M14223</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T15:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763008#M14224</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;...Could you please modify the lisp to exploding linetype to continuous (solid) line?...&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Wouldn't that just be the same as changing the linetype to CONTINUOUS for example?&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:24:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763008#M14224</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-05-09T15:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763022#M14225</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;Exactly:&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:foo (/ s)
  (cond	((setq s (ssget ":L"))
	 (foreach e (vl-remove-if 'listp (mapcar 'cadr (ssnamex s)))
	   (entmod (append (entget e) '((6 . "Continuous"))))
	 )
	 (command "_.Explode" s "")
	)
  )
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 09 May 2024 15:29:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763022#M14225</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2024-05-09T15:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763038#M14226</link>
      <description>&lt;P&gt;yes, &lt;SPAN&gt;&amp;nbsp;just be the same as changing the linetype to CONTINUOUS, thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:44:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763038#M14226</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T15:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763045#M14227</link>
      <description>&lt;P&gt;sorry, I did not say it clearly. In the original lisp, after exploding linetype, the linetype shape will be kept, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:46:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763045#M14227</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T15:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763051#M14228</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;Post a sample drawing of before and after of what you're looking for. I'm a bit confused.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 15:48:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763051#M14228</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2024-05-09T15:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763062#M14229</link>
      <description>&lt;P&gt;after exploding linetype, keep linetype shape, please see attached file. The original lisp exploded linetype, it changed size as well. If the size can be kept same, that would be great, many thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:05:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763062#M14229</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T16:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763085#M14230</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;after exploding linetype, what I can see, no change on the drawings. But objects linetype changed,&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Your LISP converts a single line that is dashed and turns it into many smaller individual dashed lines, one for each dash.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And on top of that, you want the LISP to then combine all of those individual lines back into one single line with no dashed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If that is correct, that would be the same as doing this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1715270540395.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360228i99C79C5462632648/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1715270540395.png" alt="pendean_0-1715270540395.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1715270703044.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360232i959898DBAACEA9EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1715270703044.png" alt="pendean_0-1715270703044.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_1-1715270590517.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360230i713D7CDE485C5B83/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_1-1715270590517.png" alt="pendean_1-1715270590517.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_1-1715270745864.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360233iF21E6F8911EDC68C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_1-1715270745864.png" alt="pendean_1-1715270745864.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Nothing more. Do you just need the above 'change properties' automated into a LISP instead of using menus?&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:05:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763085#M14230</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-05-09T16:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763102#M14231</link>
      <description>&lt;P&gt;yes. is there any gap between lines after changing them from dashed to solid line? there are gaps between dashed lines. I do not want to see the gap, thanks&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:11:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763102#M14231</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T16:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763129#M14232</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1715271668932.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360238i006DCDC3C8D3D25C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1715271668932.png" alt="pendean_0-1715271668932.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_1-1715271693642.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360239iA5003D4960FC45C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_1-1715271693642.png" alt="pendean_1-1715271693642.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_2-1715271712593.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360240i67AA2A7BA6F8E97E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_2-1715271712593.png" alt="pendean_2-1715271712593.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:22:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763129#M14232</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-05-09T16:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763146#M14233</link>
      <description>&lt;P&gt;I may say it clearly. After exploding linetype, keep original linetype shape, please see attached file. Is it possible add&lt;/P&gt;&lt;P&gt;convert dashed line to solid line (&lt;SPAN&gt;change properties' automated into a LISP)&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;We will see what happen,&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:32:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763146#M14233</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T16:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763167#M14234</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;.... there are gaps between dashed lines. I do not want to see the gap, thanks&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That seems like an &lt;EM&gt;entirely different request&lt;/EM&gt; than the one about turning a ZIGZAG-linetype Line into a series of zigs and zags that are not in a linetype.&amp;nbsp; For dashed-variety linetypes, you should get what you want by just changing the linetype to continuous, which doesn't require any code, but of course that won't get what you appear to want in the ZIGZAG conversion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post a sample with a &lt;STRONG&gt;&lt;EM&gt;greater variety&lt;/EM&gt;&lt;/STRONG&gt; of "before" linetypes and what you are looking for as "after" results?&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 16:40:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763167#M14234</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-05-09T16:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763221#M14235</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13366667"&gt;@mruPRQUJ&lt;/a&gt;&amp;nbsp;You want to JOIN what appear to be end-to-end lines if and when hey occur that are a result of your custom linetype coding then, nothing more. Is that what you've been asking for all along? There are no 'gaps' at all.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1715274010859.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360261i1F3E9DD42593B5F9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1715274010859.png" alt="pendean_0-1715274010859.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If yes, bad news, your linetype creates what appear to be end-to-end lines but that middle point is an INTersection instead.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_1-1715274043420.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360262iE444081E330B9400/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_1-1715274043420.png" alt="pendean_1-1715274043420.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;JOIN command converts them into PLINEs because of that, the two lines are no in perfect alignment, each is a little off&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_2-1715274126650.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360264i448319825D7A449F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_2-1715274126650.png" alt="pendean_2-1715274126650.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PEDIT command or MPEDIT Express Tool can convert your zigzags into PLINEs is ultimately that is your intent, I don't know how you'll get a single LINE object from two plines that are not truly inline with each other unless you want to go far end to far end, in which case you need a LISP that will redraw your pattern as a series of LINE objects somehow only between the large-closer-to-90 degree angles.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 17:06:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763221#M14235</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-05-09T17:06:39Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763330#M14236</link>
      <description>&lt;P&gt;do you want something like this?&lt;/P&gt;&lt;DIV class=""&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="komondormrex_0-1715277783283.gif" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1360285i82ADF26086F0F499/image-size/medium?v=v2&amp;amp;px=400" role="button" title="komondormrex_0-1715277783283.gif" alt="komondormrex_0-1715277783283.gif" /&gt;&lt;/span&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 May 2024 18:04:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763330#M14236</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2024-05-09T18:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763345#M14237</link>
      <description>&lt;P&gt;Yes, this is what I want, many thanks. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 18:08:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763345#M14237</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-09T18:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763387#M14238</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;.... JOIN command converts them into PLINEs because of that, the two lines are no in perfect alignment, each is a little off&amp;nbsp;&lt;/SPAN&gt;..., I don't know how you'll get a single LINE object from two plines that are not truly inline with each other .....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;For me, both JOIN and PEDIT/Multiple/{select the pieces}/Join make the whole thing into one Polyline in the "linetype new" sample drawing.&amp;nbsp; [Yes, there's a vertex at the middle of each visual segment, but it's overall a single object.]&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 18:25:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763387#M14238</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2024-05-09T18:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: change exploding linetype lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763439#M14239</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;SPAN&gt;.... JOIN command converts them into PLINEs because of that, the two lines are no in perfect alignment, each is a little off&amp;nbsp;&lt;/SPAN&gt;..., I don't know how you'll get a single LINE object from two plines that are not truly inline with each other .....&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;For me, both JOIN and PEDIT/Multiple/{select the pieces}/Join make the whole thing into one Polyline in the "linetype new" sample drawing.&amp;nbsp; [Yes, there's a vertex at the middle of each visual segment, but it's overall a single object.]&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It appears the OP has redefined what they want yet again (post above yours): someday it will become clear.&lt;/P&gt;</description>
      <pubDate>Thu, 09 May 2024 18:53:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-exploding-linetype-lisp/m-p/12763439#M14239</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2024-05-09T18:53:48Z</dc:date>
    </item>
  </channel>
</rss>

