Hi guys, I need to install " Call Block", but my Pre2 has been updated to 2.2.4.
I can not find out how to install it in 2.2.4, any one has ideas?
Thank!
-------------------------------------------
found answer myself:
OK sorry for delay, was quite busy last couple of days
I think I cracked this one now
In:
/usr/palm/applications/com.palm.app.phone/phonePopups/sources/IncomingCallImpl.jsjsjs
In:
create: function() {
After:
var call = this.incomingLine.calls[0];
Add:
Quote:
//Herrie
if ((call.contact.name == "Do Not Answer") || (call.contact.addressFormatted == "undefined") || (call.contact.address == "undefined") ||(call.contact.addressFormatted == null) || (call.contact.address == null) || (call.contact.addressFormatted == "") || (call.contact.address == "") || (call.contact.addressFormatted == "unknown") || (call.contact.address == "unknown")|| (call.contact.addressFormatted == "unknown caller") || (call.contact.address == "unknown caller") || (call.contact.addressFormatted == "blocked caller") || (call.contact.address == "blocked caller") )
{
enyo.application.CallSynergizer.callIgnore(this.incomingLine.calls[0]);
this.exitStatus = "ignore";
this.announceIgnored();
close();
}
//Herrie
This should give you the same functionality as the callblocklistandunknown.patch