Messages Reply button not working ...

hello when we do receive a message on our iPhone the reply button should open messages right ?mine is not working...after i press reply, nothing comes up ...my iPhone is doing absolutely nothing...I have iPhone 4 16GB ~ iOS 7.1.2

szilaaa wrote:
hello when we do receive a message on our iPhone the reply button should open messages right ?mine is not working...after i press reply, nothing comes up ...my iPhone is doing absolutely nothing...I have iPhone 4 16GB ~ iOS 7.1.2
Is this a message for email/text?
If email are you using the mail app or safari?

Similar Messages

  • Email "new" and "reply" button not working OS 10.4.11 please help

    The buttons in Email "new" and "reply"  not working OS 10.4.11
    Internet is working. I go in > Mail preferences > Viewing ... I am not able to see anything or change anything in the Viewing
    "Reply-Reply All-Forward" and "New" Buttons in the Mail application are nonresponsive
    Any thought. Thanks fior your advice!

    Hi Joel,
    Safe Boot, (holding Shift key down at bootup), & use Disk Utility from there to Repair Permissions
    Reapply the big10.4.11 combo...
    The combo update for PowerPC-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateppc.html
    The combo update for Intel-based Macs...
    http://www.apple.com/support/downloads/macosx10411comboupdateintel.html
    Repair Permissions afterwords, reboot.

  • I have an phone 4s from cricket and when i text non iphone users such as android or and other phone brand they receive my text message but when they reply i wont get there message. send imessages is working its just my text message that is not working.

    i have an phone 4s from cricket and when i text non iphone users such as android or and other phone brand they receive my text message but when they reply i wont get there message. send imessages is working its just my text message that is not working.

    You use Restore to get the latest firmware build, not the Update button. You can only use the Update button, if there is an iOS update, say iOS 5.1.
    this link talks about updating to 9A406 to fix the "No Service" issue with iPhone 4S:
    http://iphone-and-i.blogspot.com/2011/12/fixing-iphone-4s-signal-problem.html

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Lumia 720 volume down button not working

    Hey buddies, I'm using lumia 720 and often i get this volume down button not working.
    I changed the button by giving it in nokia care for 3times and still im facing the same problem.
    And also noticed that this is happening to most of the lumia 720's.
    so kindly look into it and rectify the problem as soon as possible.
    If there is any solution for this, kindly reply me.
    Thanks in advance...!

    Your only solution would be to return the unit back to nokia care for inspection,if there is a recurring issue with this im sure nokia would be aware of it now,and it could be a slight manufacturing defect which again would be looked into.
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Buttons not working, all of a sudden?

    Nothing has changed, no editing was done, and all of a sudden, buttons not working.  I trued exporting from Flash again, with the same pblish settings.  Bit Action Script seems to give me a message now saying it wont export as a button.  Tried AS 2.0 and 3.0, but i made original files in 3.0
    thoughts???
    thank you!

    Either convert that symbol to a button symbol so that you can use the code you showed, or assign it an instance name and place the following code in the timeline...
    yourMCName.onRelease = function(){
         getURL("page2.html","_self","GET");
    Where yourMCName is whatever instance name you assign

  • HT1688 Power button not working

    Power button not working on iPhone 5

    This is a defect on iPhone 5 power button that wears out in about 13-14 months of usage just after you go out of warranty. Apple is aware of this issue but chooses not to accept this as a defect. I asked the Genius bar guy and they told me this is a common case recently and costs $269 to replace your phone. There is no repair option. I am very mad and believe Apple needs to take action or will lose their customers. All iPhone 5 owners that I know started having this problem in the month of 13 -14.
    I believe if the numbers go high, Apple may start a recall program. Please encourage anyone with this problem to post here. $700 phone should not wear out this soon. Apparently the part is defective on almost all iPhone 5 devices.
    Other threads about this:
    https://discussions.apple.com/message/23797113#23797113
    https://discussions.apple.com/message/23258974#23258974

  • Backup and restore buttons not working

    Hi,
    Any button in my backup and restore centre with a shield next to it (for UAC) is not working. Identical to this thread:
    https://social.technet.microsoft.com/Forums/windows/en-US/6a138e65-2834-41ac-bd40-c2344e20b824/backup-and-restore-panel-buttons-not-working
    A fair way down that page, Lokesh replies but I don't have any of the software that he mentions in his post. Is anyone able to help?

    Hi,
    According to the Lokesh's reply, this problem is probably caused by 3rd plugin in Windows Explorer Shell. UAC dialog couldn't be prompt correctly.
    To resolve this problem, you can try to use ShellExViewer instead to make troubleshoot, please follow the content of the link below for more details:
    https://social.technet.microsoft.com/Forums/windows/en-US/5353106e-5b19-4a26-8446-72bedf40b169/rightclick-context-menu-in-desktop-appearing-slow-win-81?forum=w8itprogeneral
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Sign in button not working in folio builder panel

    sign in button not working in folio builder panel, how i can fix it ? cs 6 on mac 15" os x mavericks, the rest are working thanks

    Let's keep this all in one place please: http://forums.adobe.com/message/5913127#5913127

  • Sign in Button not working in Folio Builder

    sign in button not working in folio builder panel, how i can fix it ? cs 6 on mac 15" os x mavericks, the rest are working thanks

    Let's keep this all in one place please: http://forums.adobe.com/message/5913127#5913127

  • As i have written,my iphone home button not working

    as i have written,my iphone home button not working.i talk to cusmer care & also visit to care center in delhi. but they say to pay full mobile payment to repair it.
    this mobile is onle 11 month old. the case id number for this call was: 325468510.

    OK, thanks for sharing that information. Now, what it is you would like us, your fellow users and the only people who will reply to you here, to help you with? If you are expecting a reply from anyone who works for Apple here, you will not get such a reply. The only way to discuss any issue with Apple is to call them:
    http://www.apple.com/in/support/iphone/contact/
    Regards.

  • Logitech mouse buttons not working in photoshop cc 2014

    logitech mouse buttons not working in photoshop cc 2014 winds 8.1. Is this a common problem?
    I have updated the latest drivers and have a few buttons programmed with keyboard shortcuts that used to work in previous versions of Photoshop but don't work now.
    Scrolling with mouse in bridge stopped working in cc butI see it is now working.
    any ideas?

    Many Photoshop extensions are not compatible with Photoshop CC 2014 for Adobe removed support for Flash Panels in CC 2014. Many extensions panels are flash based.  Check with the developer to see if their blendmein extension works with CC 2014.
    Adobe does not maintain Photoshop so it backward compatible with prior versions of Photoshop.  This brakes things like action scripts plugins extensions etc. Keep old version of Photoshop installed....

  • Text messages ringtones are not working in the Storm Two

    Device:  Storm Two running OS version 5.0.0.713 on the Verizon Wireless network.
    Recently, I upgraded from a Storm One to a Storm Two because of a multitude of issues with the Storm One; not enough memory, constant lock-ups; dropped calls, etc.  On the Storm One I had customer ringtones for contacts; so when a contact calls me the phone will sound a specific ringtone for that contact; the same for text messages from that contact. Now that I have the Storm Two the text message tones for the contacts are not working. In fact, even when I select a ringtone for text messages for a contact the phone will ring the generic ringtone that comes with the phone. If I go into the sound profile and change the generic ringtone to one of my own and the contact sends me a text/sms message the phone will ring the ringtone that I selected in the profile that is being used at the time. This is not the way it worked on the Storm One.  On the Storm One; if I have a specific ringtone for the contact and that contact sends me a text message it will sound the text messages tone for that contact. These ringtones have worked for previous devices including my Treo and Palm devices. The ringtone files worked well in the previous Storm One.
    So to make a long story short; I want to know why my text message ringtones are not working as designed/setup-up. If a contact calls me the phone will sound the ringtone for that contact; but if that same contact text me it will not ring the ringtone for the contact. This is annoying and I am at my wits end trying to find out why this is not working.
    Vernon

    Hi Jain....
    Field separator is for separating the fields.That means it will effect every field in the node.
    But end separator is not like that.It will apply at the end ofall fields of a node.It will effect node not a field.
    according to ur scenario if u use data.endseparator 'nl',output will come like this
    2008/0701$101
    2008/0701$102
    2008/0701$103
    2008/0702$105
    if u want new line for every field try to insert a separate node for second field.That means
    MT_DATATYPE:
    Data -
    1:UnBounded
    . .OrderDate----
    1:1
       <Data2>                   1:1
    . ....OrderNo -
    1:1
    now give data.endseparator  'nl'
                data2.endseparator 'nl'
    if possible try like this....
    Sreedhar Goud L

  • IPhone 4 middle button not working

    Having problems with the iPhone 4 middle button not working anyone else with the same problem ?
    Thanks

    i have the same problem. since you're software is already iOS 5.1 go to settings>general> accessibility>the settings after triple click home, i forgot what is it called but that would help.

Maybe you are looking for

  • [HELP] using multiple value parameter in c:import tag

    I need to pass a multi-value parameter to a included page. e.g. http://myhost/MyContext/dir1/page1.jsp?abc=value1&abc=value2/dir1/page1.jsp includes /dir2/page2.jsp, and would like to pass this multi-value parameter over, but change the name to xyz,

  • Connecting Cambridge Soundworks speakers to a new Dell 4700

    New system: Dell 4700. Soundcard is a Soundblaster Live! 24 bit. Stereo outputs are confirmed to work because my headphones pick up sound (in the headphone jack, as well as the stereo outputs). Creative audio software. Old speakers: Cambridge Soundwo

  • ABAP Query Quantity totals wrongly - M.Type 101+, 102-

    Hi Friends,                 Could any one help me in this? I created an ABAP Query for the combination of T.codes MB51 & MB52. When I see the total qty for the item which has GR and Goods return document.........say first by 101 I rerceive 5 nos and

  • Is there any Macpro that plays well with FCPX?

    Is there a Macpro out there that plays 3 cam 1920 x 1080 Pro Res multicam perfectly without dropping frames and still plays perfectly without rendering for things like dissolves?   My late model Imacs do this perfectly even with slow Lacie drives, bu

  • Error validating a schema

    I have read a lot of posts and documentation on validating schema with Java. Whether I do it the sun Jaxp way, or with JDOM (using the latest xerces), I get the same error (below): java.lang.NoSuchMethodError      at org.apache.xerces.util.DOMUtil.ge