Hey ive follow your instructions, but when i call f.login(user, password, username)
i got
Uncaught TypeError: this.flashObject.login is not a function
here is my code
index.html
<body>
<div id="phone"/>
</body>
index.js
var f = new flashPhone('0.0.0.0:1935', 'phone', {
pathToFreeswitchSwf: '/public/javascripts/',
onInit:function(){
console.log('flashPhone Initialized');
f.login('1001@0.0.0.0', '1234', 'local');
},
onConnected:function(evt){ console.log('flashPhone connected'); }
});
Is there something im missing here??
thanks alot
Hey ive follow your instructions, but when i call f.login(user, password, username)
i got
here is my code