I have downloaded Word in icloud have opened a project named Recipes and added a recipe now I don't know how to write and save another recipe to the same place.  I don't see anyway to save?

After using the Word in ICloud and creating a new project named recipes then putting a recipe in now I don't know how to add a new page with another recipe and save it to the same  project the first one is in.  I don't see any icon that will save?

Arlene83 wrote:
After using the Word in ICloud
There is no version of the Microsoft Word app available for iPad.  What exactly do you mean here?  What app are you talking about?  And what is the tie-in to iCloud?

Similar Messages

  • I just downloaded 3 podcast items into my iPod shuffle but don't know how to listen to it.  It plays the music list but don't know how to get to my podcast list to play it..

    I just downloaded 3 podcast items into my iPod shuffle but don't know how to listen to it.  It plays the music list but don't know how to get to my podcast list to play it..

    jfromnj wrote:
    I purchased and downloaded the Family Pack of IWork.  I recently purchased another computer (MacBook Pro) and I want to be able to use IWork on the new
    computer but don't know how to go about it.  The only thing on the Apple home page is to purchase either the item or trial pack.  I don't think I should have to purchase anything since a family pack covers 5 computers in the same household.  Please, if someone knows how to go about this and what I need to do so please let me know.  Thank you.
    You didn't keep the download for future use?

  • When I use Photoshop CS 6 to edit video, I don't know how to change video speed after I converted the clip to smart object?

    When I use Photoshop CS 6 to edit video, I don't know how to change video speed after I converted the clip to smart object? The clip color turns purple and it only allows me to add motion but not change the clip duration and speed anymore.

    Thanks for the reply and as a work around method I used the Photoshop to do all the adjustments then export the video to iMovie to finish the final cut. I also have a problem to paint or clone on a blank video layer created in Photoshop. It tells me the time is beyond the target frame time, I don't understand the message. Can you explain to me what did I do wrong? Thanks a lot!
    John Wang
    801-3618742
    [email protected] 
    http://johnwanggallery.shutterfly.com  

  • I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  ! Do you get the idea ? Thanks !

    I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  !
    Do you get the idea ?
    Thanks ever so much !

    the numbers manual can be downlaoded from this website under the Apple support area...
    http://support.apple.com/manuals/#numbers
    What your looking for is written out step by step for drop downs and all other special types of user input starting around page 96 in the '09 manual.
    Jason

  • (I can't compile it .I don't know how to write constructor in Initial Class

    All class and main program is OK except the inital class.
    Author Class
    class Author {
    private String authorName;
    private Initials inits;
    private int numTitles = 0;
    // PRE True POST Prompts user for details
    // and RETURNS new Author constructed from details
    public Author(BufferedReader in) {
    System.out.print("\nSurname ==> ");
    authorName = Text.ReadString(in);
    inits = new Initials(in);
    numTitles = 0;
    // PRE TRUE
    // POST RETURNS String representation of Author
    public String toString() {
    String result;
    result = "NAME : " + authorName + " " + inits.toString() + "\n";
    result = result + "Number of titles is " + numTitles;
    return(result);
    // PRE TRUE
    // POST Increments number of titles
    public void incTitles() {
    numTitles++;
    Book Class
    public class Book {
    private String title;
    private Author author;
    // PRE TRUE // POST Prompts user for details
    // and RETURNS new Author constructed from details
    public Book(Author author, BufferedReader in) {
    System.out.print("\nTitle ==> ");
    title = Text.ReadString(in);
    this.author = author;
    author.incTitles();
    // PRE TRUE
    // POST RETURNS String representation of Book
    public String toString() {
    String result;
    result = "TITLE : " + title + "\n";
    result = result + "AUTHOR\n" + author.toString() + "\n";
    return(result);
    *****Initial Class (I can't compile it . I don't know how to write constructor
    class Initials
    {   private char[] inits;
         public Initials(BufferedReader in)
         System.out.print("\nInitails Testing ==> ");
         inits = Text.ReadString(in);
         public String toString()
              String result;
              result="Testing";
              return(result);
    Main program
    public class BookMain {
    static private BufferedReader in = new BufferedReader(new                                    InputStreamReader(System.in));
    public static void main(String[] args) {
    Author authorRec1, authorRec2;
    Book bookRec1, bookRec2;
    System.out.println("\n\n****** First author input");
    authorRec1 = new Author(in);
    System.out.println("\n\n****** First author output\n" + authorRec1.toString());
    System.out.println("\n\n****** Second author input");
    authorRec2 = new Author(in);
    System.out.println("\n\n****** Second author output\n" + authorRec2.toString());
         System.out.println("\n\n****** First book input");
    bookRec1 = new Book(authorRec2, in);
    System.out.println("\n\n****** First book output\n" + bookRec1.toString());
    System.out.println("\n\n****** Second book input");
    bookRec2 = new Book(authorRec2, in);
    System.out.println("\n\n****** Second book output\n" + bookRec2.toString());
    System.out.println("\n\n****** First book output\n" + bookRec1.toString());

    Change this
    class Initials {
    private char[] inits;
    to this
    class Initials {
    private String inits;
    import java.io.*;
    public class BookTest {
      static private BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
      public static void main(String[] args) {
        Author authorRec1, authorRec2;
        Book bookRec1, bookRec2;
        System.out.println("\n\n****** First author input");
        authorRec1 = new Author(in);
        System.out.println("\n\n****** First author output\n" + authorRec1.toString());
        System.out.println("\n\n****** Second author input");
        authorRec2 = new Author(in);
        System.out.println("\n\n****** Second author output\n" + authorRec2.toString());
        System.out.println("\n\n****** First book input");
        bookRec1 = new Book(authorRec2, in);
        System.out.println("\n\n****** First book output\n" + bookRec1.toString());
        System.out.println("\n\n****** Second book input");
        bookRec2 = new Book(authorRec2, in);
        System.out.println("\n\n****** Second book output\n" + bookRec2.toString());
        System.out.println("\n\n****** First book output\n" + bookRec1.toString());
    class Author {
      private String authorName;
      private Initials inits;
      private int numTitles = 0;
      // PRE True POST Prompts user for details
      // and RETURNS new Author constructed from details
      public Author(BufferedReader in) {
        System.out.print("\nSurname ==> ");
        authorName = Text.ReadString(in);
        inits = new Initials(in);
        numTitles = 0;
      // PRE TRUE
      // POST RETURNS String representation of Author
      public String toString() {
        String result;
        result = "NAME : " + authorName + " " + inits.toString() + "\n";
        result = result + "Number of titles is " + numTitles;
        return(result);
      // PRE TRUE
      // POST Increments number of titles
      public void incTitles() {
        numTitles++;
    class Book {
      private String title;
      private Author author;
      // PRE TRUE // POST Prompts user for details
      // and RETURNS new Author constructed from details
      public Book(Author author, BufferedReader in) {
        System.out.print("\nTitle ==> ");
        title = Text.ReadString(in);
        this.author = author;
        author.incTitles();
      // PRE TRUE
      // POST RETURNS String representation of Book
      public String toString() {
        String result;
        result = "TITLE : " + title + "\n";
        result = result + "AUTHOR\n" + author.toString() + "\n";
        return(result);
    class Initials {
      private String inits;
      public Initials(BufferedReader in) {
        System.out.print("\nInitails Testing ==> ");
        inits = Text.ReadString(in);
      public String toString() {
        String result;
        result = inits;
        return(result);
    class Text {
      static String ReadString(BufferedReader in) {
        String text = "";
        try {
          text = in.readLine();
        catch (IOException e) {
          System.out.println(e.getMessage());
          System.exit(0);
        return text;
    }

  • Home page i cons mail, i pod, messages etc are twice the size as normal. don't know how this happen and can't fix it, help!

    My I phone 4 G home page i cons are twice the size as normal (mail, messages, ipod) etc.
    Don't know how this happened and can't fix it help.

    Double tap with THREE fingers to turn zoom off. Then go into: Settings>General>Accessibility and turn it off for good.

  • I would like to thank JJMack for his response to my discssion of 9 6 14, 8:43 pm regarding difficulty with downloading photos to PS CS2 in Windows 7  I don't know how to reply as I am new to the Forum.

    regarding difficulty downloading photos from camera to PS CS2 in Windows 7.  I don't know how to reply as I am new to this forum.
    Thank you,
    Elena de la Vega

  • TS3274 I double clicked shut open apps yesterday and by mistake cleared my settings.  I don't know how to get get them back.  In the meantime everything is working ok but don't know where to go if I do want to make any changes.....?

    I double clicked on my iPad to shut open apps. By mistake I shut SETTINGS and don't know how to get them back?

    Settings is an App like any other app on the iPad. Tap on the Settings icon to launch the app and make changes.

  • I don't know how to watch iTunes Trailers in iTunes on the iPad?!

    Hi there!
    I'm trying to watch the iTunes movie trailers directly in iTunes on the iPad2...
    Is it even possible? And if it is, how do I watch them??

    This Crania wrote:
    Sorry, that's not the issue. My bad!
    First of all, I don't have a TV of MOVIE icon in the lower bar (landscape mode).
    Yes you do. I am in landscape view. You tap on the icon of the movie (or on the word View) - from list of movies and this window pops up. You do know how to navigate through iTunes on the iPad right? These trailers will look just like they do in a web browser.
    I want to have a view like the website version, is that possible?
    And no - you can't watch them in a browser - unless you watch a YouTube site - because the those trailers require Flash and Flash is not supported on the iPad.
    Look at this.

  • I have downloaded Firefox 5.0 at least three times and saved file, but I don't know how to install and run. It keeps asking me to download new version and Save file. I'm in a never ending loop, it keeps downloading same exe & does not install Please Help

    Please tell me how to install and run new Firefox 5.00 after I have downloaded the new version and chosen Save File. I just go into Loop and screen says new version available and download again !

    Did you ever resolve the iCloud problem.I am in the same position and its driving me mad!!! If you have a link to an solution I would appreciate it.

  • IPhoto some of my photos have gotten very small.  I don't know how this happened and I can't get them back to normal size.  Any ideas?

    I have a large iPhoto library, personal.  Some of my older photos have downsized to be very small.  I am unable to get them back to normal size.  I do not know how or when this happened and don't know if I did something to cause it.  I have upgraded computers several times.  Currently have a 2011 model 27" iMac with 10.7.4.  Any help would be appreciated.
    gerryjet

    Some of my older photos have downsized to be very small.
    Can you explain what you mean by this? Dimension? File size?

  • I need a specific script and don't know how to write it

    I'm running InD CS 5.5 with OS  X 10.6.8
    I use the .indb for 13-18 documents to create a textbook for print. I use a standard 8.5 x 11 page. This textbook has a main body (32 pica width) with numbered questions in a 10 pica space outside of the margins (with a 1 pica gutter between) - each question in a text box that is anchored to the paragraph the question is about. I also have lots of graphic elements (photos, graphs) that i put in that outside space that encroaches into the main body and has a text wrap. I am wanting to use these same documents to create ebooks. I have studied the new tags and edited my style names to conform to html conventions and have included tags.
    I need a script that will:
    1) cut those questions from their boxes, delete the box, and move the questions into the main margin just above the paragraph they are anchored to. All of the questions have the same style (d-question).
    2) replace the "frame break" at the end of the questions with a paragraph marker that uses the "d-question" style
    I don't know if this is a diff script or can be done in the same one, but:
    3) i also have a little candle grapic (candle.tif) in some places (denotes an illustration) that is outside the margin but has no text associated, but is also anchored to a paragraph it goes with. I would like for it to be inline at the beginning of the paragraph text.
    4) AND move any pictures, graphs, etc. into the main body, just above where they are anchored but on their own paragraph marker styled "body_art".
    Can anyone help? I would appreciate any advice you have.

    But it does not export fine to ePub. The Question number  comes out on one
    line and the text on another. And then the little graphic comes out on yet
    another ... and they aren't next to each other. I think i'll have to go in
    to the object export actions and make a jpg for each question. I thought
    moving them into the text was easier plus i think it looks better.

  • HELP!!!! The screen on my mac mini has shrunk and I don't know how it happened and need to know how to change it back. It's really small print and it's hard for me to read.

    Please help!!! My compter screen has shrunk and the print is really hard to read. I don't know what I did to make this happen, but I'd really like to change it back to the larger size. Thanks for helping!

    Click on the Apple logo in the upper-left corner of your display.
    Click "System Preferences," then click "Displays."
    Click "Display" if it is not already selected.
    Select a resolution from the list of available resolutions. The most common screen resolution is 1280 by 1024 for standard screens and 1280 by 800 for wide screens as of February 2012
    Depending of the monitor you have.

  • I don't know how to program my DVR to edit out the commercials

    I had heard that that feature was available with the DVR.  Does anyone know how to do that?

    There is no way to edit out the commercials. If you are watching a previously recorded show or are in a buffer for live TV, you can skip past the commercials. The skip button on the remote and be programmed to jump ahead 10sec, 30 sec, 1 min, 5 min. So set the time frame to skip and press the skip button until you are past the commercials. I then use the previous button to jump backwards to where the show started again. That can be programmed to the same time frames. Me personally, I have mine set to skip 30 seconds and jump back 10. With the average commercial break being 3 minutes, I press the skip button about 6 times very quickly, then press it until I'm into my show. Once in my show, I jump back 10 seconds at a time until either the very end of the commercial break or the start of the show.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Homework help--almost done but don't know how my class and main work?

    hello, i'm doing a project for my intro to java class. i'm almost done but i'm very confused on making my main and class work. the counter for my class slotMachine keeps resetting after 2 increments. also i don't not know how to make my quarters in the main receive a pay out from my class. Please guide me to understand what i have to do to solve this problem...I have listed my question page and my class and main of what i have done so far. Thank you .I will really appreciate the help.
    Objective: Create a class in Java, make instances of that class. Call methods that solve a particular problem Consider the difference between procedural and object-oriented programming for the same problem.
    Program Purpose:
    Find out how long it will take Martha to lose all of her money playing 3 instances of the slot machine class.
    Specification: Martha in Vegas
    Martha takes a jar of quarters to the casino with the intention of becoming rich. She plays three machines in turn. Unknown to her, the machines are entirely predictable. Each play costs one quarter. The first machine pays 30 quarters every 35th time it is played; the second machine pays 60 quarters every 100th time it is played; the third pays 11 quarters every 10th time it is played. (If she played the 3rd machine only she would be a winner.)
    Your program should take as input the number of quarters in Martha's jar (there will be at least one and fewer than 1000), and the number of times each machine has been played since it last paid.
    Your program should output the number of times Martha plays until she goes broke.
    Sample Session. User input is in italics
    How many quarters does Martha have in the jar?
    48
    How many times has the first machine been played since playing out?
    30
    How many times has the second machine been played since paying out?
    10
    How many times has the third machine been played since paying out?
    9
    Martha plays XXX times
    Specific requirements: You must solve this using an object-oriented approach. Create a class called SlotMachine. Think about: What does a SlotMachine Have? What does it do? What information does it maintain? This is the state and behavior of the object. Each instance of this class will represent a single slot machine. Don�t put anything in the class unless it �belongs� to a single machine.
    In the main method, create 3 instances of the slot machine to solve the problem in the spec. Play the machines in a loop.
    ========================================================================
    my class
    ========================================================================
    public class SlotMachine{
    private int payOut;
    private int playLimit;
    private int counter;
    public SlotMachine (int payOut, int playLimit){
    this.payOut = payOut;
    this.playLimit = playLimit;
    public void setPayOut (int payOut){
    this.payOut = payOut;
    public int getPayOut(){
    return payOut;
    public void setPlayLimit (int playLimit){
    this.playLimit = playLimit;
    public int getPlayLimit(){
    return playLimit;
    public void slotCounter(){
    counter = SavitchIn.readLineInt();
    public int game(){
    counter++;
    if (counter == playLimit){
    counter = 0;
    return payOut - 1;
    return -1; // the game method was edited by my professor but i'm still confused to make it work
    =======================================================================
    my main
    =======================================================================     
    public class Gametesting{
    public static void main(String[]args){
    SlotMachine firstSlotMachine = new SlotMachine (2,3);
    SlotMachine secondSlotMachine = new SlotMachine (2,3);
    SlotMachine thirdSlotMachine = new SlotMachine (2,2);     
    int quarters;
    int playerCount = 0;
    System.out.println("How many quarters does Martha have in the jar?");
    quarters = SavitchIn.readLineInt();
    System.out.println("How many times has the first machine been played since paying out?");
    firstSlotMachine.slotCounter();
    System.out.println("How many times has the second machine been played since paying out?");
    secondSlotMachine.slotCounter();
    System.out.println("How many times has the third machine been played since paying out?");
    thirdSlotMachine.slotCounter();
    while (quarters != 0){
    playerCount++;
    quarters--;
    firstSlotMachine.game();
    if (quarters != 0){
    playerCount++;
    quarters--;
    secondSlotMachine.game();
    if (quarters != 0){
    playerCount++;
    quarters--;
    thirdSlotMachine.game();
    System.out.println("Martha plays " + playerCount + " times");

    The main problem is that you made the first and second slot machine to pay out 2 quarters after 3 games and the third machine pay out two quarters after two games. That is not what your assignment specified.
    SlotMachine firstSlotMachine = new SlotMachine (2,3);
    SlotMachine secondSlotMachine = new SlotMachine (2,3);
    SlotMachine thirdSlotMachine = new SlotMachine (2,2);
    The second problem is that you never add the payout of a machine to Martha's number of quarters.
    Look carefully at the way your professor implemented the game() method. If you think about it, what it returns is the net "gain" from playing a game. On jackpot it returns payOut -1 (jackpot less the one quarter Martha had to pay for the game), otherwise it returns -1 (Martha spends one quarter and wins nothing).
    So what you can do is simply add the returned value to the number of quarters in the jar -
    quarters = <machine>.game();
    instead of quarters--.

Maybe you are looking for