Hi Esteban. I was just trying to see why primitiveBeep was not working for Cocoa VMs and I found that ioBeep() was empty. I first tried to copy the code from carbon VMs (using SysBeep) but it seems not to be present anymore in Cocoa. Then I found the new way was using NSBeep(). So I modified sqSqueakMainApplication+sound.m  to look like:<br>
<br><br>#import &quot;sqSqueakMainApplication+sound.h&quot;<br><br>@implementation sqSqueakMainApplication (sound)<br>- (void) ioBeep {<br>    <br>    NSBeep();<br>    return 0;<br>    <br>}<br>@end<br><br><br>And now it seems to be working.  I have never commit anything in platform code so I have no idea whether this is correct or not. <br>
<br>Thanks<br clear="all"><br>-- <br>Mariano<br><a href="http://marianopeck.wordpress.com" target="_blank">http://marianopeck.wordpress.com</a><br><br>