Robby, your suggestion didn&#39;t work with 5.1.1 under Ubuntu.<div><br></div><div>The difference is that multiple clicks instantiates multiple windows, but none of them were shown on top.</div><div><br></div><div>Anyway I am satisfied with the current state. I can launch other apps using racket/system and they do take focus!</div>

<div>For example I was able to open a file on Gedit:</div><div><br></div><div><br></div><div><div>#lang slideshow</div><div>(require racket/gui racket/system)</div><div><br></div><div><b>(define (launch-app cmd)</b></div>

<div><b>  (system cmd))</b></div><div><br></div><div>(define frame (new frame% [label &quot;Example&quot;]))</div><div><br></div><div>(define msg (new message% [parent frame]</div><div>                 [label &quot;No events so far...&quot;]))</div>

<div><br></div><div>(new button% [parent frame]</div><div>     [label &quot;Click Me&quot;]</div><div>     (callback (λ (button event)</div><div>                 (send msg set-label &quot;Button click&quot;))))</div><div>

<br></div><div>(slide</div><div> #:title &quot;Test&quot;</div><div> (clickback (hyperlinkize (t &quot;Hello&quot;))</div><div>            (λ () (send frame show #t)))</div><div> <b>(clickback (hyperlinkize (t &quot;Gedit&quot;))</b></div>

<div><b>            (λ () (launch-app &quot;gedit /proc/cpuinfo&quot;)))</b>)</div></div><div><br></div><div><br></div><div><br></div>
<div><br></div><div>[]&#39;s</div><div><br clear="all">Rodolfo Carvalho<br>
<br><br><div class="gmail_quote">On Sat, Jun 11, 2011 at 15:57, Robby Findler <span dir="ltr">&lt;<a href="mailto:robby@eecs.northwestern.edu" target="_blank">robby@eecs.northwestern.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">


That does work for me, in the latest pre-release under mac os x. I<br>
have a vague recollection that there was a linux bug related to this<br>
that has been fixed, but I&#39;m not sure.<br>
<br>
One thing to try to work around it (if upgrading isn&#39;t an option) is<br>
to actually create the frame inside the callback:<br>
<div><br>
#lang slideshow<br>
(require racket/gui)<br>
<br>
</div><div>(slide<br>
 #:title &quot;Test&quot;<br>
 (clickback (hyperlinkize (t &quot;Hello&quot;))<br>
            (λ ()<br>
              (define frame (new frame% [label &quot;Example&quot;]))<br>
<br>
              (define msg (new message% [parent frame]<br>
                               [label &quot;No events so far...&quot;]))<br>
<br>
              (new button% [parent frame]<br>
                   [label &quot;Click Me&quot;]<br>
                   (callback (λ (button event)<br>
                               (send msg set-label &quot;Button click&quot;))))<br>
<br>
</div>              (send frame show #t))))<br>
<font color="#888888"><br>
<br>
Robby<br>
</font><div><div></div><div><br>
On Sat, Jun 11, 2011 at 12:10 PM, Rodolfo Carvalho &lt;<a href="mailto:rhcarvalho@gmail.com" target="_blank">rhcarvalho@gmail.com</a>&gt; wrote:<br>
&gt; I tried the following, but the new frame is not shown on top of the slide (I<br>
&gt; need to alt-tab to see it):<br>
&gt;<br>
&gt; #lang slideshow<br>
&gt; (require racket/gui)<br>
&gt; (define frame (new frame% [label &quot;Example&quot;]))<br>
&gt; (define msg (new message% [parent frame]<br>
&gt;                  [label &quot;No events so far...&quot;]))<br>
&gt; (new button% [parent frame]<br>
&gt;      [label &quot;Click Me&quot;]<br>
&gt;      (callback (λ (button event)<br>
&gt;                  (send msg set-label &quot;Button click&quot;))))<br>
&gt; (slide<br>
&gt;  #:title &quot;Test&quot;<br>
&gt;  (clickback (hyperlinkize (t &quot;Hello&quot;))<br>
&gt;             (λ () (send frame show #t))))<br>
&gt;<br>
&gt; Suggestions?<br>
&gt; []&#39;s<br>
&gt; Rodolfo Carvalho<br>
&gt;<br>
&gt;<br>
&gt; On Sat, Jun 11, 2011 at 11:00, Matthew Flatt &lt;<a href="mailto:mflatt@cs.utah.edu" target="_blank">mflatt@cs.utah.edu</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; You could have a clickback in a slide that creates a new frame on top<br>
&gt;&gt; of the Slideshow frame. That approach has worked ok for me.<br>
&gt;&gt;<br>
&gt;&gt; At Fri, 10 Jun 2011 17:58:21 -0300, Rodolfo Carvalho wrote:<br>
&gt;&gt; &gt; Hello everybody,<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Has anyone had the experience of embedding a &quot;live code editor&quot; into<br>
&gt;&gt; &gt; Slideshow?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; I woke up with this idea for a coming presentation, I would talk with<br>
&gt;&gt; &gt; slides<br>
&gt;&gt; &gt; and from time to time I would show a code editor, type, and run a script<br>
&gt;&gt; &gt; (not necessarily racket code) and see the result / show to the audience.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Of course this could be done alt-tabbing out of the presentation, but it<br>
&gt;&gt; &gt; would be cool to have something that follow along the presentation.<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Was it just a crazy dream?<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; []&#39;s<br>
&gt;&gt; &gt;<br>
&gt;&gt; &gt; Rodolfo Carvalho<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
</div></div><div><div></div><div>&gt; _________________________________________________<br>
&gt;  For list-related administrative tasks:<br>
&gt;  <a href="http://lists.racket-lang.org/listinfo/users" target="_blank">http://lists.racket-lang.org/listinfo/users</a><br>
&gt;<br>
</div></div></blockquote></div><br></div>