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 .
Hi, Do you have a link with this? I'm interested too to integrate it in my Home Automation framework. Thanks, Dan ----- Original Message ----- From: "Gary" <gary@ausmail.com> To: <asterisk-users@lists.digium.com> Sent: Thursday, July 24, 2003 3:41 AM 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@lists.digium.com > http://lists.digium.com/mailman/listinfo/asterisk-users > >
Hello all, Can I use asterisk to call party A then call party B and finally connect party A to party B, so they can talk to each other? Is this possible? Thanks Foong
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@lists.digium.com
> [mailto:asterisk-users-admin@lists.digium.com]On Behalf Of Gary
> Sent: Wednesday, July 23, 2003 7:42 PM
> To: asterisk-users@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@lists.digium.com
> http://lists.digium.com/mailman/listinfo/asterisk-users
>