Impossible to print a web page with icon, cntl-P or drop-down list - nothing happens

Just as simple as that. Cannot print anything. In addition, select all from the Edit menu does nothing.

See this:

http://KB.mozillazine.org/Problems_printing_web_pages

Tags: Firefox

Similar Questions

  • Impossible to print a Web page using photosmart premium c309a using Internet Explorer 9.

    I just installed Internet Explorer 9. Now, I can't print a Web page using my network photosmart premium c309a. I also have a Photosmart c6250 networked and I peut print for her. What gives? Am I missing something? I know that this is a known problem by searching the problem and Windows solution does not help.  I have no problem with the c309a print when I go to the internet, it's just a problem of Web page with IE9.  All/any help would be appreciated.

    HP helped me by making me install a different driver. Download and install the printer driver 6980. After installation, go to the printer properties and add a new Standard TCP/IP port and use IP address for the c309a.  I don't think I'm missing something, but I received the information from their chat support.  Then, when you want to print from IE9, choose the 6980 printer (which is actually the c309a printer).  This HP support doesn't help.  You must talk to a living person who knows something about printers.

    I hope this helps.  In fact, I switched to Mozilla Firefox as my default long ago, and it works very well with the c309a printer.  I only got this solution because I could be chatting with them on another printer and I mentioned that I could not print from IE9.

  • Populate drop-down list with the results of several drop-down lists

    Hi, I am creating a form where the results of two drop-down lists then would fill another drop-down list. I'm not new to javascript, but I'm new to using it in Acrobat, so while I found some answers to this: Drop-down list fill in multiple fields of text. I don't know where to implement this, if it is still the right thing, I'm looking for pipes for

    Oh and I use Acrobat Pro DC. Any help would be much appreciated!

    OK, you can create a function at the level of the document that is called in the Validate event of each of the two first drop down menus, something like:

    Function in JavaScript to the document level

    function updateDropdown() {}

    Get references to the drop-down menus of entry

    var F1 = getField ("DropdownList1");

    var F2 = getField ("DropdownList2");

    Refer to the output drop-down list

    F3 var = getField ("DropdownList3");

    Get the values of input field, as strings

    var s1 = event.target = f1? Event.value: f1.valueAsString;

    var s2 = event.target = f2? Event.value: f2.valueAsString;

    Fill the drop-down list of output with the elements, or deselect it if either input dropdown is 'empty' (single topic area)

    If (s1 = "" |) s2 === " ") {

    F3.clearItems ();

    } else {}

    F3.setItems (["", s1, s2]);

    }

    }

    In the two first downs Validate event, call this function like this:

    updateDropdown();

    You can of course name the function you want. More information about the properties and the methods used in the code are available in the Acrobat JavaScript documentation.

  • Impossible to print the web page in Firefox

    Since the evolution of the browser Firefox as my default browser, I can't print. Works very well with Explorer, but not Firefox. I printed a test page and printer removed OK. I made sure that my printer is selected, and I also tried the suggestion of "reset" which help to provided Firefox. Also, when I start now I asks me to reinstall my printer and did a few times.

    1. When you did the reset, you have reset all the preferences for this printer? Or just the main prefs?

    2 did you do the reset after you have reinstalled the printer software?

    3. what brand and model printer is this?

  • Right-click on photos, documents, icons etc. and the drop-down list takes 5 to 10 minutes to view and sometimes never. How to solve this problem?

    I right click on photos, documents, icons etc. and the menu drop-down selection to delete, rename, etc takes 5 to 10 minutes to display and sometimes never. How to solve this problem?

    Hello

    1. have there been recent changes to the computer before the show?

    I suggest to follow the steps provided and check if it helps.

     

    Method 1: Try to boot in safe mode and check if the same problem occurs.

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

     

    Method 2:

    If the issue does not exist in Mode safe mode then try to put your computer in a clean boot state.

    By setting your boot system minimum state helps determine if third-party applications or startup items are causing the problem.

    How to troubleshoot a problem by performing a clean boot in Windows Vista or Windows 7:
    http://support.Microsoft.com/kb/929135

     

    Note: After the boot minimum troubleshooting step, follow step 7 in the link provided to return the computer to a Normal startup mode.

    Hope this information is useful.

  • try to fill in a number field with the help of a drop-down list box control and a text box

    That's what I work with so far.  The lines of code are quite simple, but (as I expand this to its full size of accounting for all combinations of variables) the result field seems suffocating and will not auto-update to change the variables in the form. Var v comes from a drop down menu, var n is a numeric field.

    var v = this.getField("TextOptions").value;

    var n = this.getField("Number").value;

    If (v == "TextOptionA") if (n == '1') event.value = "2";

    else if (v == "TextOptionA") if (n == '2') event.value = "3";

    else if (v == "TextOptionA") if (n == '3') event.value = "3";

    else if (v == "TextOptionA") if (n == '4') event.value = "4";

    else if (v == "TextOptionA") if (n == '5') event.value = "4";

    else if (v == "TextOptionB") if (n == '1') event.value = "0";

    else if (v == "TextOptionB") if (n == '2') event.value = "0";

    else if (v == "TextOptionB") if (n == '3') event.value = "1";

    else if (v == "TextOptionB") if (n == '4') event.value = "1";

    else if (v == "TextOptionB") if (n == '5') event.value = "1";

    else if (v == "TextOptionC") if (n == '1') event.value = "2";

    else if (v == "TextOptionC") if (n == '2') event.value = "3";

    else if (v == "TextOptionC") if (n == '3') event.value = "3";

    else if (v == "TextOptionC") if (n == '4') event.value = "4";

    else if (v == "TextOptionC") if (n == '5') event.value = "4";

    else event.value = "";

    In addition, TextOptionA, C, E, G and I will produce the event.value even, given the same variable n.  The same is true with TextOptionB, D, F and H.  Is it possible to compress the "TextOptionX" s that will produce the same event.value gave a value of n in one line?  Something along these lines (I know its bad, but it's the idea):

    var v = this.getField("TextOptions").value;

    var n = this.getField("Number").value;

    If (v == 'TextOptionA' or 'TextOptionC') if (n == '1') event.value = "2";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '2') event.value = "3";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '3') event.value = "3";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '4') event.value = "4";

    else if (v == 'TextOptionA' or 'TextOptionC' or 'TextOptionE') if (n == '5') event.value = "4";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '1') event.value = "0";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '2') event.value = "0";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '3') event.value = "1";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '4') event.value = "1";

    else if (v == 'TextOptionB' or 'TextOptionD' or 'TextOptionF') if (n == '5') event.value = "1";

    else event.value = "";

    Something like that could be reduced to about 40 220 + lines of code.  Please help us on a mannequin of javascript.

    For the first part of the code, the problem might be that the value of the 'Number' field is a number, not a string (that you assume in your code).

    To solve that you can access the field valueAsString instead of the value property property.

    For the second part of the operator OR in JS code is ' | ', would therefore be the first if condition:

    If (v == "TextOptionA" | v == "TextOptionC")

    Note that the comparison of v must appear in both parts of the if statement, in its entirety.

  • When you move to a link * in * a Web page, want to right-click menu drop down for "this e-mail link" line

    When I read a blog and you want to send a link of thread/topic/from own section, I don't want to send the whole blog (I could do with the Menu file, send this link), I want to send the link to this thread * in * the blog. Only see it 't to do is right click hover on the title of the thread (which is a link), then copy the location of the link, then go to my mail... application which is awkward and time-consuminb
    What I want is another line of right click menu that would be "location of the Email link. None of the Add-ons I've looked at seem to do. Or am I missing something?

    Sorry my mistake, completely missed this sentence in your post. I'm so glad you found what you are looking for good.

  • i MAC mid 2011: error saving a scanned image by choosing Documents with text... the drop-down list of Preset MAC

    When I scan a text document and try to save it as a PDF, I get the error message "could not save scanned image.

    If I use parameters for general use, it records OK.  Any thoughts?

    Hello

    HP Easy Scan provides not less features HP Scan, this is a later version of the software.

    It provides the same functionality, such as capabilities, OCR, Image detection, scanning front panel and other capablities supplied by HP Scan.

    You can also install more HP Scan and test it, the current application will remain on your Mac.

  • When I try to click on my gmail and web addresses in the drop-down list of web addresses for twitter, it will not let me or redirects to a google search

    I type in "gm", and he shows up with my gmail link, but also other sites that I visit that start with "gm", but when I click on the gmail address in the menu drop-down list, nothing happens or it redirects to a google search for gm. It happens only with gmail and twitter so far. No idea how to solve this problem?

    One possible cause is a problem with the places.sqlite file that stores the bookmarks and history.

    You can also try to repair the database of places with this extension:

  • Can I REALLY print web pages with ePrint?

    I want to buy an ePrint printer. I know that I can print static web pages with my iPad via ePrint.
    But can also print dynamic web pages, or pages that I see after my login on my bank account?

    Example of dynamic web pages: http://drawisland.com/ or https://www.draw.io/
    Go to this page and draw something. You can print it via AirPrint?

    Thanks for any help or advice!

    Hello

    Did you ask an Airprint printer? For locations above, Yes. Any printer can print, but not all printers can use Airprint. One thing I want to mention here, printer will print the ENTIRE page. They allow you to save the drawings, you can save and print later.

    Kind regards.

  • Is it possible to add images/icons for a drop-down list box?

    I have created a form with several fields of text. The customer wants to be able to 'mark' some/all the of them with an icon (until there are only two icons of your choice)

    Due to the limit "real estate" on the form, it would help a lot if I could add these icons to a simple drop-down list. Unfortunately, I found no way to do it.

    Such an option exist?

    ... and if so, how?

    Thanks for any help or information

    No, but you can use a button to display images/graphics. If you are using JavaScript (for example, app.popUpMenuEx) to view the selections of text after you click the button, the script will mark the button icon to the corresponding selection. There are other similar types of things that would make with the buttons, but all rely on JavaScript. Note that this type of approach does not work on most mobile PDF viewers and not Adobe PDF viewers.

  • Hide several pages unless the drop-down list is selected

    Hello

    I have a 4-page form that I need to be able to hide 3 of 4 pages until a selection is made from a drop-down list on the first page box. So I have, for example, the pages marked:

    Page 1

    Page 2

    Page 3

    Page 4

    I have a drop down list which has

    Page 2

    Page 3

    Page 4

    for options and if no selection is made only Page 1, will be visible. If the selection is Page 2, I wish that all pages except page 2 to be hidden and only see page 2, did not 4 pages show and only show Page 2 fields.

    Does anyone know how to do this?

    Thanks in advance for any idea!

    The only downside to the activation of your condition is that the first page of the form can not be deleted. If you set page 1 "Hidden" will be hidden objects on the page, but the page itself will remain in the form that is displayed as a blank page.

    Attached shows a form with page 0-4 (5 pages). A drop down menu on page 0 and it controls the rendering of pages 1-4.

    Steve

  • How do complete you 1 text box with multiple drop-down list values

    I can fill in a text box with a value in a drop-down list, but if I have 2 drop-down list values going to the same area of text (multiple lines), the second drop-down list value removes the first value.

    (A similar code on the drop-down list 1 and 2 from the drop-down list)

    Change event - JavaScript

    If (xfa.event.newText == 'No') {}

    Form1.Page1.subform2.Description.RawValue = "no location listed.

    }

    If (xfa.event.newText == "Partial renting") {}

    Form1.Page1.subform2.Description.RawValue = "enumerated part place."

    }

    Do I have to Concat the fields in 1 text field so that it can have several values in drop-down list, and if so how do I do that?

    Thanks in advance for your help.

    Resolved:

    Place this script in the root of the subform in the FormReady - JavaScript event.

    oList var = this.getDeltas ();

    for (i = 0; i< olist.length;="" i="">

    {

    var oDelta = oList.item (i);

    oDelta.restore ();

    }

    Answer was found at http://forms.stefcameron.com/2008/09/29/restoring-the-of-your-form/

  • All-in-one HP Envy 4500: printing a Web page

    The procedure to print a web page has changed all of a sudden.

    Until today, it's simple. I clicked on the print icon in the bookmarks bar. This launches the print dialog box. I then clicked on 'Préférences' to select the print quality and finally on 'print '.

    Today, I wanted to print confrmation of a command line. When I click on anything that is in the print dialog box, another window open.

    I managed to select my printer, but when I clicked 'Print' nothing happened. In addition, I could not any setting beyond the number of copies and if you want to print on one or both faces. What is going on?

    Hi @hbf1842,

    What is the new name of the printer now listed as default printer in devices and printers? (Like 4500 or class envy 4500)

    If the class driver is installed, it would be a preinstalled Windows driver and it should not the automatic option to duplex. You will need to remove and add the urge to 4500.

    If you still experience problems, uninstall and reinstall the printer software again.

    The HPePrint driver is automatically installed with Windows 8. Just make sure that it is not selected as the default printer in the future.

    Thank you!

  • HP Photosmart print not Web pages, impressions from files registered

    I recently acquired my 1 HP laptop and my husband got me a printer HP Photosmart Premium C309g-m as well, too.  Both are blue tooth.  The installation went smoothly, the test print was perfect.  The wireless connection seems to be established.  The printer appears in my control panel.  This printer is my default printer.

    I am able to print of backup files and photos beautifully.  When I try to print anything on the internet or a saved Web page, it does nothing.   I go to file > print.  The print window appears.  The printer is highlighted.  The status is ready.  When I click on print, the printer icon briefly appears at the bottom of the page and disappears.  The printer does nothing.  That's all.

    It is not my Windows Firewall, because I tried to disable it temporarily, it tries to print a web page, and the problem remains.

    I tried to figure this on my own for 2 days nothing will do. I searched the net trying to find someone with the same problem, but have not found a solution.   Any suggestions?

    My problem is solved.  Given that I've had my laptop for a week, I did a system restore at the start of the first.  Somehow I had turned off the HP Smart Web Printing.  Everything is good!  Thanks for trying to help.

Maybe you are looking for

  • Portege M700 Touch problems

    I recently bought a Portege M700-110 and try to use my finger instead of the pointing device. However the calibration of the finger presses a wrong, because when you press the center of the screen is not a problem. But when pushed somewhere to the le

  • Pavilion DV7-3063 cl: DV - 7 does not work on a/c

    My computer is no longer works on a/c.  When I plug it in, lights up the AC and the battery charges.  When I turn it on, it works fine for 5 minutes, then the a/c light goes off and it only works on battery.  Soon as the battery discharges, it shuts

  • Network ID

    I have a laptop when it prints, the name on the poster printing is the initial user name that was created when the configuration of the first laptop.  For example, if the new username is Frank and the old one is Karen, when I connect as long as Frank

  • on board the keyboard beep with each character pushed and be maintained for 3 seconds to type each letter

    Help, please. This is beyond frustrating. each key will beep when they are affected, but if I touch it will type. Please help with ideas.

  • Can't turn on my firewall.

    I was wondering why I can't turn on my firewall. I have windows Vista on a laptop Dell Vostro 1700. I have webroot antivirus with antispyware 'Required by the work' and it doesn't tell me if it is a firewall program.  I turn on my windows firewall, b