Instant messenger

Can you chat using AIM or yahoo messenger on your iphone? Most of the smart phones and PDA's have them even the sidekicks but iphone doesnt? Is there a way to get those progs installed into the Iphone?

yeah you can. i recommend flickIM

Similar Messages

  • I need help with resetting my ichat. When i try to login now it wont let me... it says "AOL Instant Messenger password" and then "iChat can't log in to ... because your login ID or password is incorrect. How do I reset this if I cant log in?

    I need help with resetting my ichat. When i try to login now it wont let me... it says "AOL Instant Messenger password" and then "iChat can't log in to ... because your login ID or password is incorrect. How do I reset this if I cant log in? When I try to press online the same thing pops up and I have no way of logging in or asking for help.

    Hi,
    iChat (it would help to know which version) can accept Apple IDs as valid AIM Screen Names.
    However if you have iChat 5 or earlier you cannot use ones ending in @me.com or @icloud.com issued by iCloud. (they can be used in iChat 6 or Messages as these versions make a double login to AIM and Apple to allow the use of the password).
    In addition if you are using an Apple ID for an AIM Screen Name the password still needs to keep to the 16 character limit that AIM has.
    AN @mac.com name can be used on any version of iChat  (Until the 30th June 2014)
    As it does not need a double check with Apple you can use it to log in to the AIM Web pages
    Login here with an AIM Name registered at AIM or and @mac.com name and see if you get any suspended account messages.
    Sometimes account can be suspended. Usually because something has triggered the "Unusual Activity" item.
    About a year ago many @mac.com users that travelled out of their own country found themselves suspended when they got home.
    If the Name checks out of if an Apple ID the password in known to be 16 characters or Less then do this:-
    In Lion upwards open a Finder Window and use the Go Menu whilst holding down the ALT key.
    Select the Library that appears in the menu list.
    Navigate to Preferences.
    (If you have version earlier than Lion the just navigate to ~/Library/Preferences (that's the Library in you Home - Little House icon - folder)
    Fnd com.apple.ichat.aim.plist (even if you are using Messages)
    Drag the file to the Trash and Restart the app.
    7:39 pm      Thursday; May 29, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • Little bit of thread and little bit of instant messenger design problem

    OK! i have a small problem here, i am planning on making a instant messenger server and client, not compatible with any out there(as of yet) and not using any stansard protocols out there, just something i made on my own. ok now the problem i am trying to figure out is....i have a "Messaging Server" as the name suggests it sends messages from one client to the other, how it is setup is, client connects to this server, the server accepts and creates a new thread for this client and adds a message listener to this client handler thread. as and when the server creates this thread for the client, it puts it in a vector which is keeping track of every client connected to this server. so now when the client sends a message to another client, basically it goes through this server, the thread upon receiving this message, fires a method of the listener. this method takes the message, finds out who it is going to(therefore the userid) and seaches the threads vector to find the appropriate thread and then just creats another striped down message out of the received message and calls a method in that thread to send this newly created message and hence the message should be sent.(i am speculating, i still have not created this)
    so the problem ia m logically facing is...at what point of time who is taking the load, what i mean by that is, when the thread receives the message, ofcourse it is this thread which is working is taking the load, but when the listener fucntion is fired which thread is handlign the call is it the client handler thread which fired the method or the messaging server thread which creates these threads?? now once that is solved, who(which thread) is doing the work when i call the fucntion in the other thread which i found aftre searching the vector. i mean i am thinking like this cuz i am not much in sink with the way threads work. i am also trying to figure out this to find out the load the server or the threads will be having.
    algo example:
    class messageServer
         vector currentWorkingThreads;
         messageListener listener;
         main()
              listener = new messageListener(); //should it be here or the other place i am mentioning below
              while(true)
                   clientHandler = socket.accept();
                   listener = new messageListener(); //should it be here or the other place i am mentioning above
                   //create a thread and add this thread object to the vector
                   thread.addLisenter(listener);
    class messageServerThread
         string userid;
         messageListener lis;
         run()
              object obj = in.readObject();
              lis.sendMessage(obj);
         sendMessage(obj)
              out.writeObject(obj);
              out.flush;
    class messageListener
         sendMessage(msSendMessage msg)
              //find the appropriate user thread
              loop(currentWorkingThread.next())
                   messageServerThread msgThread = (messageServerThread)currentWorkingThread.element();
                   if(msg.userid == msgThread.userid)
                        msReceiveMessage rcvMsg = msg.strip(); //dosent matter what this does, it just strips the unwanted info and returns the type msReceiveMessage
                        msgThread.sendMessage(rcvMsg);
    and if this is something out of the line, or not a good way of doing it, can someone help me with the design it would be gr8.
    thanx a lot
    -Ankur
    help would be greatly appreciated.
    [email protected]

    other, how it is setup is, client connects to this
    server, the server accepts and creates a new thread
    for this client and adds a message listener to this
    client handler thread. as and when the server creates
    this thread for the client, it puts it in a vector
    which is keeping track of every client connected to
    this server.ok so far.
    so now when the client sends a message to
    another client, basically it goes through this server,
    the thread upon receiving this message, fires a method
    of the listener. this method takes the message, finds
    out who it is going to(therefore the userid) and
    seaches the threads vector to find the appropriate
    thread and then just creats another striped down
    message out of the received message and calls a method
    in that thread to send this newly created message andhere you seem to confuse the thread instance and the thread of execution. the thread invoking this method is still the event handling thread (i.e. the receiver thread of the socket). you do not need threads for delivering - this can be done by the receiving sockets' event handling threads. disadvantage: if processing of the message takes significant time then the socket is blocked and cannot process another message.
    solution: put the message in an event queue which is processed by one or more threads. (see my example i e-mailed you)
    robert
    hence the message should be sent.(i am speculating, i
    still have not created this)
    so the problem ia m logically facing is...at what
    point of time who is taking the load, what i mean by
    that is, when the thread receives the message,
    ofcourse it is this thread which is working is taking
    the load, but when the listener fucntion is fired
    which thread is handlign the call is it the client
    handler thread which fired the method or the messaging
    server thread which creates these threads?? now once
    that is solved, who(which thread) is doing the work
    when i call the fucntion in the other thread which i
    found aftre searching the vector. i mean i am thinking
    like this cuz i am not much in sink with the way
    threads work. i am also trying to figure out this to
    find out the load the server or the threads will be
    having.
    algo example:
    class messageServer
    vector currentWorkingThreads;
    messageListener listener;
    main()
    listener = new messageListener(); //should it be
    e here or the other place i am mentioning below
    while(true)
    clientHandler = socket.accept();
    listener = new messageListener(); //should it be
    be here or the other place i am mentioning above
    //create a thread and add this thread object to the
    he vector
    thread.addLisenter(listener);
    class messageServerThread
    string userid;
    messageListener lis;
    run()
    object obj = in.readObject();
    lis.sendMessage(obj);
    sendMessage(obj)
    out.writeObject(obj);
    out.flush;
    class messageListener
    sendMessage(msSendMessage msg)
    //find the appropriate user thread
    loop(currentWorkingThread.next())
    messageServerThread msgThread =
    =
    (messageServerThread)currentWorkingThread.element();
    if(msg.userid == msgThread.userid)
    msReceiveMessage rcvMsg = msg.strip(); //dosent
    ent matter what this does, it just strips the unwanted
    info and returns the type msReceiveMessage
    msgThread.sendMessage(rcvMsg);
    and if this is something out of the line, or not a
    good way of doing it, can someone help me with the
    design it would be gr8.
    thanx a lot
    -Ankur
    help would be greatly appreciated.
    [email protected]

  • Why can't I open a long url in Instant messenger

    I have a question for Instant messenger users . A friend of mine sent me a long url that took about 5
    windows in instant messenger. I tried to open it, but it would not open. Are there any settings
    I need to set on my IPhone 6 or instant messenger to make this work. Also why does it break it up into 5 separate IM windows??

    Tell your friend to go to bit.ly to create a 'short URL' for that address.
    They can send you that & you shouldn't have to worry about the SMS or any other messaging size limitations.
    NOTE: there are many other URL shortener services…
    http://google.com/search?hl=en&q=URL%20shorteners

  • 10.4.8 and AOL instant messenger

    I just ran the update... went to universal access to get rid of the black box, but now I noticed that i can't sign onto ANY AOL instant messenger program be it ichat, AIM or Adium. Being a college student you KNOW how important this is to me . But any suggestions would be very appreciated.

    doesn't anyone have any ideas how to help me fix this?
    I can get it to work with a browser through AIM express, but shouldn't there be a way for me to get a client to work?

  • Blackberry Curve-Problem with MSN Instant Messenger HELP!

    I have the MSN Instant Messenger downloaded to my blackberry.  I can send messages out and the recepient receives it but I'm not getting their responses back.  Is anyone having this problem and if so, did you find a solution?  I had contacted my service provider and wiped my phone and reinstalled the application but it still doesn't work.  The weird thing is that it was working but all of a sudden stopped.

    yes, this has been an ongoing issue since about october of 2008. however i can't get anyone to help with it . vendor or rim
    Message Edited by andy1974 on 03-12-2009 10:12 PM

  • Help??? Logging in to Sun ONE Instant Messenger problem

    Hi all,
    I have just install Sun One Web server 6.1, Sun One Directory 5.2 and Sun One Instant Messaging 6.1 together on Win2K advance server. And I have successful launch Sun� ONE Instant Messenger.
    But I can not know, how to create LDAP user ID and password to Login to Sun ONE Instant Messenger???
    Could anyone help me to solve this problem?
    I'm looking forward to receive your reply soon.
    Thanks

    Thanks for your reply, I've read you suggest. And I also know that, I must do some thing as you talk above. But I'm sorry because, I'm only a beginner of Sun ONE application so I do not know how to step by step to do this. I list content of my iim.conf file below. Could you tell me, how can I create IM user and password on LDAP? and what Configuration Parameters I must change? And what is this value? I hope that you will help me. I�m stuck in this problem for five days. And I have know light to solve it.
    Here is content of my iim.conf file:
    ! iim.conf : IIM Configuration file
    ! General configuration options
    ! =============================
    ! Options that are common to all modules.
    ! Modules configured - server & multiplexor or only multiplexor?
    iim.comm.modules = "iim_server,iim_mux"
    ! SMTP server to contact to send email messages.
    iim.smtpserver = "VIETTEL.z78.z78.com"
    ! Instance directory
    iim.instancedir = "C:/Program Files/Sun/Instant Messaging"
    ! Instance directory
    iim.instancevardir = "C:/Program Files/Sun/Instant Messaging"
    ! User the IM processes should run as
    iim.user = ""
    ! Group under which the IM processes should run
    iim.group = ""
    ! config file version
    iim.config.version = "1.1"
    ! Java command
    iim.jvm.command = "java/jre/bin/java"
    ! Policy specific options
    ! =======================
    ! This section contains options specific to user sources
    ! and other policy stuff.
    ! The ldap server name and port.
    iim_ldap.host = "VIETTEL.z78.z78.com:389"
    ! The string to be used as base to do searches on this LDAP server.
    iim_ldap.searchbase = "o=z78.z78.com"
    ! Search filter for user login.
    iim_ldap.loginfilter = "(&(objectclass=inetorgperson)(uid={0}))"
    !The search filter used to search for users and groups in the directory by id.
    iim_ldap.usergroupbyidsearchfilter = "(|(&(objectclass=groupofuniquenames)(dn={0}))(&(objectclass=inetorgperson)(uid={0})))"
    !The search filter used to search for users and groups in the directory by name.
    iim_ldap.usergroupbynamesearchfilter = "(|(&(objectclass=groupofuniquenames)(cn={0}))(&(objectclass=inetorgperson)(cn={0})))"
    ! Determine whether wildcard searches should be allowed with uids
    iim_ldap.allowwildcardinuid = "False"
    ! The ldap class that indicates that an entry belongs to a user.
    iim_ldap.userclass = "inetOrgPerson"
    ! The ldap class that indicates that an entry belongs to a group.
    iim_ldap.groupclass = "groupOfUniqueNames"
    ! The search filter used to browse all groups in the directory
    ! under given base.
    iim_ldap.groupbrowsefilter = "(objectclass=groupofuniquenames)"
    ! Maximum number of entries to be returned by a search.
    ! 0 indicates unlimited search and -1 disables all search.
    iim_ldap.searchlimit = "40"
    ! Ldap attribute to use for display name of users.
    iim_ldap.userdisplay = "cn"
    ! Ldap attribute to use for display name of groups.
    iim_ldap.groupdisplay = "cn"
    ! Ldap attribute used as user uid.
    iim_ldap.useruidattr = "uid"
    ! Ldap attribute that gives the list of members of a group.
    iim_ldap.groupmemberattr = "uniquemember"
    ! Ldap attribute where user's email address is
    iim_ldap.usermailattr = "mail"
    ! The frequency at which the in memory user and group information
    ! is updated from LDAP, in minutes.
    iim_ldap.resynctime = "720"
    ! Ldap user id used for binding to the directory server
    !*************Tuan Anh change 02/07
    !iim_ldap.usergroupbinddn = ""
    iim_ldap.usergroupbinddn = <bind dn>
    ! Ldap password for binding to the directory server
    !*************Tuan Anh change 02/07
    ! iim_ldap.usergroupbindcred = ""
    iim_ldap.usergroupbindcred =<credentials for bind dn>
    ! Logging
    ! =======
    ! Logging configuration for all modules
    ! There are 6 severity levels for logs.
    !     DEBUG     debug/trace information
    !     INFO     log important information not indicative of a problem.
    !     WARNING     user error. The sofware is behaving properly but is not
    !          used properly.
    !     NOTICE report status of the various software components.
    !     ERROR     recoverable software or system error. The software or
    !          system is not behaving as expected, however the error
    ! can be recovered from.
    !     FATAL     unrecoverable error forcing the software to
    !          stop functioning.
    ! Log severity for the server component.
    iim.log.iim_server.severity = "NOTICE"
    ! Log severity for the multiplexor component.
    iim.log.iim_mux.severity = "ERROR"
    ! Server log file.
    iim.log.iim_server.url = "C:/Program Files/Sun/Instant Messaging/log/server.log"
    ! Multiplexor log file.
    iim.log.iim_mux.url = "C:/Program Files/Sun/Instant Messaging/log/mux.log"
    ! IIM server configuration
    ! ========================
    ! IIM server specific configuration options
    ! Name of the domain supported by this server.
    iim_server.domainname = "z78.z78.com"
    ! Should the server listen on the server to server communication port?
    iim_server.useport = "True"
    ! Server to server communication port.
    iim_server.port = "49919"
    ! Should the server to server ssl communication be enabled?
    iim_server.usesslport = "False"
    ! Should the server be enabled
    iim_server.enable = "true"
    ! Time the server will let a client be idle before disconnecting it,
    ! in minutes.
    iim_server.clienttimeout = "15"
    ! whether to use SSO
    iim_server.usesso = "0"
    ! user properties storage, can be file or ldap
    !iim.userprops.store = "file"
    ! Tuan Anh change 05/07/2004
    iim.userprops.store = "ldap"
    ! IIM multiplexor configuration
    ! =============================
    ! Multiplexor specific options
    ! IP address and listening port for the multiplexor.
    ! WARNING: If this value is changed, the port value of '-server' argument
    ! in the client's iim.html and iim.jnlp files should also be changed to match this.
    iim_mux.listenport = "VIETTEL.z78.z78.com:49909"
    ! The IIM server and port the multiplexor talks to.
    iim_mux.serverport = "VIETTEL.z78.z78.com:49999"
    ! Should the multiplexor be enabled
    iim_mux.enable = "true"
    ! Number of instances of the multiplexor.
    iim_mux.numinstances = "1"
    ! Maximum number of threads per instance
    iim_mux.maxthreads = "20"
    ! Maximum number of concurrent connections per multiplexor process
    iim_mux.maxsessions = "1000"

  • Cannot use instant messenger in Yahoo Mail anymore and don't know why

    when I go into my Yahoo Mail, I cannot use instant messenger. If I click on someone on line nothing happens at all. I have been told to delete and reload this program (IM) but have tried repeatedly and cannot find it anywhere. Also tried contacting someone on facebook and got no response so I assume it's not working on the chat feature either

    Known issue, our QA team working on it, See
    * https://bugzilla.mozilla.org/show_bug.cgi?id=713014
    you can follow the bug by opening bugzilla account and add to CC list :)

  • SKYPE INSTANT MESSENGER FROM AN ANDROID THAT DOES NOT HAVE THE SKYPE APP

    I HAVE A LENOVO HARD-WIRED TOWER & WINDOWS 8.1 OPERATING SYSTEM. MY FRIEND, DAVE, HAS AN ANDROID PHONE - HIS PHONE DOES NOT HAVE SKYPE INSTANT MESSENGER, BUT ANOTHER INSTANT MESSENGER THAT SHOWS A LIGHTNING BOLT. DAVE IS ONE OF MY SKYPE CONTACTS. WHEN I SEND DAVE MESSAGES VIA SKYPE INSTANT MESSENGER, HE CAN SEE MY MESSAGES, BUT I CAN NOT SEE HIS. ANY SUGGESTIONS, ADVICE? THANK YOU. SIGNED, GINA

    Hi! The obvious solution to this would be having your friend download skype from google play store. that way you're both on Skype, and it's free aswell. https://play.google.com/store/apps/details?id=com.skype.raider  

  • Instant Messenger contacts - add all users?

    Is it possible to use a corporate address book or a dynamic LDAP query to add all (or many) users in the Instant Messenger?
    We are deploying JCS in an organization, and the users complained that so far they only saw a means to add users by uid or via search by at least three characters of a name.
    A reasonable idea they had was to predefine (or easily define) all staff for all staff. So whenever a user starts the IM applet, he can see all colleagues, not just the ones he had to manually enter.

    JimKlimov wrote:
    When I search for group name in the "Add People" dialog, I only see the group names as "cos.ru/" (where "cos.ru" is the organization and domain name).
    However when I click one of these relatively unidentified groups and add it to my list, I do see the group name and contents (users).The format of the dynamic group in the add contacts search screen for my test installation is:
    <domain>/<dn of group> e.g.
    aus.sun.com/cn=All Users, ou=Groups,o=aus.sun.com,o=ispIf you have a non-ascii character in the group name, that may be causing problems.
    Also you may want to try another client system running a different client-side version of java (e.g. 1.5 vs. 1.6) to see if this makes a difference.
    Apart from that all I can suggest is upgrading to the latest publicly available IM 7.2 patches (which is what I am running now) e.g. 118786-28 (solaris sparc) or 118787-28 (solaris x86) and 118789-29 (solaris sparc) or 118790-29 (solaris x86).
    If that doesn't help log a support case so the issue can be investigated further.
    PS: I hope it is not too annoying that I've lately resorted to such questions that you easily point me to the Docs or the Wiki? There's so much reading and so little time :( ....Not a problem. It can take me a while to track them down so I understand all too well especially if you don't know the option exists in the first place.
    Regards,
    Shane.

  • IChat was unable to login to AOL Instant Messenger!

    I've been unable to log into iChat with my @me.com username for the last week. Every time I try to set my status to Available I get this message:
    AOL Instant Messenger Login
    iChat was unable to login to AOL Instant Messenger because your screen name or password was incorrect.
    Is this happening to anyone else? Will it ever be fixed? My Login ID and Password are the same as they've always been. Nothing's changed at my end. So why can't I get online with iChat?

    You're lucky. I tried deleting my MobileMe account within iChat, and re-adding it, but I still have the same error message. I haven't been able to use iChat for coming up to a month now

  • Ichat & AOL instant messenger won't accept my ID or password

    When attempting to use ichat, I can't get past the AOL instant messenger login. It says I have the wrong ID or password. But I'm using the correct ones. Does anyone know what to do? Thanks!

    HI,
    Two possibles.
    1) You are using iChat 5 or Earlier with an iCloud Issued ID from Apple (@me.com or @iCloud.com)
    Apple now have the iChat 6 and Messages app log in to me.com as well as AIM and this then Allows AIM to "read" the Password.
    Earlier versions of iChat do not do this so you cannot then Login despite the name actually being Valid.
    2) AIM servers have a 16 character Limit on Passwords.
    You may need to shorten your password.  Applies to any version of iChat or Messages.
    10:16 PM      Wednesday; December 5, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • AOL Instant Messenger Login Problem

    Hi guys and gals,
    So I've been having a problem for quite some time now and I was hoping someone might have experienced the same problem and can tell me just how to fix it...
    So I've been using iChat for years with my AIM password and login and have never had a problem. Just recently, someone hacked in to my account and started spamming people from my account. Because of this I had to change my password. When I entered the new password into iChat, it gave me the following error:
    *AOL Instant Messenger Login*
    iChat was unable to login to the AOL Instant
    Messenger service because your screen name or
    password was incorrect.
    I know the password is correct and the account works if I sign in with AIM; however, I hate AIM and want to use the account with iChat. I've tried uninstalling and reinstalling iChat. I've also tried deleting my account and recreating it with the new password but that didn't work either.
    Has anyone experienced this before or does anyone know how I can get iChat to work again? Thank you so much!

    Hi,
    Use this Users Tip to check the Keychain entry for your AIM name
    http://discussions.apple.com/thread.jspa?threadID=121885
    You may find you have two entries in the passwords section for your Screen Name.
    It may also pay to delete the com.apple.ichat.AIM.plist after removing the passwords row or stars in iChat and well as deleting any extra Keychain items and changing the password there.
    Then Restart iChat so that it re-writes the plist from defaults and current Keychain info.
    7:43 PM Friday; February 12, 2010
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Ichat was unable to login to aol instant messenger because...

    Hi There
    I wiped my hard drive and reinstalled Leopard and all was good. EXCEPT that now I can't log into iChat anymore!
    I keep getting this message:
    ichat was unable to login to aol instant messenger because your screen name or password was incorrect .
    I know that both are correct because I can log into my old iBook and my iMac.
    I don't have aol, I use .mac although I don't subscribe, just use it for iChat.
    I've deleted the account and started again but always get the same message. I can log in fine using gmail and I used a friends aol and that works but nobody can log into ichat with a .mac screen name.
    Help me please.

    Ok I also can't log in via adium but if I use my wife's or my mother in-laws sign in then iChat works no problem.
    I'm confused because I know my details are correct. Could it have anything to do with the initial set up of the os?

  • On certain websites, I cannot use instant messenger. It comes up as a "connection error". If I use IE8, I do not have this problem... I have the latest Java and Adobe Flash player downloads... what gives?

    When attempting to use an instant messenger on certain websites, I keep getting a "connection error" message.... The IM pops up, it appears to start loading then I get the "connection error".

    Mark Leary:
    As TXGuy posted above:
    See:
    https://support.mozilla.com/en-US/kb/Unexpected+installation+error+-203+when+installing+add-ons
    http://kb.mozillazine.org/Unable_to_install_themes_or_extensions_-_Firefox#Unexpected_installation_error_-203
    Also see:
    http://support.mozilla.com/en-US/kb/Profiles#How_to_find_your_profile
    http://kb.mozillazine.org/Show_hidden_files_and_folders

  • With blackberry instant messenger, can anyone find out what you have been typing once cleared

    dying to know if boss can see what im typing or retreive what i sent to friend on the blackberry instant messenger service.
    my boss is very nosy and yes i know its their phone, but still wondering if it can be retreived like txting or email???
    thanks    
    Solved!
    Go to Solution.

    Agree with JSanders - why take the chance?  If you're doing something you shouldn't on a corporately-owned device, you're just asking for trouble.
    As far as turning on logging for BlackBerry Messenger, you'd know it was on since the way it works is you'd see an item in your Sent Items that is a record of all of your BBM chat being sent to whatever email address the BES Admin set up.
    It's not something that is done 'behing the scenes' like logging text messaging or phone calls.  The user KNOWS they are being tracked for BBM.
    If you find a post here helpful, please consider giving the poster some Kudos

