ranma, Thanks for the information! I will definitely use this now! <img src="smileys/smiley1.gif" border="0" align="middle" />.
If you wouldn't mind the bother a few more questions..
Have you tried any of the other API's that you could enlighten me with?
I understand programming languages, I'm just not the best with JavaScript. Even though its very similar to ActionScript, my Favorite programming language.
The CallJS plugin needs to call the function name,
So for example if I wanted to use this api:
document.addEventListener("appMobi.notification.push.enable",notificationsRegistered,false);
AppMobi.notification.addPushUser("userID","newpassword","newEmail@test.com");
var notificationsRegistered=function(event)
{
if(event.success===false)
{
if( !didcheckuser )
{
AppMobi.notification.checkPushUser(?userID?,"newpassword");
didcheckuser = true;
}
else
{
alert("There was an error adding push notifications "+ event.message);
}
return;
}
alert("Notifications Enabled");
}
There is no function name for me to call is there?
thanks.