Cannot get the correct printouts

I am using a Website called WebAssign.  It is for Math homework.
Our answers are typed into a box and then we are told if the answer is correct or not by a green checkmark or a red X.
When you right click inside the box, it says it is Adobe Flash Player 15.0.0.239.
I see everything correctly on the screen - but when I try to print to my printer or print to a .pdf file, there simply is NO answer box.
All you see is a green checkmark or a red X outside what used to be the answer box.
The only way for me to get a print out of my work is to take individual screenshots.  With over 100 questions on each assignment this is maddening.
I have tried with 2 different browsers and each time it is the same.

Read Before Posting: How To Get A Useful Answer To Your Question

Similar Messages

  • Cannot get the correct data type in Oracle JDBC

    Dear ALL:
    I used JDBC ResultSetMetaData to get the column data type for Oracle Database. I created a table including 2 columns AAA, which is NUMBER type, BBB which is FLOAT type.
    However, I found a problem that either NUMBER or FLOAT data types are reported as NUMBER type in JDBC.
    IN SQL 2000, it is okay. SMALLINT, INT, TINYINT, etc..can be reported correctly.
    Can anybody tell me that what's wrong here? I will be very appreciated.

    hi,
    i guess its a bug which is fixed with 10i.
    Elango.

  • [internalization] cannot get the correct local lang

    Hi there,
    I'm trying to develop an application based on the Internalization tutorial.
    I'm not getting any errors by the server, but the application doesn't change the local language.
    In the HTTP monitor I've got the following header parameter sent by the browser:
    accept-language it,it-it;q=0.8,en;q=0.5,en-us;q=0.3
    In the faces-config.xml
    <application>
        <locale-config>
          <default-locale>en</default-locale>
          <supported-locale>it</supported-locale>
        </locale-config>
      </application>In anycase I always get the en version.
    Is there anybody who can give some suggestion on how to find and correct the problem?
    Thanks in advance.
    Alessandro Ilardo

    ? question ?
    When the application is called for the first time by a browser, should it automatically detects the language? And consequently response with the correct language without displaying the default lang?

  • Cannot get the correct time on my

    I uploaded to iOS 7. My time is not coordinated with my time zone even though I have my locations on ?????
    It is only since I uploaded the new operating system. I have no problem with my iphone5

    Settings->General->Date and Time. Switch off Set Automatically then search for your time zone. Once you've set it manually switch "Set Automatically" back on. This worked for me, I hope it helps.

  • My IPad screen is frozen with a message stating that the IPad has not been backed up to the ICloud for 7 weeks, this is not correct.I cannot get the messageto clear and cannot access any of the other icons; is there an emergency reboot process?

    My IPad screen is frozen with a message stating that the IPad has not been backed up to the ICloud for 7 weeks, this is not correct. I cannot get the messageto clear and cannot access any of the other icons; is there an emergency reboot process?

    Have you tried resetting your iPad?
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    No data will be lost.

  • I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    I am using Numbers on my iPhone5 and cannot get the app to do a simple (SUM) calculation.  It shows the formula correctly in the cell, but all I get for my long list of numbers to add is 0.  How can I get this to work?

    Oaky, at least we got that far.  Next step is to determine if all those "numbers" are really numbers.  Changing the format to "number" doesn't necessarily change the string to a number. The string has to be in the form of a number.  Some may appear to you and me as numbers but will not turn into "numbers" when you change the formatting from Text to Number. Unless you've manually formatted the cells to be right justified, one way to tell if it is text or a number is the justification. Text will be justified to the left, numbers will be justified to the right.
    Here are some that will remain as strings:
    +123
    123 with a space after it.
    .123

  • I am correctly login Safari but since this afternoon I cannot get the creative cloud application to work. Help

    I am correctly login Safari but since this afternoon I cannot get the creative cloud application to work. Help

    I am correctly login Safari but since this afternoon I cannot get the creative cloud application to work. Help

  • I cannot get the subtitles to work no matter how many times I set it up and I am doing it correctly, what is wrong?

    I cannot get the subtitles to work no matter how many times I set it up and I am doing it correctly, what is wrong?

    if the material don't state there is subtitles in your language it don't include it
    and if will only show subtitles if the language you choose in the atv settings so if you have it set to french
    and the material only have subtitles in English and not french they will not display

  • TS3103 I have aol and cannot acesss my email after updating to osx 10.6. the help says that I need mail 4.6. I have 4.5.  How do I get the correct version?

    Ihave aol and cannot acesss my email after updating to osx 10.6. the help says that I need mail 4.6. I have 4.5.  How do I get the correct version?

    Run all software updates.
    http://support.apple.com/kb/TS4424

  • I can't get the correct node (a real beginner)

    I have an XML file which looks like this:
    [code<lawyer>
         <Country>Singapore</Country>
         <Company>Allen & Gledhill</Company>
    </lawyer>
    <lawyer>
         <Country>Singapore</Country>
         <Company>Allen & Gledhill</Company>
    </lawyer>.
    </Lawyers>
    But I can't get the right node names and values.
    Here is my code:
    File file = new File("lawyers.xml");
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(file);
    NodeList nlLawyers = doc.getElementsByTagName("lawyer");
    for (int i = 0; i < nlLawyers.getLength(); i++) {
         Element elLawyer = (Element) nlLawyers.item(i);
         NodeList columns = elLawyer.getChildNodes();
         for (int j=0; j<columns.getLength(); j++) {
              Node col = columns.item(j);
              String colName = col.getNodeName();
              String colVal = col.getNodeValue();
              System.out.println(colName + ": " + colVal);
    }What I would like to print out would be something like this:
    Country: Singapore
    Company: Allen & GledhillBut I am getting extra nodes and cannot get the text values. Here is the output I am getting:
    #text:
    Country: null
    #text:
    Company: nullI don't understand this output at all. Please help me get the list of node names and values?
    Thank you.
    -Jeff

    It seems that the #text nodes represent the whitespace between the formal nodes. Also, the nodes that I want to extract have a NodeTypeValue of 1. Once I had determined that I had the correct node, I had to get its child node to get the text. Here is the final code:
    File file = new File("lawyers.xml");
    DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
    Document doc = builder.parse(file);
    NodeList nlLawyers = doc.getElementsByTagName("lawyer");
    for (int i = 0; i < nlLawyers.getLength(); i++) {
         lawyer = new Lawyer();
         Element elLawyer = (Element) nlLawyers.item(i);
         NodeList columns = elLawyer.getChildNodes();
         for (int j=0; j<columns.getLength(); j++) {
              Node col = columns.item(j);
              if (col.getNodeType() == 1) {
                   String strColumn = col.getNodeName();
                   Node txt = col.getFirstChild();
                   String strValue = txt.getNodeValue();
                   System.out.println(strColumn + ":\t" + strValue);                         }
         } // for each column
    } // for each lawyer

  • -1007f cannot get the Mac book air to reinstall, no drive. For disk and no connection

    -1007f cannot get the Mac book air to reinstall, no drive. For disk and no connection please help!!

    You can download the product from this link:
    <Download Photoshop Elements products | 13, 12, 11, 10>
    Your redemption code/Serial number will work with these downloaded products.
    Make sure you download the correct version for your operating system - Windows or Apple MAC
    Good luck.

  • I cannot get the Amazon wishlist button to install on my toolbar, I've tried 6 times, restarting my browser every time

    I have version 17.0 of firefox and cannot get the wishlist button to install

    Firefox 17.0 ? That's an old version, Firefox 24 is the latest version. <br />
    http://www.mozilla.com/en-US/firefox/all.html
    Looks like there's some security issues with that add-on. <br />
    http://blog.kotowicz.net/2013/07/jealous-of-prism-use-amazon-1-button.html
    Plus the user reviews of that extension - https://addons.mozilla.org/en-US/firefox/addon/add-to-amazon-wish-list-button/reviews/ - indicate that extension might not be working correctly as of late.

  • Cannot get the sound with a transferred Powerpoint presentation

    I networked a Powerpoint presentation from my Windows XP to my iMac G5. On my mac, I have the Student and Teachr Edition of Office:Mac which has PP. If I open the presentation in Powerpoint on the mac, I can get the pictures but cannot get the sound. I think I have set the PP preferences correctly and the size of the file on both computers is the same.
    Is there anything I can do to get the sound portion of the presentation?
    Thanks

    I don't know if this applies to PP, but I have had my sound prefs knocked out of whack by apps and not realized it. Others have found that opening a loop in Garage Band resets the prefs to the right settings, but you can do the same thing by opening the "Audio MIDI Setup" in your Utilities folder. Be sure that the format of audio inputs and outputs are set to 44100.0Hz.
    Hopefully that fixes it.

  • Cannot get the Oilpaint Filter to work

    I own CS6 and just downloaded the Photoshop CC trial version.  I cannot get the oilpaint filter to work in either.  I must be missing something.  When I open a photo, select filters and then oilpaint - all I get is the grey screen (with the oilpaint tools).  But no photo is there for me to apply the filter effect.  Any idea what I am missing?
    Thanks,
    Marcus

    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I cannot get the file "Photoshop_13_LS16.7z" for Photoshop CS6, Photoshop CS6 Extended English to download; the url goes to an ascii file on screen.

    I cannot get the file "Photoshop_13_LS16.7z" for Photoshop CS6, Photoshop CS6 Extended English to download; the url goes to an ascii file on screen.  It's at Download CS6 products.  Can you help?

    use a different browser.
    you can also try dl'g from prodesigntools.com
    if you follow all 7 steps you can directly download a trial here:  Download CS6 products
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

Maybe you are looking for

  • How to create an input enabled query with Integrated Planning

    Hello experts. I have created an aggregation level in IP and I am trying to create an input enabled query based on this aggregation level.  My problem is in the properties.  On the query properties planning tab the Start query in change mode is graye

  • WAD 3.x-Hiding the Navigation Icon

    Hi Experts, In WAD, I want to hide the "Drilldown in Columns" button and display only the "Drilldown in Rows". I have checked the SHOW_NAVIGATION_ICONS. This enables both Drill on Rows and Drill on Columns. For both Rows and Free Characteristics I ne

  • Outbound program s for idoc in ale

    hi to all abap gurus I have doubt regarding idocs we know that outbound programs are message specific  ie for each message type there is one outbound program . we know that orders 05  idoc transfers both purchse and sales orders data by using two mes

  • I am having trouble with iCloud

    I am having trouble with ICloud adding songs to my computer.  The only playlist that they show up in is "recently added".  They will not show up in the library or any other playlists even if I try to move them.  I am on a PC with Win7 Pro.

  • Cannot open the photoshop editor in Elements 12, Help!!!!!

    I have signed in with my adobe ID and password.  The photoshop editor won't open.  I sign in again.  It takes me in a circle.  I keep signing in, but it won't open.  I have reset my password several times.  It still won't open.  I paid good money for