Maybe you are looking for

  • Poor performance of 6630M in portrait mode

    I've upgraded my Mac Mini 2009 with Nvidia 9400 to Mac Mini 2011 with Radeon 6630M. Everything is fine in the landscape display mode, however I normally have it plugged to Dell 24" display in portrait mode (using the bundled HDMI-DVI adapter). When i

  • How do I reset Safari (clear cache) from the command line?

    I have a macmini that runs in Safari in kiosk mode. I would like to be able to ssh into it and clear the browser cache. I don't have access to the system via a keyboard or mouse. Which files do I need to edit? Do I need to restart Safari after I make

  • UOM (additional) field to be added to the SC screen

    Hi all,    We are working on SRM 4.0.I need to add a display/output field "unit of Measure" besides the i/p field "Quantity" on the SC screen where i add the items to the SC.   Now when i select the product,the product ID gets populated in the same s

  • Trying to simulate OTA download

    Hi I try to run a MIDlet on JBuilder X developer from a OTA server. I configured the jar and jad in the server. 1) I get this error: " ** Error installing suite (49): The suite is not authorized for javax.microedition.io.PushRegistry " 2) when runnin

  • Autopopulate a text field in a table from table

    I am not sure if it is possible but I will explain what I would like to do:- I have a table which allows the user to add a name, they also have the ability to add additional names to the table. What I would then like to do is auto populate another ta