<?xml version="1.0" encoding="windows-1250" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>CAD F&#243;rum : M ODKAZ - definice</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : AutoCAD : M ODKAZ - definice]]></description>
  <pubDate>Sun, 12 Jul 2026 22:57:08 +0000</pubDate>
  <lastBuildDate>Wed, 07 Feb 2024 15:58:01 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum/RSS_post_feed.asp?TID=34940</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD F&#243;rum]]></title>
   <url>https://www.cadforum.cz/forum/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum/</link>
  </image>
  <item>
   <title><![CDATA[M ODKAZ - definice : aby to bylo &amp;#034;p&#345;ednastaven&#233;&amp;#034;,...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129535&amp;title=m-odkaz-definice#129535</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 34940<br /><strong>Zasláno:</strong> 07.úno.2024 v 15:58<br /><br />aby to bylo "přednastavené", ne - lze ale třeba kopírovat nějaký mustr multiodkazu, např. z palety]]>
   </description>
   <pubDate>Wed, 07 Feb 2024 15:58:01 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129535&amp;title=m-odkaz-definice#129535</guid>
  </item> 
  <item>
   <title><![CDATA[M ODKAZ - definice : P&#345;&#237;klad v&#283;c asi &#345;e&#353;&#237;, nicm&#233;n&#283;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129532&amp;title=m-odkaz-definice#129532</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=34602">Petr_K.</a><br /><strong>Předmět:</strong> 34940<br /><strong>Zasláno:</strong> 07.úno.2024 v 09:54<br /><br /><div>Příklad věc asi řeší, nicméně v mé kombinaci ACLT2022/W11 je to nepoužitelné.</div><div>Jiná cesta tedy neexistuje?</div><div>Petr K.<br></div>]]>
   </description>
   <pubDate>Wed, 07 Feb 2024 09:54:35 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129532&amp;title=m-odkaz-definice#129532</guid>
  </item> 
  <item>
   <title><![CDATA[M ODKAZ - definice : &#344;&#225;dkov&#225;n&#237; MText popisek nen&#237; sou&#269;&#225;st&#237;...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129529&amp;title=m-odkaz-definice#129529</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=9">Vladimír Michl</a><br /><strong>Předmět:</strong> 34940<br /><strong>Zasláno:</strong> 06.úno.2024 v 21:07<br /><br />Řádkování MText popisek není součástí stylu multiodkazu, takže standardně to nejde. V plném AutoCADu nebo v AutoCADu LT 2024 si ale můžete načíst LISP reaktor, který se o to postará. Příklad:<div><br></div><div><table width="99%"><tr><td><pre class="BBcode"></div><div><div>(defun _mleaderspfac (/ obj objent objentdata vlaobjent)</div><div>&nbsp; (if (setq obj (ssget "_L" '((0 . "MULTILEADER"))))</div><div>&nbsp; &nbsp;(progn</div><div>&nbsp; &nbsp; &nbsp;(setq objent (ssname obj 0)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;objentdata (entget objent)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;vlaobjent (vlax-ename-&gt;vla-object objent)</div><div>&nbsp; &nbsp; &nbsp;)</div><div>&nbsp; &nbsp; &nbsp;(if (/= (cdr (assoc 290 objentdata)) 0) ; w. MText</div><div>&nbsp; &nbsp; &nbsp; &nbsp;(if</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(or T (= (vlax-get-property vlaobjent 'TextLineSpacingStyle) 1)) ; all</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; (progn</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(vlax-put-property vlaobjent 'TextLineSpacingStyle 2)</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;(vlax-put-property vlaobjent 'TextLineSpacingFactor 1.5) ; line spacing</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ) ;_ end of progn</div><div>&nbsp; &nbsp; &nbsp; &nbsp;) ;_ end of if</div><div>&nbsp; &nbsp; &nbsp;) ;_ end of if</div><div>&nbsp; &nbsp;) ;_ end of progn</div><div>&nbsp; ) ;_ end of if</div><div>) ;_ end of defun</div><div><br></div><div><br></div><div>(if (not Command_Ending_Reactor)</div><div>&nbsp;(setq Command_Ending_Reactor</div><div>&nbsp; (vlr-command-reactor nil '((:vlr-CommandEnded . Command_Ended_Command)))</div><div>&nbsp;)</div><div>)</div><div><br></div><div>(defun Command_Ended_Command (In_ReactorName In_Command)</div><div>&nbsp; &nbsp;; (alert (car In_Command )) ;; &lt;-- Remove this line, it shows all incomming command</div><div>&nbsp; &nbsp;(if (= (car In_Command) "MLEADER") (_mleaderspfac)) ; "MLEADERCONTENTEDIT" "MLEADEREDIT"</div><div>)</div></div><div></pre></td></tr></table></div>]]>
   </description>
   <pubDate>Tue, 06 Feb 2024 21:07:25 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129529&amp;title=m-odkaz-definice#129529</guid>
  </item> 
  <item>
   <title><![CDATA[M ODKAZ - definice : Dobr&#253; den,lze n&#283;jak&#253;m zp&#367;sobem...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129527&amp;title=m-odkaz-definice#129527</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=34602">Petr_K.</a><br /><strong>Předmět:</strong> 34940<br /><strong>Zasláno:</strong> 06.úno.2024 v 10:54<br /><br /><div>Dobrý den,</div><div>lze nějakým způsobem nastavit aby nová definice Modkazu měla v definici textu nastaveno řádkování na hodnotu "přesně"? Prozatím to vždy po vytvoření odkazu musím opravovat a to mě nevyhovuje. Marně toto nastavení hledám.</div><div>Děkuji za radu či pomoc.</div><div>ACLT 2022 na W11profesional.</div><div>Petr K.<br></div>]]>
   </description>
   <pubDate>Tue, 06 Feb 2024 10:54:44 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=34940&amp;PID=129527&amp;title=m-odkaz-definice#129527</guid>
  </item> 
 </channel>
</rss>