<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים]]></title><description><![CDATA[<p dir="auto">יש לי כמה תוכנןת של pdf</p>
]]></description><link>https://tchumim.com/topic/11490/איך-מוסיפים-בpdf-עמוד-ריק-אחרי-כל-עמוד-בעמודים-מרובים</link><generator>RSS for Node</generator><lastBuildDate>Fri, 15 May 2026 01:36:00 GMT</lastBuildDate><atom:link href="https://tchumim.com/topic/11490.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 05 Jul 2021 11:29:07 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים on Mon, 05 Jul 2021 19:57:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shraga">@<bdi>shraga</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/ek0583232948">@<bdi>ek0583232948</bdi></a><br />
קובץ&gt;אשף הפעולות&gt;צור פעולה חדשה<br />
עוד כלים&gt;בצע JavaScript<br />
לבחור בלחצן אפשרויות<br />
ושם להדביק את הקוד</p>
<p dir="auto">נ.ב. אם כבר אני מוסיף פה קוד שמגיע אצלי לשימוש,<br />
לשכפל את כל העמודים במסמך</p>
<pre><code>/* שכפל את כל העמודים במסמך */
for (var i=this.numPages-1; i&gt;=0; i--) {
    this.insertPages(i, this.path, i);
}

</code></pre>
]]></description><link>https://tchumim.com/post/125101</link><guid isPermaLink="true">https://tchumim.com/post/125101</guid><dc:creator><![CDATA[מנחם]]></dc:creator><pubDate>Mon, 05 Jul 2021 19:57:50 GMT</pubDate></item><item><title><![CDATA[Reply to איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים on Mon, 05 Jul 2021 19:52:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ek0583232948">@<bdi>ek0583232948</bdi></a> אמר ב<a href="/post/125087">איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים</a>:</p>
<blockquote>
<p dir="auto">PDFXEdit</p>
</blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shraga">@<bdi>shraga</bdi></a> אמר ב<a href="/post/125093">איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים</a>:</p>
<blockquote>
<p dir="auto">אמור להיות אפשרי באמצעות הרצת פקודת הJS הזו באקרובט (לא הצלחתי למצוא את המקום בו ניתן להריץ את הjs באקרובט):</p>
</blockquote>
<p dir="auto">אין לי אקרובט. אבל יש לי PDFXEdit.<br />
שם זה נמצא בכרטיסיית "טופס" לחצן "Javascript מסוף"<br />
תדביק את הקוד ש@shraga הביא ותלחץ על "להריץ"<br />
אפשר להתאים את הקוד שזה יפעל על טווח מסויים או שיכניס אחרי כל דף שני וכו'.</p>
<p dir="auto"><img src="/assets/uploads/files/1625514754566-d9b34db9-1a45-4674-9714-9ca03a347a6f-image.png" alt="d9b34db9-1a45-4674-9714-9ca03a347a6f-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://tchumim.com/post/125099</link><guid isPermaLink="true">https://tchumim.com/post/125099</guid><dc:creator><![CDATA[yossiz]]></dc:creator><pubDate>Mon, 05 Jul 2021 19:52:37 GMT</pubDate></item><item><title><![CDATA[Reply to איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים on Mon, 05 Jul 2021 18:58:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ek0583232948">@<bdi>ek0583232948</bdi></a></p>
<p dir="auto">אמור להיות אפשרי באמצעות הרצת פקודת הJS הזו באקרובט (לא הצלחתי למצוא את המקום בו ניתן להריץ את הjs באקרובט):</p>
<pre><code>var start = 1; // start at page 1
var jump = 1;  // jump every 1 pages

for (var i=start; i&lt;this.numPages+1; i=i+jump) { // Loop until past the end of the file
this.newPage(i); // Inject the blank page after the current page
i++;             // Advance a page to account for the one we just added
}
</code></pre>
<p dir="auto"><a href="https://graphicdesign.stackexchange.com/questions/102737" target="_blank" rel="noopener noreferrer nofollow ugc">https://graphicdesign.stackexchange.com/questions/102737</a></p>
]]></description><link>https://tchumim.com/post/125093</link><guid isPermaLink="true">https://tchumim.com/post/125093</guid><dc:creator><![CDATA[shraga]]></dc:creator><pubDate>Mon, 05 Jul 2021 18:58:47 GMT</pubDate></item><item><title><![CDATA[Reply to איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים on Mon, 05 Jul 2021 18:02:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/shraga">@<bdi>shraga</bdi></a> יש לי אדובי פרו 10<br />
PDFXEdit<br />
עורך PDF Foxit</p>
]]></description><link>https://tchumim.com/post/125087</link><guid isPermaLink="true">https://tchumim.com/post/125087</guid><dc:creator><![CDATA[ek0583232948]]></dc:creator><pubDate>Mon, 05 Jul 2021 18:02:06 GMT</pubDate></item><item><title><![CDATA[Reply to איך מוסיפים בPDF עמוד ריק אחרי כל עמוד בעמודים מרובים on Mon, 05 Jul 2021 15:39:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ek0583232948">@<bdi>ek0583232948</bdi></a><br />
אלו תוכנות יש לך?<br />
בכל תוכנה סדר הפעולות שונה..</p>
]]></description><link>https://tchumim.com/post/125074</link><guid isPermaLink="true">https://tchumim.com/post/125074</guid><dc:creator><![CDATA[shraga]]></dc:creator><pubDate>Mon, 05 Jul 2021 15:39:31 GMT</pubDate></item></channel></rss>