IPhone 2.x 3g... Drop down menu! Need some HELP

My fiance's iPhone seems to have a drop down menu when she scrolls down from the battery/clock or anywhere up there. I tried to do the same with my iPhone and nothing drops
I can't figure out what could be the difference between our phones... If you know the answer, please advise.
Thx!

does it look like a entry field at the top and a keyboard at the bottom?
if not... what does the drop down menu contain?

Similar Messages

  • I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps

    I have two faults! 1, an error comes up in Ps CC 2014 "could not apply the saved panel configuration, restring to default and my tools have disappeared completely and anything ive tried I cannot get them back not even the drop down menu in 'window' helps at all. And 2, Lr everytime I load it up it gives me the option to retry or switch to and it takes a while for me to even get anywhere with it I think it has something to do with the catalogs? I've been using these programs for a few years now on a Mac...no problem but when I use a PC when I'm away coz it's the (only) comp available these happen PC's are so useless! Please can anyone help??...

    I can give a few suggestions on Photoshop CC 2014, but Lightroom is a separate forum and you should ask Lr questions there.
    First close Photoshop.
    Then start Photoshop by double-clicking on it's icon and very quickly after that, hold down the ctrl-alt-shift keys until you see the reset dialog. answer "Yes" to delete settings, and let Photoshop continue to load.
    It's tricky to do and may take a few tries, but at least it should reset Photoshop CC 2014 to defaults.
    Gene

  • Iphone Safari not opening drop down menu on webpage

    My work has a webpage that all the employees can sign into with their staff number to see their rosters, allowances etc.  There is a series of tabs across the top of the webpage, one of which says "rosters".  When you click on that, a dropdown menu appears.  You can then click on the option for the rosters to be displayed and it opens a side tab with the current or previous roster link.  You can click on the applicable roster and it opens the roster in a PDF file viewed online (not downloaded to the phone).  This works fine on computers, and it used to work fine on iphones, until the software upgrade to 4.0.  The subsequent upgrade to 5.1 has not fixed anything.
    What happens now - the webpage opens, the tabs appear at the top and when I select the rosters tab, it creates the drop down menu, but when I click on the rosters option in that drop down menu, it does not show the side tab, infact it closes the menu instead.
    I have tried downloading different web viewing apps, but they all do the same thing.  Can anyone help?

    Thanks for your help.  Unfortunately JavaScript is enabled but it still doesn't open.  The site doesn't use flash either.  The curiuos thing it that is used to open before the software upgrades, so presumably it must have something to do with the changes made when IOS4 was implemented.
    Just to cover a few more bases - popups are not blocked (although before IOS4, even with the popup block on it still opened) and the debug console doesn't display any bugs when the menu is clicked on, the menu simply closes.

  • Pop Up Window and Drop Down Menu Question PLSS Help

    Hi Guys,
    Ne help would be appreciated I am designing a website in
    Dreamweaver, I need to know how to create a custom drop down menu.
    Is there anyway that instead of using the standard drop down menu,
    you can customize them e.g use an image instead. For example, when
    you rollover lets say Home a drop down appears but the menu is
    customised e.g colour, text and any other small details.
    Even when using the standard drop down menu, how can you have
    a particular text, whenever I go to edit font list it does not show
    the typeface, although it is activated in suitcase.
    Secondly, how can I create a custom pop up window?
    I would really appreciate any help for either of these
    Many Thanks

    hi,
    Creator does not recognize (or whatever you say) characters like '<'. You can import js file which includes your script or change these characters for example put "<" instead of "<".
    regards...

  • I'm using Mac with OS 10.9.4 and Photoshop CC. I am unable to access "Focus Area Selection". When I go to "Select" on menu its simply not there in the drop down menu. Any help?

    How do I access "Focus Area Selection" in Photoshop CC on a Mac? It's not showing in the "Select" drop-down menu.

    Select > Focus area is in Photoshop CC 2014, not Photoshop CC.  So you must download and install CC 2014 to have access to this new feature.

  • Selection Box and some repeats in drop down menu problems, please help

    Hello,
    I'm not quite sure what i have managed to turn on but everytime i click anything on my mac it gets a black box around it... I have no idea how to turn it off... can someone help me?
    Also my restart, Log out and Shut down seem to be repeating themselves in my apple drop down menu... is the normal? I don't remember it before. I'm working on a Mac Pro using Mac OS X 10.4.7.
    Any help would be much appreciated.

    Ahh thank you so much!
    I don't know how I managed it but it was really annoying me and now its gone. Wonderful.
    Thank you again.

  • Difference between Drop down menu and F4 help

    Hi ,
    I have developed a  adobe form in which i  have a drop down menu  for a field wage type ....
    I have created a Badi which is  linked to the field Wage type in the form......  In that Badi i have created a F4 help . ..
    What i want to know is that whether it will serve the purpose of drop down menu  or not ? because i have not attached that badi till now with that field in the form .......
    Is there any function module for a drop down menu which i want to put for my field .?
    Thanks a lot  in advance

    For drop down,
    check the FM
    VRM_GET_VALUES
    VRM_SET_VALUES

  • Made a drop down menu. How can I get the drop down to fade in and out? !

    Hi guys!
    I've created a drop down menu (with the help of you legends on here! )...Now I just need it to animate so when the user hovers over the main menu item, the drop down fades in.
    Here's the HTML I have...
        <ul id="nav">
            <li><a href="#">Nav 1</a></li>
            <li><a href="#">Nav 2</a></li>
            <li><a href="#">Nav 3</a>
                <ul>
                    <li><a href="#">&raquo; Sub Menu 1</a></li>
                    <li><a href="#">&raquo; Sub Menu 2</a></li>
                    <li><a href="#">&raquo; Sub Menu 3</a></li>
                    <li><a href="#">&raquo; Sub Menu 4</a></li>
                </ul>
            </li>
            <li><a href="#">Nav 5</a></li>
            <li><a href="#">Nav 6</a></li>
        </ul>
    ...and here's my CSS...
    ul#nav {width:920px; height:35px; list-style:none; padding:0; margin:0; background:url(navBg.jpg) repeat-x; z-index:999;}
    ul#nav li a:hover, #nav li a:active {background:url(navOn.jpg) repeat-x; text-decoration:none;}
    ul#nav li a {color:#E0E2E7; display:inline-block; float:left; margin:0; padding:10px 19px; width:auto; text-decoration:none;}
    * html #nav li {display:inline; float:left; }  /* for IE 6 */
    * + html #nav li {display:inline; float:left; }  /* for IE 7 */
    #nav ul {width:208px; left:-9999em; list-style:none; margin:35px 0; padding:0; position:absolute; z-index:999;}
    #nav li:hover ul {left:auto;}
    #nav li {float:left;}
    #nav li li a {width:190px; background-color:#efefef; color:#2e2e2e; padding:8px; margin:0; }
    #nav li li a:hover {background-color:#000; background-image:none; color:#FFF;}
    #nav li:hover {background:url(assets/images/frame/navOn.jpg);}
    From what I can make out, I assume I need either Javascript or JQuery...
    Does anyone know how I can get the drop down to fade in and out?
    Thank you very much and I hope to hear from you.
    SM

    Yes, you'll need a client-side script to do fade-in/fade-out fx.  Look at jQuery Superfish.
    http://users.tpg.com.au/j_birch/plugins/superfish/#examples
    Nancy O.

  • Wrapping text in the navigation drop down menu

    Help! Is there a way to wrap text in the navigation drop down menu. Some of the text is too long and sits outside of the drop down box. Is there code that I can insert in the below example or would this need to be specified in the css stylesheet that is attached? If this needs to go in the css stylesheet, then what would the code be for that?
    Thank you!
    <!-- nav//-->
    <span class="preload1"></span>
    <span class="preload2"></span>
    <ul id="nav">
        <li class="top"><a href="#nogo1" class="top_link"><span>Home</span></a></li>
         <li class="top"><a href="#nogo30" id="shop" class="top_link"><span class="down">Title</span></a>
            <ul class="sub">
                          <li><a href="#nogo36">Title</a></li>
                <li><a href="#nogo37">Title</a></li>
            </ul>
        </li>
        <li class="top"><a href="#nogo57" id="privacy" class="top_link"><span>Title</span></a>
            <ul class="sub">
            <li><a href="#nogo31">Title</a></li>
                       <li><a href="#nogo3" class="fly">Title</a>
                        <ul>
                            <li><a href="#nogo4">Title</a></li>
                        </ul>
                </li>
    <li class="mid"><a href="#nogo7" class="fly">Title</a>
                        <ul>
                            <li><a href="#nogo15">Title</a></li>
                  </ul>
                </li>
                 <li><a href="#nogo31">Title</a></li>
                 <li><a href="#nogo31">Title</a></li>
                   <li class="mid"><a href="#nogo7" class="fly">Title</a>
                        <ul>
                            <li><a href="#nogo8">Title</a></li>
                            <li><a href="#nogo9">Title</a></li>
                            <li><a href="#nogo10">Title</a></li>
                     </ul>
                </li>
          </ul>
    </li>

    Is there a way to actually wrap the text and keep the box it sits in the same size?
    Height is determined by content & end-user's default text size.
    Look at the Adobe Forum top menu bar.  Mouse over Store > sub-menus.  When text wraps to more than one line, the sub-menu adjusts to content.  If you increase text size in browser it's more obvious.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • The drop-down menu is not rendered properly with iframe where a pdf is embedded

    I want to embed a pdf in a webpage, where the drop-down menu needs to be displayed on the top of the pdf. I am using iframe to embed the pdf.
    The drop-down menu is not properly rendered (border-radius and box-shadow) in Firefox at http://mysite1.webege.com/test.html.

    *[https://bugzilla.mozilla.org/show_bug.cgi?id=779435 bug 779435] - the drop-down menu is not rendered properly with iframe where a pdf is embedded
    It is usually best to attach a minimal test case to the bug report.<br />
    In that case the code doesn't get lost if the page is removed from the server.

  • In the new Pages 5.0, what is the page break shortcut key. I cannot find the key as indicated on the drop down menu.

    in the new Pages 5.0, what is the page break shortcut key (it used to be the Fn + enter). I cannot find the (new) key as indicated on the drop down menu. Please help.

    Hi Bruce and fruhulda,
    ok, I found the keyboard viewer, it only shows the traditional symbol 'return'.  something like a sideway u-turn continued with the arrow under.  This is the Canadian or US keyboard. 
    btw thanks for your suggestion.

  • Slideshow is covering over drop-down menu

    Dears ,
    I am use this slideshow within my application
    http://themes.themepunch.com/?theme=kenburner_jq
    and this the slide source
    http://theexecutivetowers.info/i/KB/slider.zip
    and use this CSS menu
    http://cssmenumaker.com/menu/red-grey-rough-drop-down-menu
    and this the css menu source code
    http://cssmenumaker.com/sites/default/files/menu/138/source.zip
    after working the Slideshow is covering over drop-down menu .
    please someone help me , if you want to see in action
    https://www.youtube.com/watch?v=-HH7wUhP1tk&feature=plcp
    Ahmed

    Dears ,
    thank you it's working , just i add in menu css
    z-index:1000;Ahmed

  • Display XML in a drop down menu

    Hi,
    I've got Dreamweaver CS3 and I'm trying to display some XML
    data.
    I've loaded the XML in both XSLT and Spry, but I can't seem
    to disply it in the way that I want (i.e. in a drop down menu).
    Any help would be great.
    Cheers.

    Yossa79 wrote:
    > I've got Dreamweaver CS3 and I'm trying to display some
    XML data.
    > I've loaded the XML in both XSLT and Spry, but I can't
    seem to disply it in
    > the way that I want (i.e. in a drop down menu).
    Insert a Spry region. With your cursor inside the Spry
    region, click the
    Spry Repeat List button on the Spry tab of the Insert bar.
    Choose SELECT
    (Drop-down List) as Container tag. In the remaining three
    options,
    select the Spry data set, and the names of the columns you
    want to be
    used for the menu labels (Display Column) and values (Value
    Column).
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • How can I restore my iphone to a backup that's not listed in the drop down menu

    I updated my iphone and everything was removed. I attempted to restore it however the only backups that are available when I have the iphone logged into itunes is the one from today. How can I apply an older backup say 1 to 2 days ago to the drop down menu of the restore button? Right now the only thing that's showing up is the one for today and that's abslolutely not the one I want or need. And before the question is asked no I didn't save it to icloud.

    iTunes only keeps one normal backup, per device. Thus, there are no previous backups from 1 or 2 days ago unless you restored your phone & backed up before you restored. Restore point backups are time/date stamped & are not overwritten.

  • IPhone 4 wifi portal login with drop down menu

    Hi,
    I'm extremely happy with my iPhone 4. I use it often in WiFi hotspots (hotels, university, train stations etc) and the new portal log in system is really handy. Previously I used a third party WiFi portal logging in app which is now no longer necessary. HOWEVER, there seems to be a problem with the iPhone 4 remembering log in protocols for WiFi portals that include selecting an item from a drop down menu before logging in. For instance, the WiFi hotspots in trainstations here in the Netherlands work with several protocols depending on through which organisation you can log in. Before entering your log in details you have to select through which organisation you have access to such a hotspot. The third party logging in app was able to remember how to do this, but the iPhone 4 auto logging in thing (sorry, I don't know the term) does not remember. It's frustrating to have to fill the details in every time. And I can't even use the third party app any more because it needs primary connection to the local WiFi before it can log in, and the iPhone 4 won't give a primary connection if you don't fill in the details to log in (and if you do, you're already logged in and the third party app is useles...)
    Sorry for my rant, I'm wondering if there's a way to make the iPhone 4 log in tool-thing remember the protocol for logging in with drop down menus, or if there will be an update to fix it...
    Thanks,
    Tasmin
    P.S. I'm running iOS 4.1

    are you sure your stop() are in the right place??
    eg.. on the last frame of the onRollOver animation??
    also... why have you got on(releaseOutside); ???
    onRollOut will suffice.

Maybe you are looking for

  • K7N2 Delta-L: sound software utility?

    K7N2 Delta-L: sound software utility? I want to set the back panel to 6 or atleast 4 channel audio, however the manual says that after you've run the nForce driver setup there should be a software utility you can run to set onboard audio options.  Th

  • Dynamic URL images

    I am new to XML Publisher and am using the Java API to read from templates to output PDFs etc. How can I embed dynamic images via URLs in the templates? How do I assign the URL to the template image variable via the Java API? Thank you in advance. -J

  • Merging BSEG ,CDHDR and CDPOS.

    How can i merge BSEG which is a cluster table,CDHDR and CDPOS(Cluster Table)??

  • Variant configuration on planned orders, missing dependencies rules

    Dear Gurus, I`m facing a strange situation here. After MRP run, de material is corrected explode, but is not considering a procedure in a specific dependency rule. Instead of making the correct UoM calculation for convertion, the system is just consi

  • Do not allow change of Reference Object after Order release

    Dear All, The requirement is that we should lock(not able to change) the Reference Object after the Maintenance Order is released. Can we acheive this in standard way or do we need to go for development. If going for development what should be the ba