You need to do something like

<OBJECT CLASSID="clsid:1833548C-D5ED-406F-993E-1D1AD8EB7CA8" ID=IAXClient
WIDTH=15 HEIGHT=15 >
<EMBED TYPE="application/x-ff-liveapp-transmitter" NAME=IAXClient WIDTH=15
HEIGHT=15>
</EMBED>

</OBJECT>

I do not have the Active-X IAX client so the above CLASSID is wrong.  I am
sure the types are too.

Then to make some things work for need to do something like

Then make some Java script methods to call Active-X methods like

function myClickMeButton()
{
        if (document.IAXClient == null)
        {
                alert(ERR_NOT_LOADED);
                return;
        }
        document.IAXClient.setHost(10.1.1.7);
}

Active-X events look like
<SCRIPT FOR="IAXClient" EVENT="SendError(iReason)">
if (document.all)
{
        showMyErrorMessageFunction("It is broke!!!!!!");
}
</SCRIPT>

Hope that helps get you a start.

Erik

> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Gary
> Sent: Wednesday, July 23, 2003 7:42 PM
> To: [EMAIL PROTECTED]
> Subject: [Asterisk-Users] iaxclient (Activex)
>
>
> I just wondered whether anyone actually got this working and produced a
> how-to ?
>
> I recently had a customer ask about embedding it into their web pages
> for there customers to call them with ??
>
> To be honest I have no idea how etc....
>
>
> Gary
> .
>
>
>
> _______________________________________________
> Asterisk-Users mailing list
> [EMAIL PROTECTED]
> http://lists.digium.com/mailman/listinfo/asterisk-users
>

_______________________________________________
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users

Reply via email to