1

Requirement: when the user presses enter on e.g. bbApp001://screen1?param1=1234567890?param2=12345678

where bbApp001 is one of the apps in the device; screen1 is one of the screens that is created in the app; and param1 is the first param that is sent along with the link and same with the param 2.

In a BBM message or in the email the corresponding application will be invoked with that as context.

  1. how to detect custom urls(bbApp001://screen1) of a third party application from an email or bbm link in blackberry
  2. if above can be done then how to send content with links to email and bbm so that when a user click the corresponding app is launched
    Note: for the first - I have tried to launch from another application using ApplicationManager.getApplicationManager().launch("bbApp001?screen1&param1") but my requirement is to trigger/invoke the app once the user click on email or bbm message.
sooper
  • 5,991
  • 6
  • 40
  • 65
  • Take a look to content handler api – Eugen Martynov Dec 17 '12 at 08:26
  • how to add and invoke from an email and bbm message – user1743243 Dec 18 '12 at 03:09
  • as soon as user press it it will invoke appropriate content handler – Eugen Martynov Dec 18 '12 at 07:47
  • @EugenMartynov
    Jus a few queries
    1.how to add a custom url to a bbm message and email and give a click functionality for eg: if I add the below code and send, I am not able get as html content
    click
    – user1743243 Dec 18 '12 at 08:32
  • My fault it's not CHAPI API. Take a look on these two links: http://supportforums.blackberry.com/t5/Java-Development/Custom-Protocol-Handler/td-p/335240, http://www.blackberry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/How_to_-_Leverage_pattern_matching_in_BlackBerry_smartphone_applications_to_provide_an_integrated_user_experience.html?nodeid=1234285&vernum=0 – Eugen Martynov Dec 18 '12 at 08:41
  • @EugenMartynov I had come across these links before but I wasn't sure how to test, integrate and achieve to my requirement. Anyway, thnx for taking time to reply, I shall analyze and post the queries if any as I come across. Thnx again. – user1743243 Dec 18 '12 at 09:03

1 Answers1