How to add an SMS option 'as '?

View SMS menu a 'before'. And this may help the user to send SMS as Email, MMS or other message format.

Now, I want to add my format of message for these options, but I have no idea how to do it.

Can anyone give me any suggestions?

There is no API for this.
You can add your own applicationmenuitem using http://www.blackberry.com/developers/docs/6.0.0api/net/rim/blackberry/api/menuitem/ApplicationMenuIt...

Tags: BlackBerry Developers

Similar Questions

  • How to add the pdf option in my Hp solution center when I scan a document

    I have a Hpdeskjet F4235 printer, after a pc repair, that I needed to uninstall my printer and software included. I just reinstalled their album and I have a problem with the (version 11.0) hp Solution Center.

    When I scan a document I have a list of file type that I could use, but the PDF is not available here are the only choices given to me, bmp, tif, jpeg, gif, png, pcx or fpx. How could I add the pdf in the list? Thanks for your help!

    Well you have installed the full features software (or components)?

    The options you mentioned are made available when you click "Scan Picture". So double check if you are clicking the button "scan a Document.

    If this does not help,

    Insert the Cd and then double click left on it, when you do this, you should have an option called 'Install more software'. Please click on that then select "OCR" and install it.

    OCR is a component of software needed to be able to scan to word and pdf file types.

  • How to add a video option to capture the image

    Use a CCD camera to capture the image. I need to add the ability to capture the video image (live) so that I can focus and adjust the image and then capture it for treatment. Y at - it an option. I searched the SDK as well as the camera but did not.

    I guess you want to adjust the focus see streaming in labview (correct me if otherwise). You can easily do this by using a 'acquire' inside a while loop. Use a capture button to exit the while loop and process/save the captured image.

  • HOW TO ADD THE OPTION ' SEND TO '?

    HOW TO ADD A DESTINATION TO THE OPTION ' SEND TO ' WHEN I CLICK ON A FILE RIGHT?

    How to remove and restore the value default Windows 7 send to Menu items
    http://www.SevenForums.com/tutorials/45421-send-context-menu-remove-restore-default-items.html
     
     

     
  • How - to add options for application to the BlackBerry Options

    I generated the example "How - to add application options to the BlackBerry Options" of the knowledge base and run it on a Pearl Flip but I don't see any new added options. I could be looking in the wrong place, but I thought that the sample adds "Options Sample" to the list of options.

    No one knows where to look for the new option added by this example?

    I went back and Setup another entry point recompiled and still can't find where is the new option.

    Thanks Mark. That makes perfect sense as the mail app needs to retrieve incoming messages at any time.

    I've updated my code to close to the bottom of my library of applications by programming, I added a menu too. Is better to be sure that the library is closed and ready for the next event to use it.

  • BlackBerry Smartphones BB8330 Bell v4.3.0.124 - how to add a '1' to the Canada or US long-distance numbers withput the smart dial option?

    Hello... I called Bell to find out how to add a 1 to my long distance numbers and they said go to options > numbering however my BB8330 has no chip / or display option smart dial under "options".  Currently my long distance numbers are programmed in contacts showing the 1-800-XXX-XXXX but when I dial number, the screen don't watch not '1' operator said that the number cannot be completed as composed, please check the number and dial... which means I actually have to dial the number with a '1' myself.  It's a pain.  What is the point of store the reference long distance with a '1' if I have to do this all the time?  Someone at - it a response?  Yet ONCE... my phone is not smart dial option. I tried to find it under other headings, but not luck and can't find anything online that helps so far.

    Thank you!

    Your phone has the option of smart dial.  From the home screen press the green phone button.  Then press menu button (to the left of the trackball) and go to Options.  Then select Smart dial.

  • How to add (Code, opinion, live split) option

    Hello

    I would like to know how to add these options once more on my Dw6, I did something wrong and it disappeared from my dreamweaver and it's so boring for me now.

    Thank you.

    View-->--> Document toolbars

  • How to add "warning message" when someone use the print to pdf option using LC Designer

    I'm using LC designer and try to edit as a pdf to add the warning message while someone using print option

    And I can't understand how to add description when someone does this.

    is this something related to "xfa.host.messageBox ("Blah Blah")"

    Thanks in advance

    Everything you did was rearrange the instructions in the Click event of the button... I am referring to an event called prePrint. This event is called before printing is made... .This is where your message needs to go. Then on the click event, you can have your normal print command. Here is a sample

    Paul

  • How to add menu items in the log of sms and blackberry.

    I want to know is - it possible to add the SMS and phone log menu items.

    Imean to say that if I open the sms and on focusing on one of the sms log I want to show my menu item to merge in blackberry menu items... even in call log history...

    Any help is appreciated if you please give me some examples of code too I will be really grateful...

    I got I solved it by using MENUITEM_PHONE. MENUITEM_MESSAGE_LIST, MENUITEM_SMS_EDIT

  • How to add the option in the SelectItem during execution

    Hello
    Can anyone help me please with this use case?

    I have a list set to the managed bean as below. I want to add new LOV in list (DROP DOWN 2) "ZZZ" based on the value selected in the DROP DOWN 1 on the same page. So that particular one value selected in the DROP DOWN 1, I want to have this new LOV displayed in the DROP DOWN 2. I'm doing it through ValuchangeListener, but I'm not able to find how to add the LOV. Help, please.



    USER INTERFACE
    <!-- DROP DOWN 1 -->
    <af:selectOneChoice label="Order Type" id="soc2" required="true"
                                            validator="#{lovManagedBean.orderTypeValidator}"
                                            binding="#{userAuthentication.orderType}"
                                            autoSubmit="true"
                                            valueChangeListener="#{lovManagedBean.orderTypeValueChangeListener}">                    
                          <f:selectItems id="si2" value="#{lovManagedBean.orderTypeItems}"/>
    </af:selectOneChoice>
    <!-- DROP DOWN 2 -->
    <af:selectOneChoice label="Request Type" id="soc1" required="true"
                                            validator="#{lovManagedBean.requestTypeValidator}"
                                            binding="#{userAuthentication.requestType}">
                                          
                                           
                          <f:selectItems id="si1" value="#{lovManagedBean.requestTypeItems}" />
    </af:selectOneChoice>
    Managed Bean code
      public List<SelectItem> getRequestTypeItems() {
        List<SelectItem> list = new ArrayList<SelectItem>();
    
        list.add(new SelectItem("XXX","XXX"));
        list.add(new SelectItem("YYY","YYY"));
       
       
        this.requestTypeItems = list;
         return list;
      }
    
      public void orderTypeValueChangeListener(ValueChangeEvent event ) {
          System.out.println("+++ Calling LOVManagedBean.orderTypeValueChangeListener()");
          System.out.println("Old Value for order type:" + event.getOldValue() );
          System.out.println("New Value for order type:" + event.getNewValue());
          if(event.getNewValue().equals("Time and Expense")){
            //Code to add LOV in drop down
          }
              
        
      }

    You could make it according to the following example:

    Sample.JSPX:



    xmlns:f = "http://java.sun.com/jsf/core".
    xmlns:h = "http://java.sun.com/jsf/html".
    xmlns:af = "http://xmlns.oracle.com/adf/faces/rich" >




    *
    autoSubmit = 'true' immediate = "true".
    * valueChangeListener = "#{pageFlowScope.SampleBean.onValueChangeListener}" > *.
    **
    **
    **
    *
    * partialTriggers = "soc1."
    * Binding = "#{pageFlowScope.SampleBean.selectOneChoice2}" > *.
    *
    * id = "si3" / > *.
    **



    * SampleBean.Java: *.

    import java.util.ArrayList;
    import java.util.List;

    Import javax.faces.event.ValueChangeEvent;
    Import javax.faces.model.SelectItem;

    Import oracle.adf.view.rich.component.rich.input.RichSelectOneChoice;

    public class SampleBean {}
    Private RichSelectOneChoice selectOneChoice2;

    public SampleBean() {}
    DataSource.Add (new SelectItem ("XXX", "XXX"));
    DataSource.Add (new SelectItem ("YYY", "YYY"));
    System.out.println ("to the constructor");
    }

    Private list datasource = new ArrayList ();
    private SelectItem newSelectItem = new SelectItem ("ZZZ", "ZZZ");

    * public Sub onValueChangeListener (ValueChangeEvent valueChangeEvent) {*}
    * if (valueChangeEvent.getNewValue () .equals ("Add") == true) {*}
    * System.out.println("::: Adding new select item choice"); *
    * datasource.add (newSelectItem); *
    *} else {*}
    * if (valueChangeEvent.getNewValue () .equals ("JustSelect") == true) {*}
    * System.out.println("::: Removing the added select item choice"); *
    * datasource.remove (newSelectItem); *
    * System.out.println (datasource.size ()); *
    *}*
    *}*
    * this.selectOneChoice2.setValue (datasource); *
    *}*

    public void setDatasource (the list data source ) {}
    This.DataSource = data source;
    }

    public getDatasource() {list
    Returns the data source;
    }

    public void setSelectOneChoice2 (RichSelectOneChoice selectOneChoice2) {}
    this.selectOneChoice2 = selectOneChoice2;
    }

    public RichSelectOneChoice getSelectOneChoice2() {}
    Return selectOneChoice2;
    }
    }

    * Ensure that the bean is saved in pageFlowScope.*

    Thank you
    Nini

  • How to add a new printer

    Firefox has several options of the printer, but not the one I need to use at home. I just need to know how to add a printer from the drop-down list. Thank you!

    Nevermind, I figured it. Thanks anyway!

  • How to add music to iTunes without copying the music files

    How to add music to iTunes without music copied to an iTunes Media folder or anywhere else?

    I read the answer is to go into the advanced settings and uncheck "Copy files to iTunes Media when adding to library". Which is excellent and this option is not checked, but iTunes keep copy of the music into an iTunes Media folder...

    Anything ripped CD, converted, downloaded from the iTunes Store or added via the automatically add to iTunes folder will eventually iTunes Media. If you add a folder of files stored outside the media folder and the option is disabled, then iTunes should not be generating copies in the media folder. Can you describe a specific example where you can see the new arrival before and after importation?

    As a backup to one side and the migration of an iTunes library is much easier if all the content is organized inside the iTunes Media folder, but this is no reason not to try and find out why things are not behave correctly for you now.

    TT2

  • How to add a hyperlink while composing emails in iOS 9.2?

    How can I add a hyperlink while composing electronic on an iOS 9.2 device?

    You can type the link in the email, or if you are on a site that has a link you want to send, press on and hold on the link until you get the option of copy of the pop-up window, select the option copy, then press and hold in the body of the email in order to paste it.

    Like this.

    How to add a hyperlink while composing emails in iOS 9.2?

  • How to add an attachment to a message. (Mac)

    Can someone tell me how to add an attachment to a message here?

    I'm trying a newspaper to help find where this problem of hanging of Skype, but I can't see how to tie.

    Please edit your post and now you should see the option to add attachments.

  • How to add songs to itunes?

    How to add songs to itunes? Drag and drop in windows media player does not work.

    To add a song from iTunes:

    1. right click on the song in iTunes and select the option that says SHOW IN WINDOWS EXPLORER
    2. a windows Explorer window opens with the song, you can then copy (Ctrl + C) and paste (Ctrl + V) in the folder MUSIC of Walkman

    I hope this helps.

Maybe you are looking for

  • Problem with registration download option

    When you download a file of any type, "do this automatically for files like this in the future" is greyed out and I can't click on it. I run Firefox in safe mode and remove my preferences, but it does not solve the problem. Firefox version 3.6

  • Qosmio X 770-107 - question GPU acceleration and low of the FPS game while

    Hi all As everyone knows (i) hope including Toshiba tech we face breakdowns of sparks/Framerate GPU limitation/Low FPS during the game, even in the game of old or new brand and down or in the highest video settings. So lets start with the history of

  • HEXAGONAL problem

    Hi again, I could really do with some help regarding sending the commands by using the code display string. Basically, I need to send a string of HEX 02 08 00 00 00 20 00 03 xx xx to device bluetooth as a command. The xx represents the changing data

  • How do I turn off the sound when one take a picture in the acer iconia a1 830

    I want to mute the sound when I take a photo in the acer iconia a1 830. This is my first time that i use this tablet, and I do not have this problem. I try to lower the sound level maximum. and I can hear the sound. This problem is very basic, and I

  • play games mindjolt on facebook

    Please can someone help I can not play mindjolt games on facebook