<div dir="ltr"><div>I've been getting into ltk, since I wanted to do some GUI programming again. I'm currently trying some things, one of them being changing the color of a button. This should be possible becaus of this bit of <a href="http://www.peter-herth.de/ltk/ltkdoc/node18.html">documentation</a>. But it is not really specified how I could do it. I've tried with 'configure' and I tried in the initialization code and even in the 'pack' function, but it does not seem to work. It might be nice if the documentation told me how to do this. <br></div><div><br></div><div>The working code looks like this. How do I change the color of the button?</div><div><br></div><div>```</div><div>(with-ltk ()<br>  (let* ((frame (make-instance 'frame))<br>          (button (make-instance 'button<br>                                                                         :master frame<br>                                                                      :text "Hello, World"<br>                                                                     :command (lambda () (print "Hello, World")))))<br>    (pack frame)<br>    (pack button)))</div><div>```</div><div><br></div><div>Thanks in advance for any help. <br></div><div><br></div><div>Greetings,</div><div>Tom<br></div></div>