<?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 : bleader</title>
  <link>https://www.cadforum.cz/forum/</link>
  <description><![CDATA[Toto je XML obsahový kanál serveru; CAD F&#243;rum : CAD programov&#225;n&#237; : bleader]]></description>
  <pubDate>Tue, 09 Jun 2026 23:15:29 +0000</pubDate>
  <lastBuildDate>Fri, 30 May 2008 15:05:05 +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=6559</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[bleader : ad 1) ale on ji zn&#225; - jinak by...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=6559&amp;PID=31850&amp;title=bleader#31850</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> 6559<br /><strong>Zasláno:</strong> 30.kvě.2008 v 15:05<br /><br /><P>ad 1) ale on ji zná - jinak by nešla spustit; to hlášení je zřejmě z pokusu o opakování příkazu (někde je Enter navíc)</P><P>ad 2) nejlépe je (pokud to jde) požadované body zadávat mimo (před) spuštěním samotné funkce (command)</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 30 May 2008 15:05:05 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=6559&amp;PID=31850&amp;title=bleader#31850</guid>
  </item> 
  <item>
   <title><![CDATA[bleader : Vytvo&#345;il jsem novou fci bleader: (defun...]]></title>
   <link>https://www.cadforum.cz/forum/forum_posts.asp?TID=6559&amp;PID=31844&amp;title=bleader#31844</link>
   <description>
    <![CDATA[<strong>Autor:</strong> <a href="https://www.cadforum.cz/forum/member_profile.asp?PF=46">Ferdinand</a><br /><strong>Předmět:</strong> 6559<br /><strong>Zasláno:</strong> 30.kvě.2008 v 11:35<br /><br />Vytvořil jsem novou fci bleader:<DIV><FONT color=#0000ff>(defun C:bleader<BR>&nbsp;&nbsp; (/ MM ORM SNM GRM KROK RASTR VLBL OB KR DG ZB)</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (setq ORM (getvar "orthomode"))<BR>&nbsp; (setq SNM (getvar "snapmode"))<BR>&nbsp; (setq GRM (getvar "gridmode"))<BR>&nbsp; (setvar "osmode" 55)<BR>&nbsp; (setvar "attdia" 0)<BR>&nbsp; (if (/= ORM 0)<BR>&nbsp;&nbsp;&nbsp; (setvar "orthomode" 0)<BR>&nbsp;&nbsp;&nbsp; nil<BR>&nbsp; )<BR>&nbsp; (setq MM (getvar "dimscale"))<BR>&nbsp; (setq KROK (getvar "snapunit"))<BR>&nbsp; (setq RASTR (getvar "gridunit"))<BR>&nbsp; (setq OB (strcase "FBM-DET_4"))<BR>&nbsp; (setq KR (strcase "FBM-DET_0"))</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (command "_snap" "10" "" "_grid" "100" "")<BR>&nbsp; (if (/= SNM 1)<BR>&nbsp;&nbsp;&nbsp; (setvar "snapmode" 1)<BR>&nbsp;&nbsp;&nbsp; nil<BR>&nbsp; )<BR>&nbsp; (if (/= GRM 1)<BR>&nbsp;&nbsp;&nbsp; (setvar "gridmode" 1)<BR>&nbsp;&nbsp;&nbsp; nil<BR>&nbsp; )</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (initget "D K")</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (setq keypart (getkword "\nPoložka bude v &#091;obDélníku/Kroužku&#093;: &lt;K&gt; "))<BR>&nbsp; (if (= keypart nil)<BR>&nbsp;&nbsp;&nbsp; (setq keypart "K")<BR>&nbsp; )</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (cond&nbsp;((= keypart "D")<BR>&nbsp; (setq VLBL OB)<BR>&nbsp; (setq part 1)<BR>&nbsp;)<BR>&nbsp;((= keypart "K")<BR>&nbsp; (setq VLBL KR)<BR>&nbsp; (setq part 2)<BR>&nbsp;)<BR>&nbsp; )</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (command "_leader"<BR>&nbsp;&nbsp;&nbsp; pause<BR>&nbsp;&nbsp;&nbsp; pause<BR>&nbsp;&nbsp;&nbsp; (setq ZB (getvar "lastpoint"))<BR>&nbsp;&nbsp;&nbsp; "_F"<BR>&nbsp;&nbsp;&nbsp; "_N"<BR>&nbsp;&nbsp;&nbsp; "_A"<BR>&nbsp;&nbsp;&nbsp; ""<BR>&nbsp;&nbsp;&nbsp; "_B"<BR>&nbsp;&nbsp;&nbsp; (setvar "orthomode" 1)<BR>&nbsp;&nbsp;&nbsp; VLBL<BR>&nbsp;&nbsp;&nbsp; "_PS"<BR>&nbsp;&nbsp;&nbsp; MM<BR>&nbsp;&nbsp;&nbsp; ZB<BR>&nbsp;&nbsp;&nbsp; MM<BR>&nbsp;&nbsp;&nbsp; MM<BR>&nbsp;&nbsp;&nbsp; pause<BR>&nbsp; )</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (setvar "osmode" 39)<BR>&nbsp; (setvar "orthomode" ORM)<BR>&nbsp; (setvar "snapmode" SNM)<BR>&nbsp; (setvar "gridmode" GRM)<BR>&nbsp; (setvar "snapunit" KROK)<BR>&nbsp; (setvar "gridunit" RASTR)</FONT></DIV><DIV><FONT color=#0000ff>&nbsp; (redraw)<BR>&nbsp; (princ)<BR>)</FONT></DIV><DIV><BR>která při provádění na p.ř. píše hlášku (při startu fce)</DIV><DIV><EM>Command: _BLEADER Unknown command "BLEADER".&nbsp; Press F1 for help.</EM></DIV><DIV>a pak ještě další hlášku (za výzvou k zadání názvu bloku)</DIV><DIV><EM>"1.dwg": Can't find file in search path:</EM></DIV><DIV><EM>C:\...</EM></DIV><DIV><EM>...</EM></DIV><DIV>1. Jak lze docílit, aby znal i uživatelsky nadefinované fce?</DIV><DIV>2. Potřebuji, aby při zadání vynášecí čáry byla orthomode=0 a při zadávání otočení byla orthomode=1.</DIV>]]>
   </description>
   <pubDate>Fri, 30 May 2008 11:35:16 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum/forum_posts.asp?TID=6559&amp;PID=31844&amp;title=bleader#31844</guid>
  </item> 
 </channel>
</rss>