<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
<title>SolidEdit in LISP</title>
<link>http://www.zwsoft.com/forum/viewthread.php?tid=2337</link>
<description>[align=left]I have tried to implement solidedit in a lisp.[/align]
[align=left]I want the user to color faces.[/align]
[align=left]The problem is that everytime I select te color and aply it, the dropdown box of solidedit apears and kicks me out of the lisp.
[/align]
[align=left]I want the lisp to continue after the faces have been selected and the color has been picked and aplied..
[/align]

[align=left]Does anybody know what the codeline should be?[/align]

[align=left]I tried several options, but cant get it to work...[/align]

 
[align=left][align=left]Code:  (command &quot;_solidedit&quot; &quot;_face&quot; &quot;_color&quot;)[/align][/align]</description>
<author>JBullseye74</author>
<pubDate>2012-07-23 17:56:27</pubDate>
<item><link>http://www.zwsoft.com/forum/viewthread.php?tid=2337&amp;pid=15552</link>
<description>Hi,
Test this code, if &quot;pause&quot; you change with variable that code would error.
Code:
(defun c:test (/ col)
  (while
    (setq col (getint &quot;\nEnter new color for face object: &quot;))
    (command &quot;_solidedit&quot; &quot;f&quot; &quot;l&quot; pause &quot;&quot; col &quot;&quot; &quot;&quot;)
    ) ; while
  (princ)
  )   ; defun</description>
<author>ravier</author>
<pubDate>2012-07-23 17:59:21</pubDate>
</item>  </channel>
</rss>