<?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: Insert PDF pages help in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707114#M67252</link>
    <description>&lt;P&gt;This is pretty cool. It seems like the user should select the sheets desired and the scale should be based on the two points selected.&lt;/P&gt;&lt;P&gt;What do you think?&lt;/P&gt;</description>
    <pubDate>Fri, 22 Oct 2021 15:46:25 GMT</pubDate>
    <dc:creator>DC-MWA</dc:creator>
    <dc:date>2021-10-22T15:46:25Z</dc:date>
    <item>
      <title>Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890051#M67240</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have a cool lisp that attaches PDF pages from a selected pdf file.&lt;/P&gt;&lt;P&gt;I have modified it to know the number of pages (using Lee Mac's&amp;nbsp;_PDFPageCount).&lt;/P&gt;&lt;P&gt;It asks the user the height of pages and stacks them using the input.&lt;/P&gt;&lt;P&gt;I'm wondering if there is a way to get each page height and use that information for stacking the inserted pages. The reason is if the pdf file has some 8.5 x 11 pages and some 11 x 8.5 pages, it overlaps some of the pages when stacking.&lt;/P&gt;&lt;P&gt;I have attached the lisp file.&lt;/P&gt;&lt;P&gt;Thanks in advance fo any input and/or assistance received.&lt;/P&gt;&lt;P&gt;-dc&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 19:56:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890051#M67240</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-11-23T19:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890544#M67241</link>
      <description>&lt;P&gt;Quickly looking at the code you provided .. it originally used the bounding box to place the PDF's I'd suggest using the version before you modified it and it should work.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 23:33:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890544#M67241</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2020-11-23T23:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890549#M67242</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6400150"&gt;@DC-MWA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this. Did what I could to help out. Update this function in your original lisp file. I will highlight my changes made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The exception, is that now a list with 2 pieces of information will be returned, instead of an integer (Lee's function was already doing all the heavy lifting).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is updated function:&lt;/P&gt;&lt;PRE&gt;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(defun _PDFPageCount ( filename / fob fso mat reg &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;cnt&lt;/STRONG&gt;&lt;/FONT&gt; str &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;pgs&lt;/STRONG&gt;&lt;/FONT&gt; )
  ;; Translation by Lee Mac of the VBScript code by Chanh Ong
  ;; found at http://docs.ongetc.com/?q=content/pdf-pages-counting-using-vb-script
  ;;
&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;  ;; Edits by CodeDing, for user DC-MWA, per help request here:
  ;; https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/td-p/9890051&lt;/FONT&gt;&lt;/STRONG&gt;
  ;;
  ;; Call with fully qualified filename of PDF file:
  ;; (_PDFPageCount "C:\\Folder\\Filename.pdf")
  ;;
