Something is missing?

Hello

I have just taken receipt of a Motorola Defy + a couple of days. When the package arrived, it seemed the box may have been opened before and I was wondering if anyone could tell exactly how the phone should look like.

Basically, it's just the back cover that concerns me, as it appears it can leave the water in the phone. Underneith just the lock on the back cover is a gap. Should there be a cover of rubber here or that's how it is supposed to be?

Thank you

No, this is how it should be. This release allows the sound to come out of the sealed enclosure at the base of the phone. If you open the back, you can see that the gasket on the back cover surrounds the battery and electronics around the battery only, not the area of speaker.

Tags: Motorola Phones

Similar Questions

  • My computer market not seem to copy disk Roxio or any other copy of disc? Something seems missing. This is what AMD 64-bit Windows 7.

    My computer market not seem to copy disk Roxio or any other copy of disc? Something seems missing. This is what AMD 64-bit Windows 7.

    There are free utilities around...

    http://www.AddictiveTips.com/Windows-tips/radix-burner-Lite-free-Windows-CDDVD-burner/

    http://www.BurnAware.com/burnaware_free.html

  • My creative cloud app wouldn't update so I followed the instructions to uninstall, clean and reinstall and now I get an error code 43 after 2%. Now, I can't reinstall all the apps. Is there something im missing? IM on a mac.

    My creative cloud app wouldn't update so I followed the instructions to uninstall, clean and reinstall and now I get an error code 43 after 2%. Now, I can't reinstall all the apps. Is there something im missing? IM on a mac.

    Please refer creative cloud re-install - get error 43

    Concerning

    Hervé Khare

  • When I try to download creative cloud he says something is missing or damaged and can send back me to the same link to download creative cloud. Help

    Whenever I try to download creative cloud it won't let me download it because it says that something is missing or damaged. He then sent me to a link that says download creative cloud. I click on the link for press download, I'm going through the whole process again in a loop. Help.

    Please uninstall with the cleaning tool:

    The Adobe Creative Cloud Cleaner tool allows to solve installation problems

    Reinstall from the link below:

    Download Adobe Creative cloud apps | Free trial of Adobe CC

    I hope this helps.

    Concerning

    Megha Rawat

  • Something is missing in my custom input field?

    Well, so far I was able to learn about what I need to know who is hiding, until today.  I created a simple LabelTextInput, so I can attach a tag to my textInput (has not missed an easier way to do this I have?).  The code that is underneath and it works, but the problem I have is when I try to add to my container.  The boxes get stacked on each other (Fig. 1).  Boxes of normal TextInput added as I expect (Fig. 2).  I missed a few essential Overrides?  Thank you.

    LabelTextInput.as

    package
    {
        import qnx.ui.core.UIComponent;
        import qnx.ui.text.Label;
        import qnx.ui.text.TextInput;
    
        public class LabelTextInput extends UIComponent
        {
            private var _label:Label;
            private var _input:TextInput;
    
            public function LabelTextInput()
            {
            }
    
            override protected function draw():void
            {
                _label = new Label();
                _label.selectable = false;
    
                _input = new TextInput();
                _input.x = _label.width + 5;
    
                addChild(_label);
                addChild(_input);
            }
    
            public function get labelText():String
            {
                return _label.text;
            }
            public function set labelText(text:String):void
            {
                _label.text = text;
                _input.x = _label.width + 5;
            }
            public function get inputText():String
            {
                return _input.text;
            }
            public function set inputText(text:String):void
            {
                _input.text = text;
            }
        }
    
    }
    

    Somewhat pseudo-device Code where I add items to my 'opinion' that extends Sprite:

        // create subcontainer on the left side of the screen
        mySubLeft = new Container();
            mySubLeft.margins = Vector.([5, 5, 5, 5]);
            mySubLeft.size = 50;
            mySubLeft.debugColor = 0xFF3300;
            mySubLeft.sizeUnit = SizeUnit.PERCENT;
            mySubLeft.flow = ContainerFlow.VERTICAL;
            mySubLeft.align = ContainerAlign.NEAR;
            mySubLeft.padding = 5;
    
        txtSurname = new LabelTextInput();
        txtSurname.labelText = "Surname";
        mySubLeft.addChild(txtSurname);
    
        txtGivenName = new LabelTextInput();
        txtGivenName.labelText = "Given Name";
        mySubLeft.addChild(txtGivenName);
    
        txtBirthDate = new LabelTextInput();
        txtBirthDate.labelText = "Birth Date";
        mySubLeft.addChild(txtBirthDate);
    
        txtDeathDate = new LabelTextInput();
        txtDeathDate.labelText = "Death Date";
        mySubLeft.addChild(txtDeathDate);
    
        var dp:DataProvider = new DataProvider();
        var arr:Array = new Array([ { data:"M", label:"Male" }, { data:"F", label:"Female" } ]);
        dp.setItems(arr[0]);
        cboGender = new DropDown();
        cboGender.dataProvider = dp;
        cboGender.rowCount = dp.length;
        mySubLeft.addChild(cboGender);
    

    Fig. 1

    Fig. 2

    Ah sorry about alrite, I also noticed that there were not all sizes for your valuables. containers must sometimes these data too. Try the following code:

    // create subcontainer on the left side of the screen
    mySubLeft = new Container();
    mySubLeft.margins = Vector.([5, 5, 5, 5]);
    mySubLeft.size = 50;
    mySubLeft.debugColor = 0xFF3300;
    mySubLeft.sizeUnit = SizeUnit.PERCENT;
    mySubLeft.flow = ContainerFlow.VERTICAL;
    mySubLeft.align = ContainerAlign.NEAR;
    mySubLeft.padding = 5;
    
    txtSurname = new LabelTextInput();
    txtSurname.labelText = "Surname";
    txtSurname.containment = Containment.CONTAINED;
    txtSurname.setSize(300,60);
    mySubLeft.addChild(txtSurname);
    
    txtGivenName = new LabelTextInput();
    txtGivenName.labelText = "Given Name";
    txtGivenName.containment = Containment.CONTAINED;
    txtGivenName.setSize(300,60);
    mySubLeft.addChild(txtGivenName);
    
    txtBirthDate = new LabelTextInput();
    txtBirthDate.labelText = "Birth Date";
    txtBirthDate.containment = Containment.CONTAINED;
    txtBirthDate.setSize(300,60);
    mySubLeft.addChild(txtBirthDate);
    
    txtDeathDate = new LabelTextInput();
    txtDeathDate.labelText = "Death Date";
    txtDeathDate.containment = Containment.CONTAINED;
    txtDeathDate.setSize(300,60);
    mySubLeft.addChild(txtDeathDate);
    
    var dp:DataProvider = new DataProvider();
    var arr:Array = new Array([ { data:"M", label:"Male" }, { data:"F", label:"Female" } ]);
    dp.setItems(arr[0]);
    cboGender = new DropDown();
    cboGender.dataProvider = dp;
    cboGender.rowCount = dp.length;
    mySubLeft.addChild(cboGender);
    

    Let me know how it turns out. Good luck!

  • Stop the script if something is missing

    Hello AEScripters,

    can you tell me how to stop a running script, if a condition is not right?

    I tried stop() and exit() (normally they do the job...)

    But I get an alert that these functions are not defined?

    I use it in a function. Could be the problem?


    I have something like this:

    main();

    main() {} function


    If (something! = null) {}

    If (selectedItems.length > 0) {}
    check to see if something is selected
    targetItems = app.project.selection;
    If the use of the selection
    }
    else {}

    Alert ("nothing is selected.");

    exit(); / / doesen't work

    stop(); / / doesen't work either


    }

    }

    }

    Thanks for your help.

    : F

    p.s. all the code is here. -> https://github.com/fabiantheblind/compify2_slim/blob/master/compify2_slim.jsx

    Hello

    Just call return to the place where you want to leave. It will not stop the script running, but as you do all the work inside main() it will exit the function. And that you do not all instructions after that the call to main() the script will end.

    main();

    main() {} function

    If (something! = null) {}

    If (selectedItems.length > 0) {}
    check to see if something is selected
    targetItems = app.project.selection;
    If the use of the selection
    }
    else {}

    Alert ("nothing is selected.");

    return;

    }

    }

    }

    concerning

    Ludde

  • CSS does not not in the browser and have been debugging for hours, is there something I missed?

    Recently, I built a website for a client (boelmanshaw.com) in Wordpress. CSS of the site fits fine in all other browsers (IE, Chrome and Safari), but it does not work in Firefox. I've debugged the HTML code as I could, and I went through the CSS several times to see what could be the problem. I have not found anything that would be a problem. I'm not familiar with php, so I don't know if that would contribute to the problem, as well. I'm new with coding of websites, so any help would be greatly appreciated.

    I see in the error Console that you have made a typo: tour support (instead of a hug {and seems to be.)

    You can also use the Web Console (Web Developer > Web Console;) CTRL + SHIFT + K) to see this error.

    Warning: Expected ',' or '{' but found '('.  Ruleset ignored due to bad selector.
    Source File: http://boelmanshaw.com/wp-content/themes/Ultra/style.css?9d7bd4
    Line: 54
    
    a{color:#003267; text-decoration:none}
    a:hover{text-decoration:underline; color: #535552}
    p{margin:0 0 15px}
    strong{font-weight:700}
    em{font-style:italic}
    li{list-style-type: none}
    #leftlist{float:left; padding-right: 8px}
    #rightlist(float:right}
    small{}
    pre{white-space:pre-wrap; white-space:-moz-pre-wrap; white-space:-pre-wrap; white-space:-o-pre-wrap; word-wrap:break-word}
    hr{}
    blockquote{border-left:2px solid #CCC; margin:20px; padding:0 0 0 20px}
  • Something is missing in vista?

    Description of the problem: Hi I tried to install a program that I can connect my phone to my pc, the program is called Samsung Kies, start it installation but doesnot finishing I contacted samsung and they say it is a problem with the operating system on my PC. I tried several times and stops at the same exact part. Can you help me?
    Thanks Alastair
    Operating system: Windows Vista service pack 2

    Hello

    Try right click on the setup.exe and run as administrator

  • Something is missing in the Extended widget box

    Hello

    I use widget box custom Extended of Jim to create a quiz in CP 7.0.1.237. My requirement is quite simple. I have to admit that I have done so many times before, but this time I'm just not doing things.


    Requirement:

    I have four options, one of which only two are correct. We will tell, options are Plan A (var name: PA), Plan B (var name: PB), Plan C (var name: PC) and Plan D (var name: PD). The answers here are: PB and PC. I created the variables correctly.

    So, I created a tip action with just a decision to validate.

    If

    PA is not equal to "Plan A" AND

    PB is equal to 'Plan B' AND

    PC does not match 'Plan C' AND

    PD is not equal to 'Plan D '.

    then

    See the CorrectFeedback

    On the other

    See the IncorrectFeedback

    Expected result:

    Good feedback should appear if I chose Plan B and Plan C and I have selected not Plan A and D. Plan in all other scenarios, I should get Feedback Incorrect.

    Actual result:

    I get incorrect comments even when I chose Plan B and Plan C and I have selected not Plan A and Plan D.

    What I am doing wrong? Thanks in advance.

    Anthony

    Anthony, don't have time to test it, but I suspect it's due to the AND condition. I had similar problems in the past with the operator "not equal to" when they are incorporated in such sequence of AND. Never got an answer to why, so I try to avoid that the operator. Maybe try a combination similar to the one I created for the short answer question? Have a Boolean variable that is only 1 when all the conditions are met and divide your AND in two decisions (both with ' is equivalent to ')... Hope you understand my very short explanation? There are some flaws of logic, that happens in these combinations.

  • Something is missing? (Preparation of the ODM for employment)

    Hello!
    I use ODM. I have Oracle 11g enterprise Edition installed. I created the user for the purposes of the ODM. In point 6 of the http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28130/install_odm.htm#BBEHEIBG that I have stuck, however. It is dmshgrants.sql script in my $ORACLE_HOME/RDBMS/demo/directory. Why is this? I have only directory schemas .

    Published by: sandrine August 30, 2010 21:28

    You need to install 11g examples CD, down loadable from following link:

    http://www.Oracle.com/technetwork/database/Enterprise-Edition/downloads/112010-win32soft-098987.html

    Oracle Database 11 g Release 2 examples

  • Start menu - is there something missing?

    Vista Home Premium SP2
    Forgive me if I'm paranoid, but I noticed an empty spot in the start menu column. Is this normal or something is missing?
    Please see my link to the screenshot:
    http://public.Bay.livefilestore.com/y1pj0hISkuCosO8dF1FNQ3cIHJsQAXsh6izZPZJpVrSoOxk3nWsHmLbp-fo4IJch-MXxnj__1LDrj9PlLc3TmgpdQ/what ' s%20missing.png

    P.S. He post in the correct category?
    t-4-2

    According to me, everything is fine. The empty space is probably because he has more than 9 recent programs displayed in your Start Menu. To change the setting, right click on the area of the taskbar, click Properties-> tab Start Menu-> customize-> number of programs to display (default is 9).

  • Article number: 28840 Smart wifi configuration router Linksys by using the Smart installer - missing a step?

    I guess that something is missing here?

    The tutorial goes from:

    Check if you are able to access the Internet by connecting the modem to the computer via an Ethernet cable

    TO:

    Step 1 - Connect your computer to the router by an Ethernet cable.

    No mention of the connection of the modem to the router first?

    Hmm. It seems you are right. If you have not connected the router to the modem, there are 4 step to the rescue.

    I hope someone from Linksys will see this and have fixed.

  • How to replace a missing file?

    I can't update because there is a missing file, that I am told. How to replace?

    You can try this method: -.

    Open CMD as administrator, and then type sfc/scannow and it will automatically repair files and if something is missing, it will be replaced.
    If he says that he can solve some problems, use the repair disk.
  • BlackBerry missing in Eclipse project type

    I ran the installation to get the site components for Blackberry dev. I had some options display for Blackberry, but now they are gone. The only thing I know that I did was to install the SVN client and simulators. If I look at the installed components it shows Blackberry being installed. I tried uninstalling and reinstalling, but it doesn't work. I'm obviously not an expert with Eclipse (really hate him and chose Netbeans for other Java worked in the past), but seems there must be something stupid miss me to do the things to see the upward. I tried to have a new clean folder for Eclipse and try it all again, but seems it must be some sort of registry entries or some common place looking for files as it says components Blackberry are already installed.

    Any advice would be appreciated.

    This is what I've done and things work. I removed the extract Eclipse, I had. I downloaded the complete installation of the RIM and had him install Eclipse as well. At least now I see the project types. When I shoot a project on google code I'm working, then I get another error, now to try to ensure that updates are done (list has nothing so I'll use the VM version to rebuild the list). Did I mention I didn't like Eclipse, the IDE should not be this difficult to work with, but what do you expect for free .

  • part of the bridge appears to be missing

    When I open the bridge, it seems that something is missing. On the right side of the screen, I'm not able to see where you choose pdf, model and create contacts etc. I found online some comments saying that they had the same problem, but I can't seem to find out how it was resolved. Any help would be great!

    Hi julieb30415194,

    The missing section is the output Module, please take a look at the following article to add the output Module: https://helpx.adobe.com/bridge/kb/install-output-module-bridge-cc.html

    Kind regards

    Tanuj

Maybe you are looking for