I need this to read e-magazines I just ordered and have no idea how to do so.

Help

I did think I can consistently do it consistently now.  Although tapping on an article or its page number all it does is magnify. Was a computer programmer in the 70's and 80's but find now - enter this or that code frustrating.  In the old days you to told a computer to hop and it asked  "How high?" now it says " Oh, yeah you and who else are going to make me!"
Sent from my iPad

Similar Messages

  • TS3992 I have a pre paid Wi Fi with telstra for 12 months and yet I get the message of this I pad has not been backed up I have no idea how to back it up can you help. I have the same problem with my I phone withTelstra please tell me how to back them up

    Hi I have an I pad 64 gig and internal wifi bought about 2 months ago. it keeps coming up with a message "this i pad has not been backed up" I have no idea how to do it can you help.
    I also have an I phone 4s with the same message both are with telstra the I pad has a 12 month pre paid wifi contract and the phone is on a monthly contract.

    Sounds like you actually paying for cellular service and you really need to be on wifi to backup your ipad/iphone.
    Normally you have to be connected to wifi and you can do manual backup by going to Settings- icloud- storage and backup and pressing backup now button. Start with your ipad, usually size of the backup smaller and return here if you encounter a problem.

  • I need help I can't remember my iTunes Security Questions and have no idea how to change them just used a $20 gift card

    I need help I can't remember my iTunes Security Questions and have no idea how to change them just used a $20 gift card

    If you have a rescue email address (which is not the same thing as an alternate email address) on your account then you can use that to reset them : http://support.apple.com/kb/HT6170
    If you don't have a rescue email address (you won't be able to add one until you can answer your questions) then you will have to contact Support in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    If your country isn't on that page then try this form and explain and see what they reply with : https://ssl.apple.com/emea/support/itunes/contact.html
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps on this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5620
    Or, if it's available in your country, you could change to 2-step verification : http://support.apple.com/kb/HT5570

  • Help I am a student and have no idea how to sort this program by Product

    First class:
    // CheckPoint: Inventory Program Part 1
    // Display product information
    public class Product1 //declare class
    //declare instance variables
    private int productNumber,
    inStock;
    private String productName; // List of instance variables unique to object
    private double unitPrice;
    //constructor to handle no input and set defaults
    public Product1()
    //constructor to handle input parameters
    public Product1( int number, String name, int stock, double perPrice )
    productNumber = number;
    productName = name;
    inStock = stock;
    unitPrice = perPrice;
    public void setProductNumber( int number ) //stores product number
    productNumber = number;
    public void setProductName( String name ) //stores product name
    productName = name;
    public void setInStock( int stock ) //stores amount of product in stock
    inStock = stock;
    public void setUnitPrice( double perPrice ) //stores the unit price of product
    unitPrice = perPrice;
    public int getProductNumber() //allows a call to retrieve product number
    return productNumber;
    public String getProductName() //allows a call to retrieve the product name
    return productName;
    public int getInStock() //allows a call to retrieve stock info
    return inStock;
    public double getUnitPrice() //allows a call to retrieve unit price
    return unitPrice;
    public double getInventoryValue()
    return ( (double)inStock * unitPrice );
    public String toString()
    return productName + " - " + unitPrice;
    Second Class:
    import java.text.DecimalFormat;
    public class Inventory1
    private final int maxInventory = 30;
    private Product1 items[] = new Product1[ maxInventory ];
    DecimalFormat formatter = new DecimalFormat( "$##,###.00" );
    public void addProduct( Product1 item )
    for ( int i = 0; i < maxInventory; i++ )
    if (items[i] == null)
    items[i] = item;
    return;
    public double getTotalInventoryValue()
    double sum = 0.0;
    for ( Product1 item : items )
    if ( item != null )
    sum += item.getInventoryValue();
    return sum;
    public void displayInventory()
    boolean hasItems = false;
    for ( Product1 item : items )
    if ( item != null)
    hasItems = true;
    System.out.printf( "%8d%12s%11d%13.2f%14.2f", item.getProductNumber() , item.getProductName(), item.getInStock(), item.getUnitPrice(), item.getInventoryValue() );
    System.out.println( "" ); // display space
    System.out.println("");
    Part 3:
    import java.text.DecimalFormat;
    public class InventoryTest1
    static DecimalFormat formatter = new DecimalFormat( "$##,###.00" );
    public static void main( String args[] )
    Product1 item1 = new Product1( 001, "Staples", 5, 2.99 );
    Product1 item2 = new Product1( 002, "Books", 10, 15.00 );
    Product1 item3 = new Product1( 003, "Printers", 20, 55.00 );
    Inventory1 myInventory1 = new Inventory1();
    System.out.println("");
    System.out.printf( "%s%12s%11s%13s%14s", "Product#", "Name", "In Stock", "Unit Price", "Stock Value" );
    System.out.println("");
    System.out.println("");
    myInventory1.displayInventory();
    myInventory1.addProduct( item1 );
    myInventory1.addProduct( item2 );
    myInventory1.addProduct( item3 );
    myInventory1.displayInventory();
    System.out.println( "" ); // display space
    System.out.println("");
    System.out.println( "Total value of inventory is: " );
    System.out.println ( formatter.format(myInventory1.getTotalInventoryValue() ) );
    I have no idea where to put the sort statement and how to implement it.

    Sorry about that. Before i proceed with the code I will say that I need help trying to determine where to put a sort statement and what sort statement should I use. I have three classes and have no idea how to sort the items by Product name. For instance, I have staples, books, and printers in my code. How do I get it to display these names and all of the corresponding information in alphabetical order. So with that said, here is the code.
    First program:
    // CheckPoint: Inventory Program Part 1
    // Display product information
    public class Product1 //declare class
    //declare instance variables
    private int productNumber,
    inStock;
    private String productName; // List of instance variables unique to object
    private double unitPrice;
    //constructor to handle no input and set defaults
    public Product1()
    //constructor to handle input parameters
    public Product1( int number, String name, int stock, double perPrice )
    productNumber = number;
    productName = name;
    inStock = stock;
    unitPrice = perPrice;
    public void setProductNumber( int number ) //stores product number
    productNumber = number;
    public void setProductName( String name ) //stores product name
    productName = name;
    public void setInStock( int stock ) //stores amount of product in stock
    inStock = stock;
    public void setUnitPrice( double perPrice ) //stores the unit price of product
    unitPrice = perPrice;
    public int getProductNumber() //allows a call to retrieve product number
    return productNumber;
    public String getProductName() //allows a call to retrieve the product name
    return productName;
    public int getInStock() //allows a call to retrieve stock info
    return inStock;
    public double getUnitPrice() //allows a call to retrieve unit price
    return unitPrice;
    public double getInventoryValue()
    return ( (double)inStock * unitPrice );
    }

  • I have a game on my xbox one that is telling me I need to open ports in order to play it I am not all that tech savvy and have no idea how to do this

    I have an airport extreme and I am trying to play a new game on my xbox one and it keeps kicking me I have comcast internet that is more than fast enough so I went to the games site and it says I need to either create a static ip or to open ports no idea how to do either of these or what that does any help would be appreciated.

    There are heaps of posts here about how to open ports on apple routers specifically for xboxes.
    AirPort Extreme and xbox 360

  • I have this account but do not have itunes visible on my laptop and have no idea how to back up my iphone

    i have set up an itunes account but have no idea how i now connect my iphone to it as i cannot see it on my laptop?

    i never use itunes and have been offered a samsung galaxy s3 as a swap so i need to save all my data as i di not wish to lose it all, if saved will i then be able to transfer it to the S3?

  • Help! I am trying to load my itunes on my husbands laptop and have no idea how to do this. Does anyone know?

    I never transferred my old itunes account to my laptop. It's my husband's laptop and he had his itunes on it. We have just deauthorized his account but HAVE NO IDEA how to load my account on it. Please give me any tips you have. Thanks! Carmen

    Try the instructions mentioned here: How to set up an iTunes Store account and this one about authorizing : About iTunes Store authorization and deauthorization

  • HT4759 i need to update my ipad and have no idea how to begin this

    I need help updating my ipad i am working with 4.3.5

    Connect your iPad to your computer and launch iTunes. You'll most likely be prompted to update. If not click the "check for update" button on the summary tab for the device in iTunes. For more information and full details, see the section titled "Update your device using iTunes" in this support article:
    http://support.apple.com/kb/HT4623
    You should read this article as well:
    http://support.apple.com/kb/HT4972
    Regards.
    Forum Tip: Since you're new here, you've probably not discovered the Search feature available on every Communities page, but next time, it might save you time (and everyone else from having to answer the same question multiple times) if you search a couple of ways for a topic, both in the relevant forums and in the Apple Knowledge Base, before you post a question.

  • Hello..I don't like to admit I am a dumby ,but I am. I've had this mac book (white 13) for yrs now and have no Idea what it is or what I am doing(except the power botton) Will someone please help me. Idon't know what I have,I dont know the software or wha

    I need a teacher. I have a mac book 13 white. I have all kinds of files/stuff that I have been downloading. I dont know how to update a app, or how to tell what I have as far as memory/software/ version(of what?) I know that I can not sync my 3gs 32g iphone. I know that most all my applications will not work on this version of ??? . I spend hours just trying to get on line,most the time I give up. I've had this thing for years ,I click chx for updates , most everytime it says "no internet".....I do know for how bad I feel inside, all the hours that I have spent on this thing with no closure that I would rather smash it into tiny pieces then sell it. I do not have money anymore..I am very smart at all sorts of differant things in life .I am not smart at understanding to basic function or opperations of computers , I am missing something, I am close ,but just can not wrap my mind around it.
      I am reaching out for help, I have nothing to offer , Your reward would come from the Gods , And knowing that you helped another human being. Trust me if feels good to help teach others how to fish for themselves.
      Thank you for taking the time.
    Jeff 
    < Edited by Host >

    Clntxwhtby wrote:
    Hay thank you for your time . I do that every time I know I am online. It says that I am up to date . I have found that I have 10.4.11 version, and that my boot version is 10.6.2, and that my kernel version is 8.11.1.
    I have a hard drive icon on my desktop that says 10.6.2....
    I use to have iphoto, it doesnt open anymore, it says there is 1.2gigs on that disk.There are many things on here that are the same way. Where do I start?
    It's always good to go with one thing at a time and stay focused on that. Let's start with the OS you're running. Click on the Apple menu > About This Mac. What does it say under Mac OS X version ?

  • I get the following error and the old thread on this did not solve my problem. Does anyone have an idea how to fix it. The error is "an error occured sending command to application"

    When I open a link from Microsoft outlook I get the following error
    "An error occured sending command to application" The old thread on this does not help and it is closed.
    == This happened ==
    Every time Firefox opened

    Hello Anonymous.
    You will need to contact Microsoft for support on Outlook.

  • I have downloaded adobe reader but it still says i need to accept the end user license agreement, i have searched everywhere and i have no idea how to "accept" this agreement

    i have downloaded adobe reader but it still says i need to accept the end user license agreement, i have searched everywhere and i have no idea how to "accept" this agreement

    yes i have for sure launched it this is what it looks like at the bottom of my computer, it says by downloading adobe you already agree to the license agreement but I've tried googling, "how to accept the end users license agreement" and it brings me to the agreement but there is no link or button to press on in order to accept it

  • My ipod touch 4th generation no longer holds it's charge for more than 40mins,needs new internal battery but I have no idea how to go about this. i love my ipod and don't want it to loose power completely, can anyone help?

    My ipod touch 4th generation no longer holds it's charge for more than 40mins from full power, think it needs a new internal battery but have no idea how to go about this and am no longer covered by my guarantee. Can anyone advise me on what's best? Thanks in advance

    Using the battery level meter in this manner is comparable to using your car's fuel gauge to calculate miles per gallon. The only thing that matters is the total amount of operating time from full charge to auto-shutdown.
    Use an Apple wall-mount charger.  Do NOT use a computer's USB port.  Then, operate it normally until auto shut-down (ignore any low level alerts that may appear).  An irony is that doing that test to determine the total operating time is also the exact procedure necessary to calibrate the battery level meter.
    I'm not claiming that you do not have a problem.  I am stating, however, that we don't yet know whether or not a battery problem exists.
    According to Apple:
    Use Your iPod Regularly
    For proper reporting of the battery’s state of charge, be sure to go through at least one charge cycle per month (charging the battery to 100% and then completely running it down).
    Elsewhere, Apple elaborates and explains that two half-discharges (or four quarter-discharges, etc.) equals one full discharge.

  • Can anyone help, I have an I-phone 4s and trying to sync to ITunes. It tells me I need to update I tunes on the phone to 11.1 but have no idea how to do this....?

    Hi, can anyone help...trying to sync I phone 4s with I tunes, it comes up with message to upgrade iTunes on phones to 11.1 but have no idea how to? Can anyone help with how I do this or any other way to get all music onto iPhone?? Thanks.

    Yes, it will keep the music.
    Close all open apps or programs.  Open iTunes, look for Check for Updates in the menu and click on that.  Then follow the prompts.
    When the update is done.  Open iTunes and in the menu look for show sidebar and click on that, then connect your iPhone to iTunes, click on your phone's name on the Sidebar, review all the tabs to make sure your sync option are what you want them to be (music, movies, photos, books, etc.) and after that click sync or apply and wait for the sync to finish.

  • Need help- have no idea how to install original airport on G3 Powerbook

    I just bought an ornignal airport card on ebay. I have no idea how to install it (i think it goes under the keyboard, but specifically where?) also, it didn't come with any software...do I need some kind of driver? I am so confused. All I know is that I spent over $100 for this thing and would love it if I could get it to work. Really want to go wireless...can anyone please help. (already checked all over the support page and called apple and asked them to point me in the right direction, but have gotten no where. thanks in advance.

    Thea,
    I get the impression you cannot return the AirPort card...this would be my first choice. Since the card is not recognized, either the card is bad or your powerbook has a hardware issue (doubtful).
    Do you have an Apple Store nearby?
    You might also contact your local User Group...there should be good help available:
    http://www.apple.com/usergroups/
    Your alternatives are these:
    - find another original AirPort card (limited to the slower 11Mbps speed) to try;
    - remove the internal AirPort card and buy a one of these wireless PC cards that run at the faster 54Mbps speed and are simply inserted in the PCMCIA card slot on the side of the 'book:
    http://www.sonnettech.com/product/aria_extreme.html
    http://www.macsense.com/product/broadband/WPE800.html
    http://www.asante.com/products/productsLvl3/AL5403_XG.asp
    http://www.buffalotech.com/wireless/products/airstation/WLICBG54A.html
    The above cards have the Broadcom chipset that Apple's AirPort software supports. If you have already installed AirPort 3.1.1, you are ready to go.

  • I have no idea how I did this on my  ipad but everything on my screen is in negative view. How do I switch it back to positive or for me , normal view?

    I have no idea how I did this on my new ipad 2 but everything on my screen is in negative view. How do I switch it back to positive or for me , normal view?
    Thanks, joney

    Yes, you probably have the tripple-click Home button option off.
    Just visit the Accessibility pane under General settings (as described by King_Penguin above) and choose to assign what you need for your tripple click command, in this case toggling the black & white option.
    You can also tell it to 'ask' you what you want from that command each time.
    Hope this helps.

