Do I need to add anything to firefox for Instant Messaging?

I have sent many IM's using various websites, but never gotten a reply, even though the recipient is supposedly connected for IM. Do I need to change any settings or install an add on. I use windows 7 pro 64. and always keep firefox updated. Thanks in advance

Thank you for your question, I understand that you are asking if there is an extension or install needed to support instant messaging in Firefox. No it does not. However there is a possibility that something might be blocked.
*Does this happen in all chat messengers?
*Are you using a proxy for your internet browsing? If so check to see if IM is blocked here as well.

Similar Messages

  • I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

    I was told I need to remove the enterprise server account I have and need to add a new one for work but the IT person did not tell me how to do this.  Can anyone help?

        Jennymbell, never fear help is here!
    Have you tried contacting your IT department for assistance? You can visit http://bit.ly/QECbGh for steps on how to enterprise activation.
    Keep me posted if you need further assistance.
    John B
    Follow us on Twitter @VZWSupport

  • Need to add xml tag in the request message

    Hello Experts,
    Need ur help.
    Right now i am working on the scenario Http -> to -> Proxy.
    Whatever request i am getting is not having XML tag in it, and because of that my mapping is failing.
    Can you tell me that how can i add XML tag in my request so it will not fail in Mapping?
    Need to add : <?xml version="1.0" encoding="UTF-8"?> in request.
    Thanks,
    Hetal

    HI Hetal
    Instead of adding this to the source message. Remove this tag from mapping.
    Use a XSLT mapping without this initial tag. it will work.
    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:m="http://namespace">
    <xsl:output method="xml" version="1.0" encoding="UTF-8" indent="no"/>
    <xsl:template match="/">
    <xsl:for-each select="//tag">
    <xsl:value-of select="." disable-output-escaping="yes"/>
    </xsl:for-each>
    </xsl:template>
    </xsl:stylesheet>
    Use this mapping without
    <?xml version="1.0" encoding="UTF-8"?>
    If you still see XML tag then use
    <xsl:output method="html"
    instead of
    <xsl:output method="xml"
    Thanks
    Gaurav

  • How to see & manage adds-in in Firefox for tablet?

    I don't see where to check which application add-ins are active and which version.

    The Add-on Bar gives you quick access to add-on features.
    '''Show or hide the Add-on Bar?'''
    If you don't have any add-ons that use the Add-on Bar, it won't be shown by default but you can easily show or hide it whenever you want.
    To show or hide the Add-on Bar, right-click on an empty section of the Tab Strip and check or uncheck it in the pop-up menu.
    If the Add-on Bar is open already, you can close it by clicking on the close icon on the bar itself.
    You can also use the keyboard shortcut Ctrl + /.
    Also to know how to find and install add-ons to add features to Firefox
    click [https://support.mozilla.org/en-US/kb/find-and-install-add-ons-add-features-to-firefox Here] .
    To know more about Add-on Bar Click [https://support.mozilla.org/en-US/kb/add-on-bar-quick-access-to-add-ons Here!]

  • I need a different version of Firefox for work. 4.0 isn't working correctly with my work program and I don't know how to download an older version.

    I have an online job that requires me to use a different version of firefox. My computer already has 4.0 on it and I need to know how to change it to an older version so I can use it for work.

    http://support.mozilla.com/en-US/kb/Installing+a+previous+version+of+Firefox
    http://www.mozilla.com/en-US/firefox/all-older.html

  • Need to add any Pointer/Bookmark for the Hyphenated words

    Dear Experts,
    Im very new to Scripting.
    I'm creating a Validation tool which shows hyphenated words in a ListBox & i done it well in VB6.
    Now all my need is i have to jump to the location in the document while clicking the ListBox Item.
    Is there any options to do this?
    Looking forward your comments.
    Thanks in advance.
    SaRaVaNaN.N

    Hi Try this code...
    I created this for windows XP, Indesign CS4.
    #targetengine "session";
    var myDoc = app.activeDocument;
    var stories = myDoc.stories.everyItem ().getElements ();
    var myFind = new Array(); var myCounter = 0;
    var times1, times2;
    times1 = new Date().valueOf();
    //-----------------------------For display---------------
    var w = new Window ("palette", "Hyphenated words");
    var list = w.add ("listbox", undefined, "", {numberOfColumns: 1, showHeaders: true,columnTitles: ["Hyphenated Word"], columnWidths: [185]});
        list.maximumSize.height = $.screens[0].bottom-200;
    var myStory_id = new Array(); var myitem_id = new Array();
    main();
    times2 = new Date().valueOf();
    var timeTaken = ((times2-times1)/1000);
    displayWindow();
    if (myCounter > 0){
    w.show();
    else { alert("Double Hypehnation Not Found"); }
    function main(){
        var lineCount;
        myResetFindChangeGrep ();
        app.findGrepPreferences.findWhat = "(\\w+)([-~=])(\\w+)";
        var myIndex = new Array();
        for (i=0; i<stories.length; i++){
            myFind[i] = stories[i].findGrep(true);
            for (j=0; j<myFind[i].length; j++){
                lineCount = myFind[i][j].lines.length;
                if (lineCount>1){               
                    var story_id = i; var myFind_id = j;
                    var myText = myFind[i][j].contents;
                    addItem(myFind[i][j], i, j);
                    myCounter++;
                    }//End if
                }//End of Find Length
            }//End Story length
        //alert(myIndex.length);
    //------------------------Function Declarations--------------
    function displayWindow(){
        //window declared as global variable here
        var panel1 = w.add('panel');
        panel1.minimumSize.width = 210;
        var group1 = panel1.add('group');
            group1.orientation ='row';
        var close_ = group1.add ("button", undefined, "Close", {name: "ok"});
        group1.add("statictext", undefined, "Fetched in "+timeTaken+" sec");
            close_.maximumSize.width = 44;
        list.onDoubleClick = function ()
                if (this.selection != null ) {
                var myIndex = this.selection.index;
                var storyNum = myStory_id[myIndex];
                var findNum = myitem_id[myIndex];
                var selectText = myFind[storyNum][findNum];
                app.select (selectText, SelectionOptions.replaceWith);
                app.activeWindow.zoomPercentage = 200;
        close_.onClick = function () {w.close ()}
    function addItem(myItem, sto_id, item_id){
        list.add ("item", myItem.contents);
        myStory_id .push(sto_id);
        myitem_id .push(item_id);
    function myResetFindChangeGrep(){
        app.findGrepPreferences = NothingEnum.nothing;
        app.changeGrepPreferences = NothingEnum.nothing;
        app.findTextPreferences = NothingEnum.nothing;
        app.changeTextPreferences = NothingEnum.nothing;
    Green4ever

  • I need an older version of firefox for my company's learning module. They only support firefox 2 can you tell me how to get?

    Am unable to open material with newer browser versions. How can I get an older version?

    You can use the portable Firefox 2 version for such sites.
    See:
    * http://portableapps.com/apps/internet/browsers/portable_firefox
    You can find the portable Firefox 2.0.0.20 version under "Mozilla Firefox, P.E. Legacy > Mozilla Firefox":
    * http://sourceforge.net/projects/portableapps/files/Mozilla%20Firefox%2C%20P.E.%20Legacy/

  • I need to download 32 bit Firefox for chemdraw(application), but can only install 64 bit. Is there any way to manually download 32 bit Firefox?

    Hello, I am currently using Connect.com as a chemistry supplement, but cannot answer some questions because its ChemDraw application cannot be accessed through 64 bit as I am told.
    I am wondering how to download and install the 32 bit version of Firefox.

    Unless you specifically download a BETA x64 bit, all downloads are x32. There is no official x64 support for Windows yet. Which version do you want to download? The latest is available at http://www.mozilla.org/en-US/firefox/new/. Beta and Nightly at http://www.mozilla.org/en-US/firefox/channel/

  • List of .jar file need to add in web application by using eclipse europa?

    hi
    what are the list of .jar file need to be added in web application which use the ide of Eclipse Europa?

    Depends on the application requirements. For a basic JSP/Servlet application just integrate Tomcat in Eclipse and assign it as application server to your web project, then you don't need to add anything. If you for example need JSF, then you should add its JAR's to the classpath of the web project, which is by default /WEB-INF/lib.

  • How to find end of the Page in Crystal ? or I need to add one Horizontal line at the end of the page.--- URGENT HELP NEEDED

    Hi friends,
    I need to add one horizontal line  for the detail section at the end of the page.
    I tried to put that line in page footer and i tried with Box also. Both are not properly working. Some space problem is coming.
    Is there any feature to find end of the Page.
    I want report format like this.
    set id  |  set name |  date  Name
      1         x           dddd   vijay
                            dddd   sarathi
                            dddd    reddy
    (End of the page)
    Thanks in advance...
    vijay.

    Do you know how many detail records are showing up per page?
    If you do - you could create a Details B section that is suppressed except for on Record N (where N is a counter, and N is the last Detail record that will show up on a page).
    The Page footer is indeed built so that it will be rendered at the bottom of your physical page of paper.

  • I need to add a PMS and it does not seem available.

    I need to add the color swatch for PMS 7690 U and it is not available it seems. Is there a way to download more PMS colors?

    Yes you cn download the Pantone Plus + Library here and it install it.
    http://www.pantone.com/pages/Pantone/Pantone.aspx?pg=20721&ca=1
    Then 7690 u will be available I had the problem as well when I tried to do a search the reasoonit was not available or is not availbable on your system is that it did not exist before.
    But as you can see it does now.

  • Need to add new line in Service Provider Agreement

    Hi All,
    In Change Service Provider (T Code- EEDMIDESERVPROV02) screen, under the agreement tab (Payment and Billing Data) I need to add the agreement details for respective Service Provider which I am getting through WebService Call (ABAP Proxy).
    Need to update existing or add new record programatically.
    Is there any standard function module or method to do the same ?
    Thanks in advance.

    Hi Ankit,
    There is a standard class for this - CL_ISU_IDE_DEREGSPAGREEMENT, which I believe should help you.
    Regards,
    Asif

  • How  to add a new option for group by in a excel report

    Hi,
    there is a enhancement in a excel report
    I need to add a new option for group by
    help me
    Regards,
    Raghu

    k

  • Add BOM line items for printing those line items in  cs03 transaction

    User will display the BOM line items and when he go by menu path EXTRAS->More-> so at the end of sub menu we need to add one more option for View and Print for that we need to use the menu exit and accordingly we need to add code to capture the related function code and display respective BOM line items in the ALV format. Further on if user wants to print those he should be able to do the same.

    The BOM item node number STPO-STLKN is an 8 digit field therefore I would imagine that you could have a maximum of 99999999 items..
    But you could use multi-level BOMs which would allow you to organise your components better.
    PeteA

  • I need to add bpm to my songs but in some of them i just can't add/modify any info. it seems like it happens only with the verified songs (the ones i download from souncloud work for example) probably verified trough gracenote..is there anything i can do?

    i need to add bpm to my songs but in some of them i just can't add/modify any info. it seems like it happens only with the verified songs (the ones i download from souncloud work for example) probably verified trough gracenote..is there anything i can do?
    this is what happens when i try to add/modify the infos and it doesn't work, i'm even unable to click in the spaces
    thanks for your attention,sorry for the bad english

    Right-click on your main iTunes folder and click Properties, then go to the Security tab and click Advanced. If necessary grant your account and system full control to this folder, subfolders and files, then tick the option to replace permissions on child objects which will repair permissions throughout the library. This is the XP dialog but Windows 7 shouldn't be too different.
    tt2

Maybe you are looking for