&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;  ;; Returns list describing number of pages in specified PDF file and page sizes.
  ;; Return format --&amp;gt; (("PAGE_COUNT" . #) ("PAGE_SIZES" (# #) ...))&lt;/FONT&gt;&lt;/STRONG&gt;
 
  (if
    (and
      (setq filename (findfile filename))
      (eq ".PDF" (strcase (vl-filename-extension filename)))
    )
    (vl-catch-all-apply
      (function
        (lambda ( / _ReadAsTextFile _CountPage &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;_GetPageSizes&lt;/STRONG&gt;&lt;/FONT&gt;)
          (defun _ReadAsTextFile ( fso fn / fob str res )
            (setq fob (vlax-invoke fso 'getfile fn)
                  str (vlax-invoke fso 'opentextfile fn 1 0)
                  res (vlax-invoke str 'read (vlax-get fob 'size))
            )
            (vlax-invoke str 'close)
            (vlax-release-object str)
            (vlax-release-object fob)
            res
          )
          (defun _CountPage ( rgx str / mat pag )
            (vlax-put-property rgx 'pattern "/Type\\s*/Page[^s]")
            (vlax-put-property rgx 'ignorecase actrue)
            (vlax-put-property rgx 'global actrue)
            (setq mat (vlax-invoke rgx 'execute str)
                  pag (vlax-get mat 'count)
            )
            (vlax-release-object mat)
            (if (zerop pag) 1 pag)             
          )
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;          (defun _GetPageSizes (str / scale_factor pos lb rb pg pgs)
            ;; scale_factor is based on standard "user space units" (1 unit = 1/72 inch)
            ;; ... as defined by Adobe Portable Document Format (pg 79, "UserUnit"):
            ;; https://www.adobe.com/content/dam/acom/en/devnet/acrobat/pdfs/PDF32000_2008.pdf
            (setq scale_factor 72)
            (setq pos 0)
            (while (setq pos (vl-string-search "/MediaBox" str pos))
              (setq lb (+ 2 (vl-string-search "[" str pos))
                    rb (1+ (vl-string-search "]" str lb))
                    pos (1+ pos)
                    pg (substr str lb (- rb lb))
                    pg (cddr (read (strcat "(" pg ")")))
                    pg (mapcar '(lambda (x) (/ x scale_factor)) pg)
                    pgs (cons pg pgs)
              )
            )
            (reverse pgs)
          )&lt;/STRONG&gt;&lt;/FONT&gt;
          (setq fso (vlax-create-object "Scripting.FileSystemObject")
                reg (vlax-create-object "VBScript.RegExp")
                str (_ReadAsTextFile fso filename)
                &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;cnt&lt;/STRONG&gt;&lt;/FONT&gt; (_CountPage reg str)
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;                pgs (_GetPageSizes str)&lt;/STRONG&gt;&lt;/FONT&gt;
          )
        )
      )
    )
  )
  (foreach obj (list str fob mat fso reg)
    (vl-catch-all-apply 'vlax-release-object (list obj))
  )
&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;  (list (cons "PAGE_COUNT" cnt) (cons "PAGE_SIZES" pgs))&lt;/STRONG&gt;&lt;/FONT&gt;
);;end defun _PDFPageCount
(vl-load-com) (princ)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example of the returned format (I used a PDF with 2 different page layouts):&lt;/P&gt;&lt;PRE&gt;(("PAGE_COUNT" . 4) ("PAGE_SIZES" (8.5 14.0) (8.5 14.0) (14.0 8.5) (14.0 8.5)))&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 23:41:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890549#M67242</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-11-23T23:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890554#M67243</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6400150"&gt;@DC-MWA&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--- SOME NOTES ---&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;- The "MediaBox" page size retrieval will not work on ALL PDFs, but it should work on most. If the PDF was created by Adobe or Microsoft, I feel pretty confident that it will work.&lt;/P&gt;&lt;P&gt;- The units returned for page size are in INCHES. This is based on the Adobe standard for MediaBox&amp;nbsp; units (I commented where I found this information in the function I added). So, if you want units other than inches, you can change the "scale_factor" variable appropriately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Mon, 23 Nov 2020 23:40:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9890554#M67243</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-11-23T23:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892266#M67244</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Alternative option, maybe it will help -&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;A href="https://www.kdmsoft.net/autoimportcad.html" target="_blank" rel="noopener"&gt;AutoImportCAD&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 15:21:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892266#M67244</guid>
      <dc:creator>maratovich</dc:creator>
      <dc:date>2020-11-24T15:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892339#M67245</link>
      <description>&lt;P&gt;Thanks for taking a look.&lt;/P&gt;&lt;P&gt;The orginal set all insertion points at 11 inches apart&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(setq ipoint (list (car ipoint) (- (cadr ipoint) 11.0)));;original sets all to 11&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 15:50:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892339#M67245</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-11-24T15:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892356#M67246</link>
      <description>&lt;P&gt;Thank you for your assistance. My lisping skills are minimal at best. I do not know how to take the page size, get the height and feed into the ipoint variable for each page within the while statement.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 15:55:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/9892356#M67246</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2020-11-24T15:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10702667#M67247</link>
      <description>&lt;P&gt;I know that this is from almost a year ago, but seeing as there aren't really any great examples out there, I will leave this here. I have written a routine, it's primary purpose is to insert Title 24 Calculations (PDFs) into CAD drawings to where they won't overlap and will stay within the usable space of a title block. It automatically creates new layouts as needed and even has an option at the end to export all layouts to separate CAD files.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You may need to make some minor adjustments for your CAD standards, but it should work with pretty much any multipage PDF file out there.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 16:12:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10702667#M67247</guid>
      <dc:creator>chriswade</dc:creator>
      <dc:date>2021-10-21T16:12:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10702996#M67248</link>
      <description>&lt;P&gt;Please don't take this personally but after scrolling numerous pages of code I looked for the movie, so got very uninterested. As a marketing suggestion do the movie 1st next time and just include the code as a attachment. Ex Autocad reseller and State Civil software rep.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know there are a few of us here that don't like having to scroll through numerous pages of code looking for something that pops out. But would hit download and check it out later.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hey Mr autodesk when can we update a post that is more than 30 minutes old ?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 04:54:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10702996#M67248</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2021-10-21T04:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10704450#M67249</link>
      <description>&lt;P&gt;I don't understand your comment at all, there is no marketing here, there is no movie, just a single command called T24 (which is literally defined at the beginning of the code, no need to scroll at all).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is simply a tool to help the OP do what they requested the ability to do, which I described before the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am also just an end user, in no way affiliated with Autodesk or any reseller (other than use a reseller to purchase our software).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That being said, I will go ahead and attach a video to this post showing how it works.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, if you are asking how I get the page size, well I cheat, I don't actually get it from the PDF file, instead, the pertinent sections are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;  (defun LM:ssboundingbox ( sel / idx llp ls1 ls2 obj urp )
    ;; Code by Lee Mac from: http://www.lee-mac.com/ssboundingbox.html
    ;; Selection Set Bounding Box  -  Lee Mac
    ;; Returns a list of the lower-left and upper-right WCS coordinates of a
    ;; rectangular frame bounding all objects in a supplied selection set.
    ;; sel - [sel] Selection set for which to return bounding box
    (repeat (setq idx (sslength sel))
      (setq obj (vlax-ename-&amp;gt;vla-object (ssname sel (setq idx (1- idx)))))
      (if
        (and 
          (vlax-method-applicable-p obj 'getboundingbox)
          (not
            (vl-catch-all-error-p (vl-catch-all-apply 'vla-getboundingbox (list obj 'llp 'urp)))
          );not
        );and
        (setq ls1 (mapcar 'min (vlax-safearray-&amp;gt;list llp) (cond (ls1) ((vlax-safearray-&amp;gt;list llp))))
              ls2 (mapcar 'max (vlax-safearray-&amp;gt;list urp) (cond (ls2) ((vlax-safearray-&amp;gt;list urp))))
        );setq
      );if
    );repeat
    (if (and ls1 ls2) (list ls1 ls2))
  );LM:SSBoundingBox&lt;/LI-CODE&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;&lt;P&gt;Then you can attach the PDF and get the boundary of the most recently inserted page using the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="lisp"&gt;(setq *Single* nil
      *Single* (ssadd)
      SingleBound (LM:SSBoundingBox *Single*)
      LowerLeft (nth 0 SingleBound)
      UpperRight (nth 1 SingleBound)
      Width (- (car UpperRight) (Car LowerLeft))
      Height (- (cadr LowerLeft) (cadr UpperRight))
);setq
(if (&amp;lt; Width 0)
(setq Width (* Width -1))
)
(if (&amp;lt; Height 0)
(setq Height (* Height -1))
)&lt;/LI-CODE&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;&lt;P&gt;This will specifically get you the width and height of the page. I have recently been told that there may be a way to get it from the PDF file itself, but I haven't tried that approach as of yet, as this accounts for the entire outline of the PDF and the other may not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also updated my previous post to make the code an attachment instead of inline in the reply.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 16:14:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10704450#M67249</guid>
      <dc:creator>chriswade</dc:creator>
      <dc:date>2021-10-21T16:14:32Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10704701#M67250</link>
      <description>&lt;P&gt;This is very interesting. Thank you for sharing.&lt;/P&gt;&lt;P&gt;I will do a little more "testing" later, my day is full.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 17:44:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10704701#M67250</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2021-10-21T17:44:14Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10705343#M67251</link>
      <description>&lt;P&gt;You are welcome, now here is a much more robust version that allows you to select the scale, which pages to insert, etc.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 23:23:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10705343#M67251</guid>
      <dc:creator>chriswade</dc:creator>
      <dc:date>2021-10-21T23:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707114#M67252</link>
      <description>&lt;P&gt;This is pretty cool. It seems like the user should select the sheets desired and the scale should be based on the two points selected.&lt;/P&gt;&lt;P&gt;What do you think?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 15:46:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707114#M67252</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2021-10-22T15:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707125#M67253</link>
      <description>&lt;P&gt;The reason I haven't done that, is the tool automatically creates new layouts to allow for the number of pages at the specified scale, but not a bad idea with an AutoScale function, but this would also mean you would need to specify the number of rows and columns you would want, which would require a bit of rework, when I have the time, I might add that, as I could see it being useful.&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 15:51:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707125#M67253</guid>
      <dc:creator>chriswade</dc:creator>
      <dc:date>2021-10-22T15:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert PDF pages help</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707141#M67254</link>
      <description>&lt;P&gt;None the less, this is very cool!&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 15:56:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/insert-pdf-pages-help/m-p/10707141#M67254</guid>
      <dc:creator>DC-MWA</dc:creator>
      <dc:date>2021-10-22T15:56:27Z</dc:date>
    </item>
  </channel>
</rss>