Maybe you are looking for

  • Can I install Windows XP on a new macbook with lion preinstalled?

    I have a fully licensed version of windows XP that I used for snow leopard, but bootcamp on my new macbook air only recognizes windows 7. A) can I install XP and skip 7? How? B) if not, can I buy a windows 7 upgrade and somehow use my licenced XP as

  • Many Problems: System won't search, things taking very long time...

    My G5 is having lot's of problems and I'm dreading having to reinstall the OS. Problems: The system won't search for files, either in the finder or in applications The finder seems to get jammed up for long periods of time (I mean, like I can let it

  • Which column refers organization_id in RA_CUSTOMER_TRX_LINES_V  ?

    Hi All, We ae trying pick value of ITEM AND ITEM DESCRPTION based on TRX NUMBER we use below query for that SELECT CH.TRX_NUMBER, MTL.SEGMENT1, MTL.DESCRIPTION FROM APPS.RA_CUSTOMER_TRX_LINES_V CL, APPS.RA_CUSTOMER_TRX_PARTIAL_V CH, APPS.MTL_SYSTEM_I

  • What is a good WiFi Booster?

    My wife and I do a lot of traveling in a travel trailer. Most RV Parks offer free WiFi connections but the signals are too weak. We are interested in buying a WiFi booster to use with my MacBook Pro (late 2009) and my iPad 2. Dose any one have experi

  • IMac freezes on startup!

    When I start up my iMac, I often (not every time) get this spinning beach ball, and it stays there until I turn off and on my computer again (power button)! Has someone any solution here? Message was edited by: El-Erik