Why do pictures show up as negatives?

I am new with the ipad.age 76.
it seems the ipad does what it wants to do and not my request.
1.  why do the pictures show up as negatives?? this cant be right...
2.  sometimes I tap and the text gets large, and readable for me. even thou i have max text.?  but this happens occasionally & i do not know what I did to make the text much larger.
3. SO FAR, there is one feature that I like but any other seems easier to do on PC.
4. I really like viewing network ABC, because I do not like local nbc broadcast on tv.  I hope NBC AND ME tv will be on ipad and other also.
5. a finger pad will keep the ipad clean
Thank you
biddyout

Answer to question #2. There are 3 ways to enlarge the screen; double tap with one finger, place 2 fingers on the screen and separate them, and turn on Zoom and double tap with 3 fingers.

Similar Messages

  • Why is zero showing as a negative value?

    Does anyone know why zero is showing as a negative value?

    Hi Neil,
    Not really a bug, just a limitation of the mathematics involved.
    You're entering the numbers as base 10 numerals. Computers work in base 2, so before any calculation is done, each number must be converted to its base 2 representation.
    All of the calculations are done in base 2, then the results are presented as base 10, rounded to whatever precision you have set (or the defaut precision for currency amounts—to the nearer hundredth of the base unit). What you see is a rounded value, but what is actually in the cell is the result of the calculation, including the rounding errors inherent in the process.
    Those errors arise from a simple fact: Not all numbers in base 10 can be expressed exacty in base 2. (Not all numbers can be expressed exactly in base 10 either, but that's a different discussion.) Expression of numbers in the math underlying Numbers is accurate to 15 places (base 10), regardless of which side of the decimal point those places occur.
    Each of the "zeros" in your sums involves several pieces of data in the sum, not all of which can be expressed exactly in base 2. In two of the sums, the errors (if any) cancel out and there is no difference between the sum expressed to two decimal places and the same sum expressed to 15 digits. In the other three, this is not true, as can be seen below.
    The image is of your test table. Columns A, B, and C have been reduced i width, all non-sum rows have been hidden to reduce the image size, and the SUM cells have been set to show 30 places (the maximum permited in Numbers) after the decimal to ensure that all significant places are shown, and that the decimal points are lined up for easy comparison.
    Note that three of the results differ from their displayed (two decimal place) values. The largest difference is in the third value, the smallest in the forth. The absolute difference between expected and actual result in the third of these lies between the other two, but is more noticeable because the result is less than zero and carries the - sign because of that. The minus sign is not "inserted" (randomly) by the software; it's there for the same reason there's a minus sign in the cell containing -103.31 is in that cell: the value in the cell is negative.
    "If I replace the cells containing the duplicates eg. £269.57, £90.11 & £103.31 with numbers manually added together £539.14, £180.22, £206.62. - the software doesn't insert the negative."
    Nor does it "insert the negative" in the first cell displaying a "zero" result, or the cell displaying a 26.04 result. Replacing those six numbers with six (or three) others changes the translation errors for each of these pieces of the sum, and that changes the sum itself. In this case the cumulative error moved the result from being 'smaller' than expected to 'larger' than expected. The result is now slightly larger than zero, so the minus sign is not needed or appropriate.
    Here are two further examples. The sum shown is the one in row 130. The data is the same as in the original table except for rows 126 and 127.
    Original values:
    Two occurrences of -90.11 replaced with a 0 and -180.22 produced this change in the result. Still negative, so the minus sign wi still be there.
    Two occurrences of -90.11 replaced with -90.10 and 90.12:
    A surprise! The actual value is zero (to the limits of precision of the underlying math).
    But that's not (for the usual user) a predictable result.
    Depending what you are doing with the results, you may want to do the rounding proposed by Wayne. This will change the actual vaue in the cell to the displayed value ( 0.00), and will remove the minus sign.
    It's not a bug—Numbers follows ISO standards in its math—but you may wish to Provide Numbers Feedback to Apple regarding your (and others) user expectations. You'll find an item with that name in the Numbers menu in Numbers.
    Regards,
    Barry

  • Why it dont show the Pictures in the window?

    I am unable to find out, why the Pictures arent shown...
    The Pictures are in the correct folder.
    The program runs but dont show the 3 Pictures.
    What is the problem?
    Code:
    import java.awt.*;
    import java.awt.Color;
    import java.applet.*;
    import java.awt.image.*;
    import java.awt.event.*;
    public class BildInFenster extends Frame{
    public void zeichnen(Graphics g){
    Image img1, img2, img3;
    img1 = Toolkit.getDefaultToolkit().getImage("1.jpg");
    img2 = Toolkit.getDefaultToolkit().getImage("2.jpg");
    img3 = Toolkit.getDefaultToolkit().getImage("3.jpg");
    MediaTracker tr = new MediaTracker(this);
    tr.addImage(img1, 0);
    tr.addImage(img2, 1);
    tr.addImage(img3, 2);
    try {
    tr.waitForAll();
    catch (InterruptedException ex){
    g.drawImage(img1, 20, 20, 100, 100, this);
    g.drawImage(img2, 20, 170, 100, 100, this);
    g.drawImage(img3, 20, 320, 100, 100, this);
    public static void main (String []args){
    Frame fenster = new Frame();
    fenster.setTitle("Einarmiger Bandit");
    fenster.setSize(500, 600);
    fenster.setVisible(true);
    WindowListener wl = new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    fenster.addWindowListener(wl);
    Thank you for your help!

    Hello My Dear Frend,
    Do u think that ur BildInFenster class's object will be called automatically???????,
    Please make a note that u r not calling the object of the BildInFenster Class.
    Make the Following Changes
    import java.awt.*;
    import java.awt.Color;
    import java.applet.*;
    import java.awt.image.*;
    import java.awt.event.*;
    public class BildInFenster extends Frame{
    public BildInFenster()
         repaint();
    public void paint(Graphics g){
    Image img1, img2, img3;
    img1 = Toolkit.getDefaultToolkit().getImage("1.jpg");
    img2 = Toolkit.getDefaultToolkit().getImage("2.jpg");
    img3 = Toolkit.getDefaultToolkit().getImage("3.jpg");
    MediaTracker tr = new MediaTracker(this);
    tr.addImage(img1, 0);
    tr.addImage(img2, 1);
    tr.addImage(img3, 2);
    try {
    tr.waitForAll();
    catch (InterruptedException ex){System.out.println(ex);
    g.drawImage(img1, 20, 20, 100, 100, this);
    g.drawImage(img2, 20, 170, 100, 100, this);
    g.drawImage(img3, 20, 320, 100, 100, this);
    public static void main (String []args){
    BildInFenster fenster = new BildInFenster(); // instead of the Frame object call ur BildInFenster Classes Object
    fenster.setTitle("Einarmiger Bandit");
    fenster.setSize(500, 600);
    fenster.setVisible(true);
    WindowListener wl = new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    fenster.addWindowListener(wl);
    }

  • Why does someone else's picture show up as me when messaging?

    Why does someone else's picture show up as me on I pad when messaging?

    Sounds like some of the templates provided by apple.  Google lorem ipsum for info on the filler text used.

  • Why do pictures I took on my iPad show up in photo stream but not the iPad camera roll?

    Why do pictures I took on my iPad show up in photo stream but not the iPad camera roll?

    The developers may not have made a version compatible with Mac OS X; if they have, it is a separate download.
    (76462)

  • I have 1000 pictures in my iPhone 6 but when trying to import them only 339 of those picture show up why is that?

    i have 1000 pictures in my phone but when trying to import them only 339 of those pictures show up why might that be?

    Hi Mr.Dr.Austin,
    Welcome to Apple Support Communities.
    It sounds like there is an issue with the displayed usage of your iPhone in iTunes compared to what you're seeing in the Photos app on your device. Take a look at the article linked below and check Settings > General > Usage for another app that may be storing photos.
    Understanding iOS device capacity
    http://support.apple.com/kb/ht1867
    If you aren't able to find the photos in Usage, you may be able to resolve the issue by restarting or restoring the iPhone.
    Turn your iOS device off and on (restart) and reset
    http://support.apple.com/kb/ht1430
    Use iTunes to restore your iOS device to factory settings
    http://support.apple.com/kb/HT1414
    I hope this helps.
    -Jason

  • My monitor is showing up like negative pictures.

    All the photos and screen images are showing up like negative pictures. I'm no expert, and have tried to figure out how to fix it myself. I am having major trouble connecting with an applecare representative. Any ideas?

    Press the Control, Option, Command, and 8 keys simultaneously, or set the computer to Black on White in the Seeing tab of the Universal Access pane of System Preferences.
    (25425)

  • Can anyone tell me why a picture would change color when I try to download/upload it?  It is the exact same picture- chosen the same way and when it goes to any other program it changes the color (I've tried canvas on demand and mpixpro.  I've also tried

    Can anyone tell me why this picture changes color when I try to download/upload it?  It is the exact same picture I have taken from the same location.  The image on the left is via preview and the image on the right is what is shows like when I try to download it.  I have emailed it to myself and it shows fine on the computer and in CS4, but when I look at the download via my phone or on another computer it shows the wonky color on the right.  I have checked the color space shows RGB/8 bit.  Any ideas why or how to fix it?  It isn't with any one specific session.... and I've tried it on both my desktop and my laptop- saved image to an external hard drive and to drop box.  I've tried sending the image to canvas on demand, my email, mpxipro, POST editing- all the same result.  Please HELP!!  What am I doing wrong?

    Most of the time you see something like that. The image in question has a color profile other then sRGB. Some image viewers/displayers are color managed and others are not.  So the image do not look the same in all of the applications you use. So colors seem to change.
    Try converting it to sRGB color and see if then looks the same all around. Also I think PC and Mac displays are set to different gamma something like 1.8 and 2.2
    Though I'm colorblind I even see color variations.

  • I had to get a new hard drive and some of my pictures show up but when I go to click on them to open them there is a triangle with an exclamation mark.

    I had to get a new hard drive and some of my pictures show up but when I go to click on them to open them there is a triangle with an exclamation mark. Did I loose those pictures or is there a problem with iphoto

    How about the most likely occurance - something incorrect about how the iPhoto library was transfered
    What version of iPhoto '11 (9.4.3 is the latest)?
    exactly how was your iPhoto library transfered to your new hard drive
    This indicates that there is a problem in the iPhoto database - a possible solution to try is Back up your iPhoto library, Depress and hold the option (alt) and command keys and launch iPhoto - rebuild your iPhoto library
    Why did you get a new hard drive? What kind of backup do you have?
    LN

  • No pictures show up in iPhoto Library on my hard drive.

    When I try and find my pictures on my hard drive, there is only a iPhoto Library icon but no pictures show up. I upgraded my iLife to '08 and now I can't find the folder in which my pictures are stored. I can't drag and drop the pictures from iPhoto for everything! Say I wanted to upload the picture on MySpace, I click Browse and find the iPhoto Library icon but it's not a folder! Is there a different place they are stored? Or do I have to drag and drop everything to my iDisk in order to have a folder with my pictures in it? Any help would be great.

    merma
    Welcome to the Apple Discussions.
    iPhoto is not designed to network with Windows machines. Does Windows understand Alias files? If so the hack detailed above should solve the problem.
    The library format is v6 was a hack too, it was never the intended use of the iPhoto Library Folder that it should be browsed by users or other software.
    Now they are in a proprietary format?
    No, it's a UNIX package file. Right-Click on the pkg file and choose 'Show Package Contents'... nothing hidden or proprietary there.
    Can I export all the photos in one shot to create a mirror of the library so other machine with iLife can see the photos?
    Why do that when you can use Sharing?
    If you want the other machine to be able to see the pics, but not add to, change or alter your library, then enable Sharing in your iPhoto (Preferences -> Sharing), leave iPhoto running. On the other machine, enable 'Look For Shared Libraries'. Your Library will appear in her source pane.
    Remember iPhoto must be running on both machines for this to work.
    You can, if you choose, export the lot into a folder, but this won't be updated when you add new pictures or make changes.
    If not, how do I go back to iLife 06?
    Have you got a v6 library untouched? If so, simply install v6 and use on the v6 library. If you don't have a v6 library, then you'll need to re-install v6 and then create a new library from scratch. v6 cannot read a v7 library.
    Regards
    TD

  • No new pictures showing up in files

    Why don't my uploaded pictures show up in the files?  I had 17 loaded up and only 2 came over in the widget that allows you to pull up photos.

    everything works well now, thanks

  • How to have address book pictures show when ringing

    I have a photo assigned to almost every contact in my address book on my imac which has synced with my contacts on my iphone. When they call me, why doesn't their picture show up on my iphone?

    all figured out

  • Why no pictures at Aftonbladet?

    Hi
    Why no pictures at www.aftonbladet.se?
    Stock browser shows them so it can't be the site...
    ToddeSwe

    Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
    The Firefox cache temporarily stores images, scripts, and other parts of websites while you are browsing. <br>
    Note: ''This will temporarily log you out of all sites you're logged in to.''
    To clear cache and cookies, do the following:
    #Tap the menu icon located at the top right corner. This is the icon with 3 bars. On older Android devices you'll have to press the hardware menu key and then tap More.
    #Tap '''Settings'''.
    #After that, you will be taken to the settings screen. In the settings screen, look under the section '''''Privacy & Security''''' and select '''Clear private data'''.
    #You will then be taken to a list of what can be cleared. Select the following 2 for deletion:
    #*Cookies & active logins
    #*Cache
    #After those have been selected, tap the '''Clear data''' button to actually clear the cache and cookies.
    Did this help you with your problems? Please let us know!

  • When I call my friends a different persons picture shows up from the Facebook linked contacts. How do I get it to show my picture in there contacts?

    I believe its the person who had this phone number before me. My friends that have Iphones and have there contacts linked from facebook my picture shows up as another persons. How can they fix that?

    Stoed,
    Let's get to the bottom of this iCloud backup issue. Have you ever had your Facebook contacts synced to your contact list? Did this issue begin after a software updage or downloading of an application? If you go to Settings>Facebook does it show you signed into your Facebook account there?
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • Why PSA data show red status when opened but green on PSA page?

    Run RSA1 -> click PSA to open PSA page, locate one infosource and find the PSA under it, find the status column shows it's green, but when opening it, find the 1st column shows red for each row.  How does the inconsitance occur?
    BTW, if we open the infopackage monitor for the above one, find a weird thing is that each request get two consecutive processes running with a circle of red ball and green ball in the left frame.  Double click one of them, in the right frame and click the monitor Status tab, the msg window is as following (in between two dashed lines below):
    Incorrect data records - error requests (total status GREEN)
    Diagnosis
    Data records were recognized as incorrect.
    System response
    The valid records were updated in the data target and can be used in reporting.
    The incorrect records were not written to the data target, but were posted retractively under a new request number in the PSA.
    Procedure
    Check the data in the error requests, correct the errors, and post the error requests.
    Sounds like the data failed to uploaded to data target due to error in PSA, but why the status show green in somewhere?   And if clicking the Details tab, all show green!  Weird!
    Thanks

    Hi Kevin,
    In your InfoPackage Update tab, click the Error Handling button. It seems that the Valid records update, request green option is chosen. This is why you see the green request and some error records.
    This means that the corect reocrds were loaded and are available for reporting, but the incorrect ones were left behind. This is used to check the erro records separatelt so that they do not disrupt the entire data load.
    Hope this helps...

Maybe you are looking for

  • I keep getting a message on my iPhone?

    It's really annoying me! It only started happening 2 days ago. When I plug my iPhone 4 in to charge, either through the wall or plug the USB into the laptop, I'll get the same message, " Charging is not supported with this accessory". and it'll stop

  • Header discount and basb con type in pricing procedure

    in my company tax calculation is based on condition type basb, but this condition type is not considering header discount. for example po gross price = 100rs and in po in invoice tab condition type basb = 100rs now i enter header discount 10% then co

  • Time Machine Error Fix

    Hello everyone, I am a new user and I have been searching for an answer on how to use the Time Machine. It says there is an answer to the question but I cannot see it, so maybe someone can point me in the right direction. I am using an Intel Mac and

  • Object access

    i have created a an arry of object in one java file and had information stored in that. i want to access this information from this object from another java file. this both file is in same package . i am unable to do this. please any one can suggeses

  • How do I get into my iphone if I forget the passcode?

    I have forgotten my passcode and now am locked out. How do I get back into the device?