Hi, <br><br>I&#39;ve got a weird problem that the arrows not appearing when I draw a graph.<br><br>They appear, though not fully when I mouseover a node. <br><br>As graph.ss seems to work fine with the module browser, I&#39;m guessing I&#39;ve done something wrong - Does anyone have any hints? 
<br><br>I have some sample code below. <br><br>Cheers,<br><br>Stephen<br><br>-snip of my code-<br>&nbsp; (define the-editor-canvas (instantiate editor-canvas% (the-vertical-pane)))<br>&nbsp; <br>&nbsp; (define the-graph-pasteboard (instantiate (graph-pasteboard-mixin pasteboard:basic%) ()))
<br>&nbsp; (send the-editor-canvas set-editor the-graph-pasteboard)<br>&nbsp; <br>&nbsp; (define my-graph-snip% (graph-snip-mixin string-snip%))<br><br>&nbsp; (define (connect parent child)<br>&nbsp;&nbsp;&nbsp; (define dark-pen (send the-pen-list find-or-create-pen &quot;blue&quot; 1 &#39;solid))
<br>&nbsp;&nbsp;&nbsp; (define dark-brush (send the-brush-list find-or-create-brush &quot;blue&quot; &#39;solid))<br>&nbsp;&nbsp;&nbsp; (define light-pen (send the-pen-list find-or-create-pen &quot;light blue&quot; 1 &#39;solid))<br>&nbsp;&nbsp;&nbsp; (define light-brush (send the-brush-list find-or-create-brush &quot;light blue&quot; &#39;solid))
<br>&nbsp;&nbsp;&nbsp; (add-links parent child<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dark-pen light-pen<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dark-brush light-brush))<br>&nbsp; <br>&nbsp; (define aaa (make-object my-graph-snip% &quot;aaa&quot;)) <br>&nbsp; (define bbb (make-object my-graph-snip% &quot;bbb&quot;)) 
<br>&nbsp; (define ccc (make-object my-graph-snip% &quot;ccc&quot;)) <br>&nbsp; (define ddd (make-object my-graph-snip% &quot;ddd&quot;)) <br>&nbsp; <br>&nbsp; (send the-graph-pasteboard insert aaa)<br>&nbsp; (send the-graph-pasteboard insert bbb)
<br>&nbsp; (send the-graph-pasteboard insert ccc)<br>&nbsp; (send the-graph-pasteboard insert ddd)<br>&nbsp;&nbsp;&nbsp;   <br>&nbsp; (send the-the-frame show #t) <br>&nbsp;&nbsp; <br> &nbsp; (define-values (width height) (send the-editor-canvas get-client-size))<br>
<br>&nbsp; (printf &quot;width:~a height:~a&quot; width height)<br>&nbsp; (define (random-position extent)<br>&nbsp;&nbsp;&nbsp; (+ 30 (random&nbsp;(- extent 60)))<br>&nbsp;&nbsp;&nbsp; )<br>&nbsp; (send the-graph-pasteboard move-to aaa (random-position width) (+ 30 (random&nbsp;(- height 60))))
<br>&nbsp; (send the-graph-pasteboard move-to bbb (+ 30 (random&nbsp;(- width 60))) (+ 30 (random&nbsp;(- height 60))))<br>&nbsp; (send the-graph-pasteboard move-to ccc (+ 30 (random&nbsp;(- width 60))) (+ 30 (random&nbsp;(- height 60))))<br>&nbsp; (send the-graph-pasteboard move-to ddd (+ 30 (random&nbsp;(- width 60))) (+ 30 (random&nbsp;(- height 60))))
<br>&nbsp; (connect aaa bbb)<br>&nbsp; (connect ccc bbb)<br>&nbsp; (connect ddd bbb)<br>&nbsp; (connect aaa ddd)<br>&nbsp; <br><br>--<br>Stephen De Gabrielle<br><a href="mailto:s.degabrielle@ucl.ac.uk">s.degabrielle@ucl.ac.uk</a><br>Telephone +44 (0)20 7679 5242 (x45242)
<br>Mobile&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;079 851 890 45<br><a href="http://www.uclic.ucl.ac.uk/annb/MaSI.html">http://www.uclic.ucl.ac.uk/annb/MaSI.html</a><br>University College London Interaction Centre<br>Remax House - 31/32 Alfred Place
<br>London - WC1E 7DP