IMessage only can send text with photo but not text only

How come my iMessage can only sent text with photo but not text only. While entered text the send button is blue and gray.the button could become blue and white when only photo was being inserted. My iPad 2 iOS version 5.0.1.

Went apple store today, everything is fine. Out of the store I have the same problem as disrobed above. Can anyone help?

Similar Messages

  • Problem with out going mail. I can send from my iPad but not my MacBook Air yet settings are the same.

    Problem with out going mail. I can send from my iPad but not my MacBook Air, yet settings are the same. Can anyone advise?

    Hi sointoit,
    If you are having issues sending mail from your MacBook Air, you may find the following article helpful:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/TS3276
    Cheers,
    - Brenden

  • TS3276 I can send emails with Mail but can no longer receive them. Yet I haven't altered anything.  How do I solve this problem. Thanks

    I can send emails with Mail but can no longer receive them. Yet I haven't altered anything.  How do I solve this problem. Thanks

    Who is your email provider? Have you set up your account manually or was it set up automatically?

  • Can manually subscribe with Windows but not with Mac

    For some reason I am able to manually subscribe to the below feed just fine with iTunes on my PC (Windows XP) but I get an error when trying with my iMac (OS X 10.5.8):
    *http://feeds.feedburner.com/Metalspeak*
    The error I'm getting with my iMac references "An unknown error occured (400)"
    I was troubleshooting a different feed and am getting similar results: it works fine with the PC, but not with the iMac:
    *http://feeds.feedburner.com/MetalsPeakPodcast*
    The error I'm getting on this feed however states "The file might be corrupted, or a file type that iTunes cannot play"
    Can anyone think of why these feeds work with Windows but not with Mac? Any advice is appreciated!

    The problem lies with the URLs for your media files. The one for the top episode is
    http://www.metalspeak.com/episodes/MetalsPeak 10 - GenresPeak.mp3
    This URL contains spaces, which are not allowed in a URL. Browsers - and from what you say iTunes in Windows - handles this by substituting the code %20 for each space when requesting the file; iTunes for Mac does not.
    You need either to change the filename for each media file, removing the spaces or substituting something such as an underscore, and then amending the feed accordingly: or at the least to amend the feed by replacing each space with %20.
    It's the same problem in the other feed.

  • TS5150 Is there any way to view movies with subtitles but without closed captioning? I can get both or neither, but not subtitles only.

    Just in the last year I have had problems with a lot of foreign language films where I can have both subtitles and closed captioning or neither. (I'm very fortunate not to require closed captioning, but I speak only English and Spanish, so I often need subtitles.) I am in my 50s and have been a huge foreign film fan since college, but I don't remember ever having this problem until very recently. Tech support chats with Netflix and AppleCare calls in re iTunes/AppleTV have not provided any answers. The current state of the art seems a step backwards from what never used to be a problem. I'd be interested in knowing if anyone else has had this issue. A search of "subtitles" brought 0 responses, so I have to assume I'm the first person to have asked about it.

    You used the data.  Verizon can not see what it was sued for.  However your phone can see whats apps used the data.  go to settings-data usage- there will be a place that says data usage cycle.  line the dates up with your cycle.  then there will be a bar graph below that   extend bother white bars one all the way to the left and one all the way to the right.  after those are extended below that will be a list of apps,  there should be one that used over 2 gb and that will show you what app used that data in her purse

  • I can't send pics to certain friends via iMessage or mms.  I can send to my daughter but not my wife.  Both have iPhone 4

    When sending a picture from camera roll I'm unable to send to my wife's iPhone 4 but I can send to my daughter's iPhone 4.  Anyone have any ideas?

        We understand how important photos are to share. We want to make sure that we get these fixed for you, susanhm. Is your husband able to receive other people's picture messages? Has he ever been able to receive picture messages from you?  Please have him send a photo message to himself and see if he is able to receive it.
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Can send email from iphone but not from mac.

    Hi. I'm using a mac desktop and the mail app. I can receive email, but not send. I checked my port and id/pswd and still cannot send. After the app tries to send, it says the server is offline.
    I am able to send email fine with my iphone.
    Any ideas would be appreciated. Thanks!

    I've checked this and mail connection doctor says I am connected  - think I am going to have to get someone in to help me as I have spent about 4 hours on this now :-(

  • Can Send ASCII Files Correctly But NOT Binary FIles (TCP)

    In this code right here we are sending in a file and outputting it to the same computer -- we are just trying to test to see if it works. We are breaking the file up into 128 bit packets into byte arrays which we convert to strings to append ACKs, etc.
    When we send and ASCII file it is no problem, and it come out perfectly correct.
    When we send a BINARY file and try view it in wordpad, everything looks the same except sometimes a block (original file) will be a ? (copied file). Yes, it will literally show up as a question mark.
    Our code is below -- any help would be AMAZING.
    // PROGRAMMING ASSIGNMENT #1 (TCPCLIENT.JAVA)
    // Names: Brendan G. Lim, Andrew Tilt, Naoki Kyobashi
    // Class: COMP 4320 - Introduction to Computer Networks
    import java.io.*;
    import java.net.*;
    public class TCPClientString {
    public static int fileSize = 0;
    public static int arrayLength = 0;
    public static byte[] leftOver;
    public static int lengthLeft = 0;
    public static void main(String[] args) throws Exception {
    String fileName = "test.jpg";
    String fileOut = "copy.jpg";
    byte[][] splitArray;
    byte[] sendPacket;
    int ackNum = 1;
                   int fileSizeOut = 0;
    int windowStart = 0;
    int windowEnd = 0;
    int totalAcks = 0;
    //String serverAddress = args[0];
    // final int BUFFER_SIZE = 128;
    // byte[] buffer = new byte[BUFFER_SIZE];
         //Socket socket = new Socket (serverAddress, 6190);
    BufferedInputStream in = new BufferedInputStream(new FileInputStream(fileName));
    // //BufferedOutputStream out = new BufferedOutputStream(socket.getOutputStream());
    BufferedOutputStream out = new BufferedOutputStream(new FileOutputStream(fileOut));
    int len = 0;
    splitArray = createFileArray(fileName);
    boolean[] acksRecieved = new boolean[arrayLength];
         for(int i=0; i < arrayLength; i++)
    acksRecieved[i] = false;
         if (arrayLength >= 5)
         windowEnd = 4;
         else
         windowEnd = arrayLength - 1;
    System.out.print(arrayLength);     
    if (arrayLength != 0)
    while(totalAcks != arrayLength)
    for(int l=windowStart; l <= windowEnd && l < arrayLength; l++)
    if (acksRecieved[l] != true)
    sendPacket = getPacket(splitArray, l, l, 128);
    // System.out.println(windowStart);
    //      System.out.println(windowEnd);
    out.write(sendPacket);
                             fileSizeOut += 128;
    acksRecieved[l] = true;
         totalAcks++;
    while (acksRecieved[windowStart] == true && windowStart < arrayLength -1)
         windowStart++;
              if (windowEnd < arrayLength-1)
              windowEnd++;
    if (lengthLeft != 0)
    // System.out.println("did this");
    sendPacket = getPacket(leftOver, ackNum, lengthLeft);
    out.write(sendPacket);
                        fileSizeOut += lengthLeft;
    // System.out.println("\n\nSending File...");
    // while((len = in.read(buffer)) > 0 )
    // out.write(buffer, 0, len);
    in.close();
    out.flush();
    out.close();
    //socket.close();
                   System.out.println("\n \n" fileSize " " +fileSizeOut);
    System.out.println("\n****File Transfered****\n\n");
    public static byte[][] createFileArray(String fileName)throws Exception
    int arraySize = 128;
    FileInputStream fr = new FileInputStream(fileName);
    fileSize = fr.available();
    System.out.println(fileSize);
    arrayLength = fileSize/128;
    int currentPos = 0;
    int bytesRead = 0;
    byte[] msg = new byte[fileSize];
    int counter = 0;
    fr.read(msg);
    byte[][] brokenUp = new byte[arrayLength][arraySize];
    int msgPos = 0;
    if(fileSize >= 128)
    for (int j = 0; j < arrayLength; j++)
    for (int i = 0; i < 128 && msgPos < fileSize; i++)
    brokenUp[j] = msg[msgPos];
    msgPos++;
    if (fileSize%128 != 0)
    lengthLeft = fileSize%128;
    leftOver = new byte [lengthLeft];
    for (int j = 0; j < lengthLeft; j++)
    for (int i = 0; i < 128 && msgPos < fileSize; i++)
    leftOver[i] = msg[msgPos];
    msgPos++;
    return brokenUp;
    public static String getPacket(byte[][] brokenMatrix, int position, int ack, int length)
    byte[] packet = new byte[128];
    String pack;
    String finalPack;
    for (int i = 0; i<128; i++)
    packet[i] = brokenMatrix[position][i];
    pack = new String(packet, 0, 128);
    // finalPack = ack+"**"+"Address1"+"**"+"Address2"+"**";//+pack;
    // System.out.print(pack);
    //packet = pack.getBytes();
    return pack;
    public static String getPacket(byte[] brokenMatrix, int ack, int length)
    byte[] packet = new byte[128];
    String pack;
    String finalPack;
    for (int i = 0; i<length; i++)
    packet[i] = brokenMatrix[i];
    pack = new String(packet, 0, length);
    // //finalPack = ack+"**"+"Address1"+"**"+"Address2"+"**"+pack;
    //packet = pack.getBytes();
    return packet;

    Please use [code][co[/i]de] tags when posting code.
    It's too hard to see unformatted, but from your description I'd suppose you have a call to String#getBytes() somewhere. This method uses the default platform charset, and if they're different, you'd get different results. On the other hand, ASCII chars often have the same encoding (byte), which'd explain why it works with text files.
    You should use the String#getBytes(String) method with a consistant charset, like UTF-8.
    In fact, you shouldn't have to create Strings at all, no, let me rephrase that: you shouldn't pass any Strings around if you'Re sending binary data (nor for the text data, btw.).

  • Can send faxes on 6500 but not receive them.

    Test says I need different phone cord. Went to Best Buy and they said that's crazy since I can send out. It used to work when I had Vonage, but now I switched to Comcast home phone and it won't work.
    This question was solved.
    View Solution.

    Hate to hear your are having that issue with your faxing. The Best Buy reps do their very best, they have 1000's of products to get to know....
    if you are not using the HP supplied cord (which is a 2 wire cord) or the fax hardware test indicates your are not using the correct cord then we need get you another fax  cord(2 wire  fax cord...)
    If the cord you are using is a 4 wire cord (you can tell by the 4 prongs on the end) then you will have fax issues... The extra 2 wires in a 4 wire cord can cause interference..
    Also.... you mentioned you changed carriers..If you have a voicemail service active this will disrupt your incoming faxes... there is no work around you MUST DEACTIVATE your voice mail to receive faxes.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • I can send new, short emails, but not reply or attach

    Hi,
    I can send new and very short emails fine and recieve all emails fine too. However if i reply to anything longer than a word or two or try to attach any size file, mail won't send the file. The same thing happens in Entourage and this started happening after i switched DSL carriers. Any ideas? I have already deleted and recreated my accounts and checked with the DSL carrier who is satisfied that my settings are correct.
    thanks,
    J.

    You friend needs to check the router manufacturer's website for any updated drivers for the router model which may or may not be specifically targeted for OS X but if available and installed, this may resolve the problem especially if it occurs with any OS X email client.

  • I want a user to use only import, it run with export but not import

    Hi,
    i create a user for use only for import and for export.
    batch_export with exp_full_database role <- It run
    batch_import with imp_full_database role <- don't run
    P:\>sqlplus batch_export/batch
    SQL*Plus: Release 10.1.0.2.0 - Production on Lun. Ao¹t 21 17:21:58 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ERROR:
    ORA-00604: une erreur s'est produite au niveau SQL rÚcursif 1
    ORA-20000: Connexion refusee
    ORA-06512: Ó ligne 41
    Entrez le nom utilisateur :
    P:\>sqlplus batch_import/batch@rfsage
    SQL*Plus: Release 10.1.0.2.0 - Production on Lun. Ao¹t 21 17:03:36 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    ConnectÚ Ó :
    Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> exit
    the trigger as run
    create or replace trigger batch_export.check_connexion after logon on database
    declare
    V_MODULE SYS.V_$SESSION.module%TYPE;
    V_TERMINAL SYS.V_$SESSION.terminal%TYPE;
    V_SID SYS.V_$SESSION.SID%TYPE;
    V_SERIAL SYS.V_$SESSION.SERIAL#%TYPE;
    V_COMMAND varchar2(100);
    V_CURRENT_USER varchar2(20);
    V_CURRENT_SID SYS.V_$SESSION.SID%TYPE;
    cursor connexion is
    select substr(module,1,7) module, substr(terminal,1,12) terminal, sid, serial# from v$session T1 where schemaname='BATCH_EXPORT';
    cursor ID_CUR is
    select user from dual;
    cursor SID_CUR is
    select SYS_CONTEXT('USERENV','SID') sessionid from dual;
    --select SYS_CONTEXT('USERENV','CURRENT_USERID') current_userid from dual;
    Begin
    open SID_CUR;
    loop
    fetch SID_CUR into V_CURRENT_SID ;
    EXIT WHEN SID_CUR%NOTFOUND;
    dbms_output.put_line('V_CURRENT_SID:'||V_CURRENT_SID);
    end loop;
    close SID_CUR;
    open ID_CUR;
    loop
         fetch ID_CUR into V_CURRENT_USER ;
         EXIT WHEN ID_CUR%NOTFOUND;
         if V_CURRENT_USER='BATCH_EXPORT' then
         open connexion;
         loop
              fetch connexion into V_MODULE,V_TERMINAL,V_SID,V_SERIAL ;
              EXIT WHEN connexion%NOTFOUND;
              if V_MODULE<>'EXP.EXE' then
              dbms_output.put_line('V_SID:'||V_SID);
              dbms_output.put_line('V_CURRENT_USER:'||V_CURRENT_USER);
                   if V_CURRENT_SID=V_SID then
                   dbms_output.put_line('MODULE:'||V_MODULE);
                   RAISE_APPLICATION_ERROR (-20000,'Connexion refusee');
                   end if;
              end if;
         end loop;
         close connexion;
         end if;
    end loop;
    close ID_CUR;
    End;
    as the same for import user.
    I try with role in trigger but it don't, i see this in forum Oracle.
    But i think EXP_FULL_DATABASE have not DBA rule, but IMP_FULL_DATABASE have.
    How i do this ?
    I want just to use a user to imp utilities, but not connexion in sqlplus.
    Thanks for your help
    Christophe

    thanks for your help.
    it run !
    for example :
    as the system user
    SQL> INSERT INTO PRODUCT_USER_PROFILE values ('SQL*Plus', 'BATCH', 'CONNECT',null,null, 'DISABLED', NULL, NULL);
    1 ligne créée.
    SQL> grant create session to batch;
    Autorisation de privilèges (GRANT) acceptée.
    SQL> INSERT INTO PRODUCT_USER_PROFILE values ('SQL*Plus', 'BATCH', 'SELECT',null,null, 'DISABLED', NULL, NULL);
    1 ligne créée.
    the result
    oracle@debian:~$ sqlplus batch/batch;
    SQL*Plus: Release 10.2.0.1.0 - Production on Mar. Août 22 06:53:00 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connecté à :
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select user from dual;
    SP2-0544: Commande "select" désactivée dans le profil utilisateur du produit
    SQL>
    oracle@debian:~$ exp batch/batch owner=batch file=test.dump
    Export: Release 10.2.0.1.0 - Production on Mar. Août 22 06:54:32 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Connecté à : Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export fait dans le jeu de car WE8DEC et jeu de car NCHAR AL16UTF16
    le serveur utilise le jeu de caractères WE8ISO8859P1 (conversion possible)
    Prêt à exporter les utilisateurs spécifiés ...
    . export des actions et objets procéduraux de pré-schéma
    . export des noms de bibliothèque de fonctions étrangères pour l'utilisateur BATCH
    . export des synonymes de type PUBLIC
    . export des synonymes de type PRIVATE
    Thanks for all

  • I need help!  I installed icloud on my computer, uploaded photos, my computer crashed and now my ipad runs slow b/c there are too many photos.  Is there a way to delete photos from my ipad (right now, I can click on the photos but not delete)?

    What options do I have?  Will purchasing more storage help?  Can I change control from my PC to my ipad if I can't use my computer anymore?

    You can import your photos and videos in the Camera Roll on your iPad to your work computer using you usb cable, then delete them from your iPad by following the directions here: http://support.apple.com/kb/HT4083.  If you also have photo stream photos that are not in your camera roll that you want to save, save them to your camera roll so they can be imported too.  To do this, open your My Photo Stream album, tap Edit, tap the photos, tap Share, tap Save to Camera Roll.  After importing them you can delete them from your iPad if you want by tapping Edit again, tapping the photos, then tapping Delete.
    Once they are on your work computer, you can transfer them to a USB memory stick if you cannot leave them there.
    Any photos on your iPad that were synced from your computer can be salvaged by using an app like PhotoSync to transfer them to your work computer over wifi.  (They can't be saved to the camera roll and imported with your usb cable like photos in the camera roll.)  Deleting these photos from your iPad will require using iTunes.  Once you have your own computer again and can install iTunes, you can delete these remaining photos by creating an empty folder on your computer, then selecting this folder to sync to your iPad on the Photos tab of your iTunes sync settings and syncing.

  • TS3276 able to send emails with AOL but NOT about to receive them...how do I get my emails?

    Can not receive my emails from AOL or Gmail but I CAN send them...can anyone help me ...thanx

    Can not receive my emails from AOL or Gmail but I CAN send them...can anyone help me ...thanx
    What version of Mac OS X are you using?
    What email application are you using?
    You have to configure both for sending & receiving email.  Look at the receive configuration.
    Robert

  • Can synch contacts with Outlook, but not calendar/todo list

    My Nano syncs fine with music, photos, and with Outlook's contacts The contacts page in itunes even lists my calendars, but when I synch they don't come across, and neither do my todo lists. Any suggestions?

    Hi - I was able to sync contacts and calendar, but not to-do lists, although there is an option on the nano itself for to-do lists - when I select it it tells me to "enable syncing from Itunes under the Calendar section of the contacts tab." There doesn't seem to be any option to enable this in the calendar section - I suspect maybe this was eliminated for the 3G?
    Anyway, one problem you may have in syncing from outlook is that there is too much data in your calendar and contact files. Try archiving your files in outlook first before syncing.(File/Archive) I got the "Itunes cannot sync" error message and this solved my problem.
    Good luck.

  • I can send multiline interface commands but not data commands

    hi
    i am using a gpib controller.I cannot seem to find a way to switch between multiline commads and data commands.the key is the ATN bit as to send a DAB command the atn bit must be low. I cannot make the controller distinguish when a command is a adta command and not a multiline command,

    sorry bit i did not know i could answer you directly.
    i am using the measurement computing gpib controller cb7210.2 which is nearly ni compatabile.i am interfacing it with a microcontroller connected to the pc.Then i am trying to use a monitor program that is embedded in the microcontroller to perform remote access of instruments.i am using assembly. i have managed to communicate with the instrument.now the problem is that i cannot make the distinction between data commands and interface commands.for eg if i send 3Fh and atn happens to be 1 this is interpreted as UNL if atn is 0 then it is interpreted as data command.i need to be able to have control of the atn bit so that i can send either at will. so to problem is how to control the atn bit.
    thanks
    again

Maybe you are looking for

  • How can I migrate an existing BP from one Unifier to another?

    Hi. I have a question about BP transfer between Unifier systems. I have modified "Purchase Orders" BP on my system. I can export the XML of the new BP. How can I transfer this BP to another Unifier system with the same name, and modify "Purchase Orde

  • Different layouts for different pages

    hi all, i have created a form in which there are 5 output pages but the print preview shows only the first page out of 5.i want to go to the next page.plz help how would i do that.and  i want different layouts for different pages. thnks n regards, mu

  • How to use parathesis for OR and AND OPERATOR...

    oracle 10g Hi Guys please help how to use parathesis for this below query its giving same output values for all my similar queries select count(balance) from balanace_tb where kk_code in(111,112,113) or kk_code in(111,1124,115,116) and sec_id in(50,5

  • Failed to connect to DDE Server Acrobat XI Pro Windows 8.1

    I had installed Acrobat XI Pro on a Windows 8.0 notebook computer and it was working fine. When I upgraded to Windows 8.1 a few months ago, I started getting intermittent problems/error messages when I would try to open a pdf file by doubleclicking o

  • I want unlock my iphone 4s

    i want unlock my iphone to work in vodafone egypt my iphone locked in sprint u.s  .thanks