Can't navigate

I just installed the media player, but I can't see the whole page on my screen and there are no scroll buttons to navigate. I'm using a PC with Windows Internet Explorer. Help appreciated.

Installed Media Player 11 on PC and now I can't sync music
I installed Windows Media Player 11 on my PC and when I went to sync my phone with some new music, I get this message: "Your device is using an outdated driver that is no longer supported by Windows Media Player." When I go to the Microsoft web help, it says, "Windows Media Player cannot sync with the portable device. The device firmware is not compatible with Windows Media Player 11." Has anyone seen this...or even better has anyone gotten this to work?
My phone is running Windows Mobile 2003 Second Edition with Media Player 9. Microsoft says to upgrade the firmware on the phone or rollback to Media Player 10 on the PC. Seeing how I just spent two days organizing all my
cat breeds
songs, videos, playlists, etc. in Media Player 11, I hope I don't have to lose all this and go back to 10.

Similar Messages

  • How can I navigate to the specified page?

    h5. I'm a novice in JavaServer Faces.
    today i meet a problem that i can not navigate to the specified page in my application.
    the version of the jsf API is : jsf-1.1_02-b08
    my web.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4"
    xmlns="[http://java.sun.com/xml/ns/j2ee]" xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance]"
    xsi:schemaLocation="[http://java.sun.com/xml/ns/j2ee] [http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd]">
    <display-name>JavaServerFaces</display-name>
    <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>Faces Servlet</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>faces/Charpter1/HelloWorld.jsp</welcome-file>
    </welcome-file-list>
    </web-app>
    my faces-config.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "[http://java.sun.com/dtd/web-facesconfig_1_1.dtd]">
    <faces-config>
    <managed-bean>
    <managed-bean-name>
    helloBean
    </managed-bean-name>
    <managed-bean-class>org.jia.hello.HelloBean</managed-bean-class>
    <managed-bean-scope>session</managed-bean-scope>
    </managed-bean>
    <navigation-rule>
    <from-view-id>Charpter1/HelloWorld.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>Charpter1/GoodBye.jsp</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    my HelloWorld.jsp is like this:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "[http://www.w3.org/TR/html4/loose.dtd]">
    <%@ taglib uri="[http://java.sun.com/jsf/core]" prefix="f"%>
    <%@ taglib uri="[http://java.sun.com/jsf/html]" prefix="h"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <title>JSF In Action - Hello, World!</title>
    </head>
    <body>
    <h:form id="welcomeForm">
    <h:outputText id="test" value="Welcome to JavaServer Faces!"
    style="font-family: Arial, sans-serif; font-size:24; color:green" />
    <p><h:message id="errors" for="helloInput" style="color:red" /></p>
    <p><h:outputLabel for="helloInput">
    <h:outputText id="helloInputLabel" value="Enter number of controls to display:" />
    </h:outputLabel>
    <h:inputText id="helloInput" value="#{helloBean.numControls}"
    required="true">
    <f:validateLongRange minimum="1" maximum="500" />
    </h:inputText></p>
    <p><h:panelGrid id="controlPanel"
    binding="#{helloBean.controlPanel}" columns="20" border="1"
    cellspacing="0" /></p>
    <h:commandButton id="redisplayCommand" type="submit" value="Redisplay"
    actionListener="#{helloBean.addControls}" />
    <h:commandButton id="goodByeCommand" type="submit" value="GoodBye"
    action="#{helloBean.goodBye}" immediate="true"/>
    </h:form>
    </body>
    </html>
    </f:view>
    the content of the HelloBean.java is as following:
    package org.jia.hello;
    import java.util.List;
    import javax.faces.application.Application;
    import javax.faces.component.html.HtmlOutputText;
    import javax.faces.component.html.HtmlPanelGrid;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    h5. public class HelloBean {
    private int numControls;
    private HtmlPanelGrid controlPanel;
    h5. public int getNumControls() {
    return numControls;
    h5. public void setNumControls(int numControls) {
    this.numControls = numControls;
    h5. public HtmlPanelGrid getControlPanel() {
    return controlPanel;
    h5. public void setControlPanel(HtmlPanelGrid controlPanel) {
    this.controlPanel = controlPanel;
    h5. public void addControls(ActionEvent actionEvent) {
    Application application = FacesContext.getCurrentInstance()
    .getApplication();
    List children = controlPanel.getChildren();
    children.clear();
    for (int i = 0; i < numControls; i++) {
    HtmlOutputText output = (HtmlOutputText) application
    .createComponent(HtmlOutputText.COMPONENT_TYPE);
    output.setValue(" " + i + " ");
    output.setStyle("color: blue");
    children.add(output);
    public String goodBye() {
    return "success";
    h5.
    when I run the application, HelloWorld.jsp can be displayed correctly, but when i click the "GoodBye" button in the HelloWorld.jsp, the page can not skip from current page to GoodBye.jsp, I noted that, the URL in my browser is: [http://localhost:8080/JavaServerFaces/faces/Charpter1/HelloWorld.jsp;jsessionid=D7F83C0F448E5B5AAD5897BEB5667A67]
    Then I try to replace the "GoodBye" button's action with "success" directly, but the problem is still occured.
    I could not know how this problem is caused, could you help me?

    BalusC wrote:
    zhangzhexin wrote:
    today i meet a problem that i can not navigate to the specified page in my application.This can have several causes: a validation or conversion error has occurred, or the navigation case doesn't match.please note that my "GoodBye" button use the property "immediate" and set "true" to it.
    the version of the jsf API is : jsf-1.1_02-b08
    This is over 3 years old. It would be smart to upgrade to the most recent version. Get it here: [http://javaserverfaces.dev.java.net].
    I think the problem of navigation does not have a relationship with the current jsf API version I used.
    [lot of unformatted code]Please use code tags to post your code. They will be nicely formatted and better readable. Press the CODE button to get them.I have used the code tag to format my code.
    I could not know how this problem is caused, could you help me? Add <h:messages/> to the page to get notified of any missing validation or conversion errors. Verify using the JSF manual/tutorial if the navigation case is correct.In HelloWorld.jsp, I have used the <h:mesage/> and when I click the GoodBye button, the HelloWorld is refreshed only, there are not any error messages or validation messages displaied on the HelloWorld.jsp page.
    I will repaste my code with code tag,
    My web.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app id="WebApp_ID" version="2.4"
         xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
         <display-name>JavaServerFaces</display-name>
         <servlet>
              <servlet-name>Faces Servlet</servlet-name>
              <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
              <load-on-startup>1</load-on-startup>
         </servlet>
         <servlet-mapping>
              <servlet-name>Faces Servlet</servlet-name>
              <url-pattern>/faces/*</url-pattern>
         </servlet-mapping>
         <welcome-file-list>
              <welcome-file>faces/Charpter1/HelloWorld.jsp</welcome-file>
         </welcome-file-list>
    </web-app>My faces-config.xml is configed as following:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE faces-config PUBLIC
        "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
        "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config>
         <managed-bean>
              <managed-bean-name>
                   helloBean
              </managed-bean-name>
              <managed-bean-class>org.jia.hello.HelloBean</managed-bean-class>
              <managed-bean-scope>session</managed-bean-scope>
         </managed-bean>
         <navigation-rule>
              <from-view-id>/HelloWorld.jsp</from-view-id>
              <navigation-case>
                   <from-outcome>success</from-outcome>
                   <to-view-id>Charpter1/GoodBye.jsp</to-view-id>
              </navigation-case>
         </navigation-rule>
    </faces-config>and my HelloWorld.jsp is as following:
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
         pageEncoding="ISO-8859-1"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <script language="javascript">
         function init(){
              document.getElementById("welcomeForm:helloInput").value = "";
    </script>
    <f:view>
         <html>
         <head>
         <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
         <title>JSF In Action - Hello, World!</title>
         </head>
         <body onload="javascirpt:init();">
         <h:form id="welcomeForm">
              <h:outputText id="test" value="Welcome to JavaServer Faces!"
                   style="font-family: Arial, sans-serif; font-size:24; color:green" />
              <p><h:message id="errors" for="helloInput" style="color:red" /></p>
              <p><h:outputLabel for="helloInput">
                   <h:outputText id="helloInputLabel" value="Enter number of controls to display:" />
              </h:outputLabel>
              <h:inputText id="helloInput" value="#{helloBean.numControls}"
                   required="true">
                   <f:validateLongRange minimum="1" maximum="500" />
              </h:inputText></p>
              <p><h:panelGrid id="controlPanel"
                   binding="#{helloBean.controlPanel}" columns="20" border="1"
                   cellspacing="0" /></p>
              <h:commandButton id="redisplayCommand" type="submit" value="Redisplay"
                   actionListener="#{helloBean.addControls}" />
              <h:commandButton id="goodByeCommand" type="submit" value="GoodBye"
                   action="success" immediate="true"/>
         </h:form>
         </body>
         </html>
    </f:view>my managed bean's content is like this:
    package org.jia.hello;
    import java.util.List;
    import javax.faces.application.Application;
    import javax.faces.component.html.HtmlOutputText;
    import javax.faces.component.html.HtmlPanelGrid;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    public class HelloBean {
         private int numControls;
         private HtmlPanelGrid controlPanel;
         public int getNumControls() {
              return numControls;
         public void setNumControls(int numControls) {
              this.numControls = numControls;
         public HtmlPanelGrid getControlPanel() {
              return controlPanel;
         public void setControlPanel(HtmlPanelGrid controlPanel) {
              this.controlPanel = controlPanel;
         public void addControls(ActionEvent actionEvent) {
              Application application = FacesContext.getCurrentInstance()
                        .getApplication();
              List children = controlPanel.getChildren();
              children.clear();
              for (int i = 0; i < numControls; i++) {
                   HtmlOutputText output = (HtmlOutputText) application
                             .createComponent(HtmlOutputText.COMPONENT_TYPE);
                   output.setValue(" " + i + " ");
                   output.setStyle("color: blue");
                   children.add(output);
    }I use the Tomcat 5.5.27 as the web container.
    I can't understand why the page can not be navigated to the GoodBye.jsp when I click GoodBye button on the HelloWorld.jsp.
    I really need your help. thanks.

  • How can i navigate via navigational link between views in different windows

    hello
    i am using CRM_UI and have opened a popup
    gv_transcr_popup is a attribute referrring to if_bsp_wd_popup in my implementation class
    gv_transcr_popup = comp_controller->window_manager->create_popup(
        iv_interface_view_name = 'AIC_CM_TRANS/AssignTranspReq' "#EC NOTEXT
        iv_usage_name          = 'CUBAssignTransporReq'         "#EC NOTEXT
        iv_title               = lv_title ).
    get instance of BOL dynamic query
      lo_qs = cl_crm_bol_dquery_service=>get_instance( 'BTQAIC_CM_TRANSPORTREQ').
      gv_transcr_popup->set_on_close_event( iv_view = me iv_event_name = 'AssignTranspReq' ).
      gv_transcr_popup->set_display_mode( if_bsp_wd_popup=>c_display_mode_surrounded ).
      gv_transcr_popup->open(   ).
    through the iv_usage_name i will open in this popup a search view from another window
    in this window is a searchview implemented and now after selecting the line in the result view in want to navigate through outbound plug / inbound plug to the starting view .
    but i get the exception
    Target view AIC_CM_TRANS/TransportReq of the navigation is not assigned to the current window AIC_CM_TRANS/AssignTranspReq ( which is true)
    now the question: how can i navigate between views of different windows?
    Best Regards
    britta

    hi
    i have found a way : you have to use a outboungplug from the windows interface ..then it is working
    best regards
    britta

  • On a Mac, can you navigate menus with one handed key strokes like Windows?

    On a Mac, is there anyway to navigate menus with one handed keyboard strokes like you can in Windows? My girlfriend is a graphic designer and switched from Windows to Mac. She misses being able to use the Alt key and make menu selections. On Windows she can press "Alt" and then move through menus and submenus with one hand on the keyboard. When you press "Alt" the first letter of every menu is highlighted. When she presses a certain letter the menu drops down, and the first letter of every submenu is then highlighted. She can then navigate through all the submenus until she hits the selection she wants, all using the left hand on the keyboard. It's very fast and efficient. Can you do something similar to this on a Mac?
    The reason she wants to do this is because when she is in Photoshop, she likes to use her right hand on the mouse with the cursor inside the canvas (sketching, moving layers around) while she makes menu commands with the left hand. It is 10 times faster this way than using the mouse for everything. Hot keys are not the same because you must have those memorized. With the "Alt" key function, you can open a drop down menu, see the choices, and make your selection.
    I have been a Mac person my whole life, and I have to say, it's a pretty awesome function. I really want the Mac to have something similar.

    Barney-15E wrote:
    [Actual studies|http://www.asktog.com/TOI/toi06KeyboardVMouse1.html] have found it is faster to use the mouse to make command activations than using keyboard shortcuts.
    The 20-year-old argument on that web page isn't very convincing. Keyboard shortcuts are certainly faster for experience power users who do the same thing every day. The mouse is faster only for new users or users doing non-repetitive commands every day.
    It is interesting that one of the posts on that page said this:
    I remember one mainframe company in the sixties that came up with the following command-key guidelines:
    Use the first letter of the command word
    If the first letter is already used, use the last letter
    If the last letter is already used, use the second letter
    If the second letter is already used, use the second-to-the-last letter
    etc.
    This is actually very similar to how the keyboard-driven menus work in Mac OS X. The advantage over the Windows method is that when there is more than one command in a menu that shares the same first letter, you do not have to memorize which command uses which letter. You just type ahead until the correct command is selected.
    I would, however, encourage Derek Doublin1's girlfriend to learn the direct keyboard shortcuts in Photoshop. On Mac or PC, for me pressing Command-Option-I is much faster than either the mouse or using the keyboard to drop the Image menu and walk down to the Image Size command.

  • How can i navigate to a webpage in project siena

    How can i navigate to a webpage in project siena

    Hello,
    You can use
    Launch(“http://www.bing.com”)
    This will load the webpage in the default system browser.
    In the current release there is no control in Siena to load a page within Siena itself
    Regards
    StonyArc

  • HT1338 For whatever reason, I can't use (mac) mail on G5 with Charter.  Would like to try Thunderbird (TB) -now using Firefox 3.6.28.  But can't navigate through Mozilla to find older versions  of TB.  Other alternatives

    For whatever reason, I can't use (mac) mail 3.6 on my mac G5 with Charter ISP.   I would like to try Thunderbird (TB) - I'm now using Firefox 3.6.28.  But I can't navigate through Mozilla to find older versions  of TB.  Can you suggest a URL for down loading older versions of TB, or, other alternative email programs?

    I have recently moved from Thunderbird to SeaMonkey - much better and up to date with the latest Mozilla code.
    See my SeaMonkey page at: http://links.zero.eu.org/seamonkey/
    For PPC - download the latest SeaMonkey-ppc from:
    https://code.google.com/p/seamonkey-ppc/downloads/list
    For Intel - download normal SeaMonkey from:
    http://www.seamonkey-project.org/releases/
    Old versions of Thunderbird can be found here:
    ftp://archive.mozilla.org/pub/mozilla.org/thunderbird/releases/
    The latest Thunderbird for PPC is 3.1.20.

  • How can we navigate between two windows of same component in webdynpro ABAP

    Hi
    how can we navigate between two windows( not views ) of same component in webdynpro ABAP. its an urgent requirement
    Thanks in advance.
    Regards
    Laeeq

    Hi Laeeq,
    You cannot navigate between windows of one component. You can only call a dialog box showing the contents of a second window, or you can embed the contents of a window of a different component.
    Just add all the views you need to the one and only main window of the component.
    Ciao, Regina

  • Is the gps in the ipad working independently when not having telephone connection? Can I navigate with the ipad on sea?

    Is the gps in the ipad working independently when not having sim-contact for internet or telephone? Can I navigate with ipad on sea?

    Is there an App for the iPad that will show my GPS present position on a world map,
    even when I'm at sea?
    Thanks,
    Tomac

  • How can i navigate between windows?

    Hi.
      Experts
        I want to navigate between windows.Because i am making a project of Guest House management in webDynpro.So many many screens are there to built and link.I am planning to make a single webdynpro component for it.
    Is this right?If yes Tell me how can i navigate between windows.
       (like room request to allocate room and many other window).
    Regards
    Sunny.

    HI Sunny
    If You want to make a window DEFAULT follow these steps
    1) Suppose if you have 2 windows say Window1 and Window2
    2) Double Click on your Application
    3) In Application <b>Properties</b> --><b>Interface View</b>
    you will get two interface views Window1InterfaceView and Window2InterfaceView
    4) Select which ever window you want to make as default
    and make your view in desired window's <b>DEFAULT </b>property to <b>true</b>
    Best Regards
    Chaitanya.A

  • When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen.

    When pulling down a long pulldown menu, the menu, instead of starting a new row, will extend past the bottom and behind the browser so that I can't navigate to an item that's below/behind the screen. FF should be making a second row for these long pulldown menus, right?

    Nope, there is no second row. There should be a scroll arrow "button" at the bottom and the top of that drop-down to allow you scroll, or you can use the scroll wheel on the mouse scroll further down (or back up).

  • Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies th

    Just updated to 3.6.8. Now can't navigate reliably. Frequently get this error message: "Server Error in '/' Application. Validation of viewstate MAC failed. If this application is hosted by a Web Farm or cluster, ensure that configuration specifies the same validationKey and validation algorithm. AutoGenerate cannot be used in a cluster." Pending fix of this glitch, is there a way to go back to previous version of Firefox that worked perfectly well?
    == URL of affected sites ==
    http://www.americanleather.com/ComfortSleeper/Madison.aspx?page=2

    Hi JH,
    According to your description, my understanding is that you got an error when you deleted  columns in SharePoint 2010.
    Please add the following string in <system.web> section of your web.config file :
    <pages validateRequest="false" enableEventValidation="false" viewStateEncryptionMode ="Never" />
    Note: before changing web.config, please make a backup for the file.
    Here are some similar posts for you to take a look at:
    http://forums.asp.net/p/1355367/2778642.aspx
    http://forums.asp.net/t/1166634.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • PC users can't navigate my site, the home page is frozen

    When I publish minor changes to my site (added graphic cirles behind photos), Mac users can easily navigate my site, but PC users cannot.  The home page is completely frozen for for them, and the links on the site cannot be clicked through.  Does anyone know why this is happening?  My site is:  www.flourpowered.com.  I publish through Go Daddy.  Thanks.

    Looking at the browser activity window proves OT's point that the sum total of the image files are causing the page to load slowly. IE is notoriously slow and will not have much chance with a page like yours.
    You should also consider using an optimizer application which will help your pages download up to twice as fast...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Optimize.html
    Webcrusher now has built in features to help your site when viewed in IE....
    http://www.iwebformusicians.com/iWeb/Browser-Compatibility.html
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How do we make a one to one appointment ( not genius bar) one to one ( already paid for, but can't navigate to appointment page?

    How do we make a one to one appointment ( not genius bar) one to one ( already paid for, but can't navigate to appointment page?

    Did you get a link when you did it?
    Your One to One Page
    When you sign up for One to One, you get your own web page, where you can make reservations, read tips and tricks, write notes, and view sample projects.
    http://www.apple.com/retail/one-to-one/
    The reservations are made online; if you have trouble navigating  it, the trainers can help.
    http://bettymingliu.com/2012/01/how-to-use-apples-one-to-one-program/
    Is this the link you need?
    https://supportprofile.apple.com/

  • When I try to go on the internet with my iPad 2, the whole section is greyed out.  I can see the webpage, but can not navigate any further.

    When I try to go on the internet with my iPad 2, the whole section is greyed out.  I can see the webpage, but can not navigate any further.  I do have wifi access, though.

    Try:
    - A reset. Nothing will be lost.
    Reset iPod touch:  Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears
    - Power off and then back on the router
    - Reset Network Settings: Settings>General>Reset>Reset Network Settings
    - iOS: Troubleshooting Wi-Fi networks and connections

  • HT4061 The screen on my Iphone 5 has zoomed and it will not go small again. How can I get it back? I can not navigate on the page at all and I can not power down the phone.

    The screen on my iphone 5 has zoomed and I can not navigate on the page. How can I reset it?

    Then go to Settings/General/Accessibility and turn off Zoom.

  • How can i navigate system preferences if trackpad is not working  somehow the option were unchecked

    How can i navigate system preferences if trackpad is not working? 
    Somehow the first couple of trackpad functions were unchecked and since they are not operational I can't click or tap to turn them back on.
    I've tried shutting down and restarting and holding my hand on the trackpad for 3-4 sec. then sliding it off (another post had this suggestions).
    I don't use the function keys at all to navigate the computer so I am at a total loss if the trackpad does not work.

    Thanks for the response.
    Unfortunately this did not work - the tap to click is still not checked - and the tap function does not work.
    I did try it twice - and even used a stopwatch to be sure I got the time right.
    I noticed there is also an instruction to reset PRAM (was with the SMC reset instructions).  Is that something that may help?

Maybe you are looking for