[Asterisk-Users] iaxclient (Activex)

Erik Anderson eanders at midco.net
Thu Jul 24 12:55:49 MST 2003


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: asterisk-users-admin at lists.digium.com
> [mailto:asterisk-users-admin at lists.digium.com]On Behalf Of Gary
> Sent: Wednesday, July 23, 2003 7:42 PM
> To: asterisk-users at lists.digium.com
> 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
> Asterisk-Users at lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
>




More information about the asterisk-users mailing list