HP LP3065 - problems selecting input

Dear people,
Quite some time ago I purchased the LP3065 monitor, it has always worked perfectly well.
Until recently II had only one PV with DVI output. No matter which of the inputs on the monitor I connected the cable to, it worked perfectly well. I did also have a HDMI to DVI conversion cable which did NOT work on any of the three inputs so I assumed that in the conversion perhaps some signal lacked for the monitor to respond to.
Meanwhile however I now have 3 computers with DVI outputs. Each one by itself responds fine with the monitor: immediate resonse and switching to the right source.
HOWEVER, I would like to connect all three computers to the three monitor inputs and then select byswitching the monitor from one input to another. I assumed that for this one merely needed to push the input button.
unfortunately I can puush that button until I get blue in the face, there is absolutely no response.
Perhaps I should mention that my first and fastest computer with Radion videocart remains dominant over the other two if more than one PC gets connected. So I need to physically remove that cable from the PC or from the monitor to give the other one a chance.
Can anyone tell me: is this a defect in the monitor or do I make some operating mistake?

I have the same problem. MacPro 2008 + HP 3065.
Generally, if I use the power switch (not the power button, the switch next to the power cord) and power it off for maybe 15 seconds, it works normally when I switch it back on.
To be fair, I had the same problem with my HP 2335.

