<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7650.28">
<TITLE>Squeak and Skype</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->
<BR>

<P><FONT SIZE=2>Hi All!<BR>
I'm playing with Squeak and Skype APIs for personal goals, I'm not a COM/.Net guru, I don't know almost anything of the Microsoft world, but following John Pierce's instructions here: <A HREF="http://www.visoracle.com/squeakfaq/com-activex.html">http://www.visoracle.com/squeakfaq/com-activex.html</A> and here: <A HREF="http://www.saltypickle.com/SqueakDotNet/">http://www.saltypickle.com/SqueakDotNet/</A> I was able to make talk Squeak and Skype.<BR>
First of all you should download the latest version of Skype4COM (<A HREF="https://developer.skype.com/Download?action=AttachFile&do=get&target=Skype4COM-1.0.26.0.zip">https://developer.skype.com/Download?action=AttachFile&do=get&target=Skype4COM-1.0.26.0.zip</A>), unzip it and use the tlbimp utility on Skype4COM.dll to create a .Net wrapper (SKYPE4COMLib.dll) move it in the Squeak directory for ease of use.<BR>
<BR>
Now launch Skype and Squeak, open a workspace and paste this:<BR>
<BR>
DotNet Assembly loadFrom: 'SKYPE4COMLib.dll'.<BR>
skype := DotNet SkypeClass new.<BR>
skype placeCall:'echo123'.<BR>
<BR>
to place a call on the skype testing user.<BR>
<BR>
If you have skype credit, you can also try this:<BR>
skype sendSms:'0123456789' with:'Squeak rocks!!'.<BR>
<BR>
Have fun ;-)<BR>
&nbsp;Davide<BR>
</FONT>
</P>

</BODY>
</HTML>