Similar Messages

  • Problem with input.readLine()

    import java.io.*;
    public class HorseMain
         public static void main(String[] args) throws IOException
              //declare the FILENAME
              //the user will later give the FILENAME
              String horseFILENAME;
              //declare the variables to be manipulated
              String name, stable, winner, commentsStewards, commentsJockey, commentsPersonal;
              int rating, race, distance;
              String command;
              //Mastery Factor 9: Parsing a text file or other data stream
              //This will be used to accept the input from the user
              BufferedReader input = new BufferedReader( new InputStreamReader(System.in) );
              System.out.println("\t\t\t\tHORSES");
              System.out.println("Enter the name of the file where the horses are saved:");
              horseFILENAME = input.readLine();
              //calling the HorseFile class
              //the actual argument horseFILENAME will be used to open the file
              HorseFile horse = new HorseFile(horseFILENAME);
              //call the load method to load the contents of the file storing the data
              horse.load();
              //asking for user input
              System.out.println("Please enter one of the given commands");
              System.out.println("\t[a]dd a horse");
              System.out.println("\t[d]elete a horse");
              System.out.println("\t[e]dit details of a horse");
              System.out.println("\t[s]earch for a horse by its name");
              System.out.println("\t[p]rint the details of all the horses in the collection");
              System.out.println("\t[g]et the horses having encountered problems in their last race");
              System.out.println("\t[q]uit the program");
              while (true)     //the system must return true
                   System.out.println("Command: ");
                   command = input.readLine();
                   //using simple if...else selection to determine what action to be taken from command
                   //if the user wants to add a horse
                   if (command.equals("a"))
                        obtainName(name);
                        //perform search to determine whether this horse already exists
                        //if the horse already exists, message to inform user
                        if (horse.search(name) != null)
                             //message to inform the user that this horse already exists
                             System.out.println(name+ " already exists!");
                        else
                             //obtain the details on the horse
                             obtainStable(stable);
                             obtainRating(rating);
                             obtainRace(race);
                             obtainDistance(distance);
                             obtainWinner(winner);
                             obtainCommentsStewards(commentsStewards);
                             obtainCommentsJockey(commentsJockey);
                             obtainCommentsPersonal(commentsPersonal);
                             //add a new horse record
                             if (!horse.add(name, stable, rating, race, distance, winner, commentsStewards, commentsJockey, commentsPersonal))
                                  System.out.println("Sorry");
                                  System.out.println(name + " cannot be written to file");
                   //if the user wants to delete a horse
                   if (command.equals("d"))
                        System.out.println("Enter name of horse to be deleted: ");
                        name = input.readLine();
                        //perform search to determine whether this horse already exists
                        //if horse does exist, horse is deleted
                        if (horse.search(name) != null)
                             horse.delete(name);
                             System.out.println(name + " deleted!");
                        //if horse does not exist, message is output
                        else
                             System.out.println(name + " not found!");
                   //if the user wants to edit the details of a horse
                   if (command.equals("e"))
                        System.out.println("Enter name of horse to be edited: ");
                        name = input.readLine();
                        //perform search to determine whether this horse already exists
                        //if the horse does exist
                        if (horse.search(name) != null)
                             //obtain the new details of the horse
                             obtainStable(stable);
                             obtainRating(rating);
                             obtainRace(race);
                             obtainDistance(distance);
                             obtainWinner(winner);
                             obtainCommentsStewards(commentsStewards);
                             obtainCommentsJockey(commentsJockey);
                             obtainCommentsPersonal(commentsPersonal);
                             horse.edit(name, stable, rating, race, distance, winner, commentsStewards, commentsJockey, commentsPersonal);
                        //if the horse does not exist
                        else
                             System.out.println(name + "not found in collection");
                   //if the user wants to print the details of all the horses
                   if (command.equals("p"))
                        horse.display();
                   //if the user wants to quit the program
                   if (command.equals("q"))
                        break;     //the system exits from the if...else selection
              input.close();
              horse.save();
         /**This is the method to get the name of a horse from the user
         **validation rules: length check
         **The length of a horse name cannot exceed 18 characters.
         public static void obtainName(String name)
              System.out.println("Name of horse: ");
              name = input.readLine();
              //using simple if...else to validate user input
              if (name.length() <= 18)
                   //do nothing
              else
                   //output error message
                   System.out.println("Error! Name should not exceed 18 characters");
                   //Using mastery factor recursion to allow the user to input the name again
                   obtainName(name);
         /**This is the method to get the stable of a horse from the user
         **No validation rules are used
         **Any string is accepted
         public static void obtainStable(String stable)
              System.out.println("Stable: ");
              stable = input.readLine();
         /**This is the method to get the rating of the horse from the user
         **Validation rules: range check
         **Rating should be between 20 and 110
         public static void obtainRating(int rating)
              System.out.println("Rating: ");
              rating = Integer.parseInt(input.readLine());
              //using multiple if...else selection
              if ( (rating >= 20) && (rating <= 110) )
                   //do nothing
              else
                   //output error message
                   System.out.println("Error! Rating should be between 20 and 110");
                   //using mastery factor - recursion - to allow the user to input the rating again
                   obtainRating(rating);
         /**This is the method to get the number of the last race run by the horse
         **Validation rules: range check
         **Race number should be between 11 and 308
         public static void obtainRace(int race)
              System.out.println("Race number: ");
              race = Integer.parseInt(input.readLine());
              //using if...else
              if ( (race >= 11) && (race <= 308) )
                   //do nothing
              else
                   //output error message
                   System.out.println("Error! Race number should 11 and 308");
                   //using mastery factor - recursion - to allow the user to input the rating again
                   obtainRace(race);
         /**This is the method to get the distance of the last race
         **Validation rule: comparison check
         **Distance can either be 1365, 1400, 1500, 1600, 1800, 2000, 2200, 2400
         public static void obtainDistance(int distance)
              System.out.println("Distance: ");
              distance = Integer.parseInt(input.readLine());
              //using if...else
              if ( (distance == 1365) || (distance == 1400) || (distance == 1500) || (distance == 1600) || (distance == 1800) || (distance == 2000) || (distance == 2200) || (distance == 2400) )
                   //do nothing
              else
                   //output error message
                   System.out.println("Error! Distance can either 1365, 1400, 1500, 1600, 1800, 2000, 2200, 2400");
                   //using mastery factor recursion to allow the user to input the distance again
                   obtainDistance(distance);
         /**This is the method to get the winner of the last race
         **Validation rule: length check
         **The name of the winner cannot exceed 18 characters
         public static void obtainWinner(String winner)
              System.out.println("Winner: ");
              winner = input.readLine();
              //using if...else
              if (winner.length() <= 18)
                   //do nothing
              else
                   //output error message
                   System.out.println("Error! The name of the winner cannot exceed 18 characters");
                   //using mastery factor recursion to allow the user to input the winner again
                   obtainWinner(winner);
         /**This is the method to get the stewards' comments on a horse
         **No validation rules
         **Any string is accepted
         public static void obtainCommentsStewards(String commentsStewards)
              System.out.println("Stewards' comments: ");
              commentsStewards = input.readLine();
         /**This is the method to get the stewards' comments on a horse
         **No validation rules
         **Any string is accepted
         public static void obtainCommentsJockey(String commentsJockey)
              System.out.println("Jockey's comments: ");
              commentsJockey = input.readLine();
         /**This is the method to get the stewards' comments on a horse
         **No validation rules
         **Any string is accepted
         public static void obtainCommentsPersonal(String commentsPersonal)
              System.out.println("Personal comments: ");
              commentsPersonal = input.readLine();
    }

    I see one problem already though. You defined "input" as a local variable in your main method, and then refer to it all over the place, outside of the main method.
    If you want to use input like that, you'll have to define it as a field, not a local variable.
    By the way your code is structured in a kind of hairy way. In OOP you usually want to structure your code around self-contained, encapsulated state and behavior, not just as a bunch of individual actions effecting global variables.

  • Dictation will not respond to selected input setting

    Dictation will not respond to selected input setting. It was working fine until the last update now this problem has arisen. I have to do a workaround through sound and select internal mic directly from there which I never had to do before.

    If you updated to 6.1 & the problems began then - you might have Glims installed...
    How do I uninstall Glims? | www.MacHangout.com
    If not, test briefly in a new or Guest user account on your computer.

  • Problems selecting paper bin/source with some printers drivers

    Hi,
    I'm using CR2008 SP2 .NET SDK.
    With some printers drivers i'm unable to set the correct paper source in the print options.
    For example, if I use Toshiba e-series PLC driver (you can find it here:drivers and select, for example, the e-STUDIO281C printer).
    Even if i set the correct paper source on the report designer when i print it through code (without applying any changes to the report) the report is always printed by the default paper source defined at the printer preferences.
    The same thing happens when you do it through the designer.
    I already tried the following workaround but without any success: at the CR Designer, go to the File Menu, and choose Page Setup. Under Page Options, check the Dissociate Formatting Page Size and Printer Paper Size. This often helps with these issues. Resave the report, and see if that works any better.
    Is there any known issues with printer drivers and CR2008?
    (This thread was originally posted in [.NET Development forum|Re: Problems selecting paper bin/source with some printers drivers])

    Oops, sorry my mistake. I'll leave it here for now.
    How CR works is to get the Printer info from the DEVMODE structure, which is where the printer driver settings and configurations are saved for each printer installed.
    What I've seen plenty of times before is within the DEVMODE structure there is one area called DMExtra and in that structure it holds various custom options. Quite often the issue is we query that structure to get info but the problem lies in the driver returning an invalid structure size and therefore CR can't use any custom settings.
    Same type of issue if they use an uncommon (ENUM) value for the paper size. In code you can see this in debug mode. But if you simply pass the values as pointers and not attempt to alter them at all CR should not alter what the designer used and saved in the RPT file when the reprot was designed.
    What can happen when CR loads the printer info it fails due to problems with the printer itself. There are missing files from the install of the printer which cause Crystal to stop getting the info.
    Try this on a clean PC with no other printers installed, Install just that printer driver and then install Crystal Reports. If it still fails then we know it could be Crystal having problems with that driver. You may want to post your issue with the printer manufacturer also. They may be able to test also and determine if it is a CR or their driver issue. They can download a trial version of CR for testing.
    Trial lin is: Direct link to the Trial version: http://www.sap.com/solutions/sapbusinessobjects/sme/freetrials/index.epx
    If that's not an option you could purchase a support case here for one of our Engineers to escalate to R&D. If it turns out to be a CR problem then you'll get a credit for the case, if it is a printer driver problem then no credit.
    Single Case Purcahse is: http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551
    Be sure to tell them it needs to go to the Report Designer team first.
    There is also a possibilty their driver has issue with Windows OS and the .NET framework. Crystal reports is also UNICODE compliant so the printer driver would have a better success rate if their driver was also unicode compliant.
    Bottom line is if it doesn't work in Crystal Designer it won't work in code either.
    Thanks again
    Don

  • Navigational Attribute Problem in Input Query

    Hi,
    I am having a problem in input query implementation which uses a navigational attribute. I have, for eg, only one char 'customer' in rows; i want to exclude the customers with the status D (deleted) from displaying (Status is nav. attr. of customer).  I tried this by restricting in filter, Status D-"exclude". But as soon as I do this, query no longer remains input ready! (I also tried putting the same restriction in Default Values area rather than Filter, but ended with the same result )
    I discovered that if, furthermore, I put Status in rows (with the above said restriction still remaining), query is again input ready.
    Can't we exclude values in the filter on an input query? I want to know if this is a restriction with IP or a bug?

    Hi Gregor,
    Thanks for the explanation. But this makes me wonder, because due to this restriction one of the BIG advantages queries had over the planning layouts of BPS, seems to be gone. I mean, using navigational attributes for filtering; if we have to always have a single value restriction on a nav. attr., this will really be restricting. Is it expected that this will be changed in a later SP?
    And there is another problem that is coming due to this. When I use the exclude filter and also the nav. attr. Status in rows, then the query becomes input ready, but there are warning messges displaying when the query opens saying -
    Characteristic Customer has no master data for "C1"
    Characteristic Customer has no master data for "C2"
    etc... (these are the customers with status D). We are on SP15.
    Please suggest what should I do to get rid of these messages?
    Edited by: Mayank Gupta on Apr 10, 2008

  • System.read.in(); -problems when inputting numbers

    Very wet behind the ears when it comes to java and having problems in inputting numbers. My course requires me to write a program that converts degrees c to degrees f. An addition is to have the user input the value of degrees c. When I input a value, say 0, then instead of c being that value it is 49 instead (maybe ASCII?). I sense that the problem is the System.in.read(); bit. I've preceded it with (int) and also tried (char) but to no avail. The other problem is how to get the program to accept a double figure or treble figure input (i.e 20 degrees c). My program is below. Any advice would be greatly appreciated.
    //This program is designed to convert degrees Celsius into degrees Fahrenheit
    class Ctof
         public static void main(String[]args)
         throws java.io.IOException
              //identify variables
              int c;
              double f; //double is needed as calculation involves fractions
              System.out.println("Please input a value of degrees Celsius then press [Enter]");
              c=(int)System.in.read();
              f=(c/(5.0/9.0))+32;
              System.out.println(c + " degrees Celsius"); //prints value of c
              System.out.println("This is " + f + " degrees Fahrenheit"); //prints value of f
    }

    I think this should work...
    import java.io.*;
    class Ctof
    static BufferedReader b;
    public static void main(String[]args)
    throws java.io.IOException
    //identify variables
    int c;
    double f; //double is needed as calculation involves fractions
    b = new BufferedReader(new InputStreamReader(System.in));
    System.out.println("Please input a value of degrees Celsius then press [Enter]");
    c = Integer.parseInt(b.readLine());
    f=(c/(5.0/9.0))+32;
    System.out.println(c + " degrees Celsius"); //prints value of c
    System.out.println("This is " + f + " degrees Fahrenheit"); //prints value of f
    } I've added a BufferedReader to read data from the input stream (System.in). This then gets converted to an int. System.in.read() is only really for reading bytes.
    Andrew

  • Hi ,i want provide a input help for a Selection input field

    Hi Experts,
    I want to provide  a input help for field in selection-screen ,
    this field is non primary key Custom Table(Z) selection input field .
    how we can get ,f4 help for this field.
    how to get f4 help Suppose field Link s_mtart-low,s_mtart-high,
    What are the function moduled available for this >
    Thanks in Advance.
    Regards,
    Hitu.

    Hi,
    refer to below code.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_usnam-low.
    **//To provide F4 help to S_USNAM-LOW
    PERFORM f_f4help_usnam USING 'S_USNAM-LOW'.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_usnam-high.
    **//To provide F4 help to S_USNAM-HIGH
    PERFORM f_f4help_usnam USING 'S_USNAM-HIGH'.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_wbs-low.
    **//To provide F4 help to S_WBS-LOW
    PERFORM f_f4help_wbs USING 'S_WBS-LOW'.
    *AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_wbs-high.
    **//To provide F4 help to S_WBS-HIGH
    PERFORM f_f4help_wbs USING 'S_WBS-HIGH'.
    *&      Form  f_f4help_usnam
        To provide F4 help to username
         -->P_0019   text
    *FORM f_f4help_usnam  USING    value(p_0019) TYPE any.
    **// To retrieve username from mkpf.
    SELECT bname
            FROM usr01
            INTO TABLE it_usnam.
    SORT:  it_usnam  BY usnam.
    DELETE ADJACENT DUPLICATES FROM it_usnam COMPARING usnam.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
      DDIC_STRUCTURE         = ' '
          retfield            = c_retusnam
      PVALKEY                = ' '
        dynpprog              = c_dynpprog
        dynpnr                = c_dynpnr
         dynprofield          = p_0019
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
         value_org            = c_s
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
      IMPORTING
      USER_RESET             =
        TABLES
          value_tab           = it_usnam
        field_tab            = it_usnam.
      return_tab             = l_it_ret
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    *ENDFORM.                    " f_f4help_usnam
    *&      Form  f_f4help_wbs
        To create F4 help for wbs element
         -->P_0039   text
    *FORM f_f4help_wbs  USING    value(p_0039) TYPE any.
    **// To retrive wbs element from mseg
    SELECT pspel
            FROM pspl
            INTO TABLE it_wbs.
    SORT:it_wbs   BY  wbs.
    DELETE ADJACENT DUPLICATES FROM it_wbs COMPARING wbs.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
       EXPORTING
      DDIC_STRUCTURE         = ' '
         retfield               = c_retwbs
      PVALKEY                = ' '
       dynpprog               = c_dynpprog
       dynpnr                 = c_dynpnr
        dynprofield            = p_0039
      STEPL                  = 0
      WINDOW_TITLE           =
      VALUE                  = ' '
        value_org              = c_s
      MULTIPLE_CHOICE        = ' '
      DISPLAY                = ' '
      CALLBACK_PROGRAM       = ' '
      CALLBACK_FORM          = ' '
      MARK_TAB               =
    IMPORTING
      USER_RESET             =
       TABLES
         value_tab              = it_wbs
      FIELD_TAB              =
      return_tab             = l_it_ret1
      DYNPFLD_MAPPING        =
    EXCEPTIONS
      PARAMETER_ERROR        = 1
      NO_VALUES_FOUND        = 2
      OTHERS                 = 3
    *ENDFORM.                    " f_f4help_wbs

  • Problem selecting date

    i am trying to find out details about purchase orders that were generated on 10th of january 2006.
    I fire following query to get the job done. But there is a problem with this query
    It does show records for po's generated on 10th jan, but also includes records for 9th jan.
    I can use date 8th of jan along with time parameter 23:59:59.
    But i don't think it is a correct approach. Can anybody pls give an alternative for this problem.
    select * from purchase_order where po_date > '09-jan-2006' and po_date<'11-jan-
    2006'

    select * from purchase_order where po_date > '09-jan-2006' and po_date<'11-jan-2006' When you said '09-jan-2006' is same as '09-jan-2006 00:00:00', so you will take all row which have '09-jan-2006' with a time after midnight.
    You can use trunc :
    select * from purchase_order where trunc(po_date)=to_date('100106','DDMMYY');Nicolas.

  • Problems with Input Ready Query

    Hello All,
    I'm facing problems with input ready query for BI IP.
    I've created the input query on aggregation level and maintianed all the planning settings.  It is not allowing me to edit, when i'm attaching in the web template.
    I also attached a button copy function, and i'm able to execute it and save it, but it not allowing me to change manually.
    I also enabled the 3rd option for keyfigures...data can be changed with planning functions and user input.
    Please help me in this regard.
    We have just started the development of BI-IP, please suggest me if there are any notes to be applied.
    Regards
    Kumar

    Hello Johannes,
    Yes I've set to the finest granularity...even if it is Only one characteristic and one key figure without any restrictions...
    I've checked even planning tab page under properties...it is also fine..
    But still it is not allaowing me to go to edit mode...this is a fresh instalation and the query i'm working is the first one...
    Please suggest me if there are any notes to be applied, we are on Support Pack 10.
    Regards
    Jeevan Kumar

  • Selection inputs in report designer

    Hello Friends,
    Need some help .
    I am currently working on BI7 and there is one requierment for Report Designer.
    Actaully user is looking for the selection creteria after execution of the report like
    I have executed the report designer application with the company code 5060 ,
    then I should be able to the see the selection creteria , where as I am able to see the data.
    In this case ,I am able to see the data but could not guess that what was the my selection creterai like we get in Bex Query or in Bex Anaylyzer.
    So please let me know how can we check the selection input which we have given or how can we display selection input in Report designer ?
    Is there any specific settion , please advice .
    Thanks in advance.
    Regards

    Hi,
    all the values in a selection screen are variables, and in the report designer is't possible to add the variables of a query, so I think it must be possible to add your selection.
    But this is only possible if you first execute the report to the web and not directly to PDF...
    First add a report section with different rows and columns, and then drag and drop the variables...
    Greatz
    Joke

  • Selection input should display in report designer

    Hello Friends,
    Need some help .
    I am currently working on BI7 and there is one requierment for Report Designer.
    Actaully user is looking for the selection creteria after execution of the report like
    I have executed the report designer application with the company code 5060 ,
    then I should be able to the see the selection creteria , where as I am able to see the data.
    In this case ,I am able to see the data but could not guess that what was the my selection creterai like we get in Bex Query or in Bex Anaylyzer.
    So please let me know how can we check the selection input which we have given or how can we display selection input in Report designer ?
    Is there any specific settion , please advice .
    Thanks in advance.
    Regards

    thanks Ajeet ,
    But this is regarding Report Designer where i create appliction which is based on the WAD or Bex Query . Do we have any setting in Report designer where we can check the selection input which user has given while execution of the report.
    Thnks . please advice.
    Regards

  • Problem with input data format - not "only" XML

    Hi Experts,
    I have problem with input data format.
    I get some data from JMS ( MQSeries) , but input format is not clear XML. 
    This is some like flat file with content of XMLu2026.
    Example:
    0000084202008-11-0511:37<?xml version="1.0" encoding="UTF-8"?>
    <Document xmlns="urn:xsd:test.01" xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance Sndr="0001" Rcvr="SP">
    ...content....
    </Document>000016750
    Problems in this file is :
    1. data before parser <? xml version="1.0"> -> 0000084202008-11-0511:37 
    2. data after last parser </Document> -> 000016750
    This data destroy XML format.
    Unfortunately XI is not one receiver of this files and we canu2019t change this file format in queue MQSeries ( before go to XI) .
    My goal is to get XML from this file:
    <?xml version="1.0" encoding="UTF-8"?>
    <Document xmlns="urn:xsd:test.01" xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance Sndr="0001" Rcvr="SP">
    ...content....
    </Document>
    My questions:
    1. Is any way or technique to delete this data 0000084202008-11-0511:37  in XI from this file ?
    2. Is any way to get only XML from this file ?
    Thanx .
    Regards,
    Seo

    Hi Buddy
    What is the XI adapter using?
    If you use inbound File adapter content conversion you could replace these values with none and then pass it to the scenario.
    Does that help?
    Regards
    cK

  • Problems selecting images in LR4

    I've been having problems selecting images in the library module when multiple images are in view (not down in the timeline, but in the main window). It seems sporadic with which ones it won't let me select, it somehow manages to be the ones that I need to click....!! I just literally can't click it as if it were an image I already imported or something, but it's not grayed out like that. I've been having to select a nearby image then use my arrow keys to navigate to and click the image I need. Any ideas about what is happening? Thanks so much for any ideas, it's really strange and just started last night.

    There was a bug forever-ago that certain areas of the screen simply didn't respond to any clicks.  I think the solution was to rebuild the preferences file.  Does that sound like the same issue perhaps?

  • Why do I get "Select Input Method" dialog when trying to open tabs on some sites?

    This is what I'm experiencing with Firefox mobile on an Android tablet.
    On some sites, when I click a button which should open a new tab, I get the "Select Input Method" dialog box. First, I don't know why this dialog is popping up. Second, it is an empty dialog; there is nothing to select, only a heading that says "Select Input Method". When I touch the heading, I get another "Select Input Method" dialog, this time with "Android Keyboard" as the sole item to be selected. It is already selected. Touching it or backing up to dismiss it leaves me on the page I started on. Touching the original button which should open a new tab simply repeats the entire dialog sequence. Backing up from the original, empty dialog, does the same thing.
    Once or twice, by magic or something, I was able to get the page to open the new tab. But I cannot confirm what sequence of selecting or backing up out of the dialogs may have led to the correct behavior.
    Any help would be appreciated.

    kbrosnan,
    Thanks for the reply. Sorry it took so long to get back to you.
    My wife is working on a project so I'm a little light on details. Apparently she figured out that her Javascript is calling ShowModalDialog and this was what was causing the Select Input Method dialog to open. I don't fully understand the details but she's looking for a different way to do this. I believe she said she subsequently found out that the Firefiox mobile browser doesn't support ShowModalDialog.
    She's new to mobile web development (and I know nothing about it) so she's kind of feeling her way. If you have a good resource for how the FF Android mobile browser differs from the normal desktop browser, that wouldbe a big help, I think. Otherwise, thanks for you reply and she'll keep plugging away discovering what she needs to change in her program to make it work for mobile.
    Thanks.

  • Problem - I input a new event into my iPhone calendar and it does not update on my iMac or iPad. I have loaded the latest software on all devices and have switched over to iCloud. Suggestions?

    Problem - I input a new event into my iPhone calendar and it does not update on my iMac or iPad calendars. I have loaded the latest software on all devices and have switched over to iCloud. Suggestions?

    On the iMac open System Prerferences > iCloud
    Deselect the box next to Calendars then reselect then restart the iMac.
    On the iPad, tap Settings > iCloud
    Switch Calendars off then back on then reset the iPad.
    Hold the On/Off Sleep/Wake button and the Home button down at the same time for at least ten seconds, until the Apple logo appears.
    Hopefully the event synced over all the devices.

Maybe you are looking for

  • Creating Student Web Site Folders on Leopard Server

    We recently got an Xserve to use as a Web server for hosting my class site and my student Web sites (~220 per year). I have it setup as a Web server no problem and it is already hosting the class page. I have no clue how to run it like an ISP host or

  • Network Flexibility, L2 or L3 access?

    My company operates a small mobile network that supports ~75 users. Our physical location is moved on a regular basis and the area that houses the users is modified with each relocation based off of available space and resources. Due to wiring requir

  • I need to reinstall but...

    i don't have instalation dvd and now I've in my hands a macbook pro 15" de 2006, the one with intel core 2 duo 2.33 Ghz 2Gb RAM, bus 667, 120Gb HD... Well I'm using bootcamp and I've no space left and I want to format it... where can I buy an origina

  • Display splash screen while downloading applet jar file

    I've tried to search the forums, but most results I get are how to display a splash screen while the classes are loading. Unfortunately, the classes do not begin loading until after the jar file has been downloaded. How does one go about showing as s

  • Movie length and dual layer burning - please help!

    I just posted this question in the iMovie forums but thought it might be more appropriate here: Hi everyone, I've just finished my first iMovie project, and the total movie length is 2hours, 31 minutes. I've noticed from a few other posts that people