How do you start a document

HHow do you start a word document on iPad 2

What app are you going to use for the document? Each may have its own method of creating a new document.

Similar Messages

  • How do you start a document in Word (PC), and send to iCloud ?

    I have to use a PC at the office, Mac Mini or iPad2, and iPhone 4, and want to sync docs from all.  Sounds like I have to buy iPad/iPhone Pages app, then Pages program for Mac Mini.  What about when I start the document on the PC at work?

    Where have you saved the document, or are you talking about a template?
    You do not delete any documents inside Pages. You must locate them in Finder (probably in the Documents folder) and then drag them to the Trash.
    If you need basic help with using a Mac, Apple has helpful videos and tips in their Support section of their website.
    Peter

  • How do you start endnote numbering over in each section?

    How do you start endnote numbering over in each section?

    Breaking the threads between sections won't help you, since the endnotes
    and the endnote references in the text are completely static, regular
    text. (However, if this is a long document, breaking the thread between
    sections/chapters can significantly speed up InDesign, and it's one of
    the first things I do when working on long docs.)
    Now, presumably your endnotes references in the text have a character
    style applied to them? Likewise, hopefully your endnote references at
    the beginning of each endnote also have a character style applied to
    them? If not, the first thing to do is apply a char style to these (make
    2 styles -- one for the refs in text, the other for the numbers at start
    of endnotes).
    Next, is to find a script that can do maths based on a character style.
    Must be one around somewhere...  ... yup, here
    you go:
    http://indesignsecrets.com/free-script-to-change-all-numbers-in-a-document-using-math.php
    So, now you just need to run the script, figure out how much to subtract
    from each character style for each section so that the first note is 1,
    and Bob's your uncle.

  • How do you start "hp smart web prnting" ?

    how do you start "hp smart web prnting" ?

    Hi,
    Which Internet Explorer version are you using?
    Considering the HP Smart Web Printing is supported by Internet Explorer 8 and below might be the cause.
    For Interenet Explorer 9, you should install and use the HP Smart Print which available for download below:
    http://h41112.www4.hp.com/bing_toolbar2/us/en/smart.html?jumpid=reg_R1002_USEN
    If you are using any earlier Internet Explorer 6, 7, or 8, click the HP Smart Web Printing button on the top btowser bar (a leaf-shaped icon) in order to show the HP Smart Web Printing bar.
    If you cannot see the icon, click the arrow icon located at the side of the bar which in order to expand the menu buttons.
    You may find additional usage information below:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c01846025&tmp_task=useCategory&cc=us&dlc=en&lang...
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How do you highlight multiple documents rapidly, rather than having to click on the document and on "command" one at a time?

    How do you highlight multiple documents rapidly, rather than having to click on the document and on "command" one at a time? Right now, when I'm trying to highlight documents to export, I have to click on each document individually. Is there a way to highlight one document while scrolling down the list until all desired documents are highlighted? I would like to rapidly be able to do this to save time when I am exporting or saving multiple files from my documents to an external drive, CD-Rom or cloud storage.

    Click on the first item
    Hold the Shift key
    Click on the Last Item.
    All the items in between will be selected.

  • How Do You Drag A Document You Have On A Mac Onto An External HardDrive??

    Ive just recently bought a Macbook Pro and was wondering how can you drag a document onto an external hard drive. Is it the same as Windows?? Because everytime I try that, it wont let me :s.
    If anyone could help it would be awesome because I need to know how to do this so I can put my cousework I have done on my MacBookPro, onto my external hard drive.
    Thanks
    Carol-Anne

    Your external drive is likely formatted NTFS.
    Take the drive to the PC and remove all the data on it and right click on it and format it exFAT or FAT on the PC, then place the files back on.
    (Formatting a drive will remove all data on it.)
    Take it to the Mac and it can use it just fine.
    No need to buy any software, it will have to be constantly updated and tends to cause problems and glitches.
    Drives, partitions, formatting w/Mac's + PC's

  • How do you save Pages documents so that someone can read them when e-mailed to a pc

    How do you save pages documents so that someone can read the docs when e-mailed to their PC, do I need to format the doc first ? Or save as??

    Hit File > Export... and choose Word Document.
    Hope it helps!

  • How do you delete a document in Pages?

    How do you delete a document in Pages? I keep trying to and it's still there...very annoying. Any help would be great. Thanks!

    Where have you saved the document, or are you talking about a template?
    You do not delete any documents inside Pages. You must locate them in Finder (probably in the Documents folder) and then drag them to the Trash.
    If you need basic help with using a Mac, Apple has helpful videos and tips in their Support section of their website.
    Peter

  • I made a picture collage in pages from the pictures in iPhoto.  You used to be able to print and then say save as a jpeg to iPhoto and that option is gone.  How do you turn your document into a jpeg now.

    I made a picture collage in pages from the pictures in iPhoto.  You used to be able to print and then say save as a jpeg to iPhoto and that option is gone.  How do you turn your document into a jpeg now?

    If you chose print, you can save as PDF. If you open the saved PDF in preview, you can save as JPEG, GIF, PNG. FYI you can crop in preview.
    Another option is you could use command + shift + 4 to do a screen shot of a specific part of of the screen.

  • What is the apple mobile device service? how do you start it ?

    what is the apple mobile device service? and how do you start it?

    Try Here   http://support.apple.com/kb/TS1567

  • How do you start a loop with an event and end the loop when u release ....

    How do you start a loop with lets say an event of some sort, whether it be holding down a key or pressing the mouse click and then stopping the loop when you release that key or mouse button.?
    double c = 1.8, i = 1, max = 90, exp = 0;
    final double inc = 0.002; //speed at while it increases
    boolean f = false, g = false;
    while (true)
        while (f == false && stopMeter == false) //increasing speed going up to 90
            exp = Math.pow (c, i);
            i += inc;
            pAngle.setText (Math.round (exp) + "");
            if (exp > max)
                f = true;
                g = false;
            } //end if
        } //end while
        while (g == false && stopMeter == false)  //decreasing speed going down from 90
            exp = Math.pow (c, i);
            i -= inc;
            pAngle.setText (Math.round (exp) + "");
            if (exp < 1)
                g = true;
                f = false;
            } //end if
        } //end while
    } //end whilethis is a snippet of my increasing increments. Its for an angle meter. I can't get it to stop, when the user clicks or does something... the program just gets stuck in an infinite loop. I am still new to java and i do not know how to fix this.

    You are in the wrong forum. Try this one instead: http://forum.java.sun.com/forum.jspa?forumID=31
    /M

  • How do you start the hardware test on an imac with bluetooth keyboard

    How do you start the apple hardware test on an imac with a bluetooth keyboard as the instructions is to press the D key whilst restarting? And of course the imac cant see the keyboard whilst booting up as the bluetooth connection has yet to be established

    Have you tried following the directions for running it from the DVD? The instructions are on the Hardware Test link.If you are correct and it cannot due to the wireless keyboard not making a connection you will need to borrow a wired USB keyboard.  

  • Can i put Microsoft word onto the ipad, if so how can you save the documents, can i put Microsoft word onto the ipad, if so how can you save the documents

    can i put Microsoft word onto the ipad, if so how can you save the documents, can i put Microsoft word onto the ipad, if so how can you save the documents

    Welcome to Apple Support Communities
    If you have Office 365, you can install Office in your iPad > https://itunes.apple.com/us/app/suscriptores-office-mobile/id541164041?mt=8
    If you haven't got Office 365, there are other apps that work with Microsoft Word files, like Documents To Go > http://www.dataviz.com/dtg_home.html

  • How can you start the tag config editor from a vi or when labview starts?

    how can you start the tag config editor from a vi or when labview starts?

    Hi,
    There is a VI called "dsc_TagEditorLauncher.vi" under "C:\Program Files\National Instruments\LabVIEW 7.1\project\lvdsc" folder that can be used to launch the TCE programmatically. I hope this helps.
    Best Regards,
    Remzi A.
    Applications Engineering
    National Instruments

  • HT5248 How do you start the dictate feature?

    After the update iWork still looks the same and search Help did not bring anything up. So how to you start the dictate feature to have your speech to text?

    Once you upgrade to ML, you go to System Preferences and enable it. Then you select your shortcut for turning it on and off. The default is a double-tap on the fn key.
    Jerry

Maybe you are looking for

  • Payment card not working and it says an error

    PAyment card not working

  • Maximum HDD size for Satellite Pro 4290 ??

    My hard disk is wearing out (Win 98 tells me it has many bad sectors). Do I have to fit a 6gig hard disk or can I upgrade? If so, how big a disk will the latest BIOS address? I think I need a 2.5" 9.5mm disk, but I don't know if there are any other s

  • JEditorPane parsing HTML

    Hi all, I am using JEditorPane and it's ability to parse HTML, which although is relatively old and crusty is certainly all I need for the job. Now, I understand there is a chain of classes involved in taking my .html file and turning popping into a

  • What is the message server port on an WAS JAVA 7.0 instance.

    I am reading a document that says it is 36NN, where NN is the instance number. But the problem is that  I checked the server and it is actually running on 39NN where NN is the instance #. When did they change this? Thanks

  • I Lost my BBM Contacts

    Some days ago, while using my Blackberry Q10, I received the following message:  THE BB ID**Removed** IS ALREADY ASSOCIATED WITH BBM ON ANOTHER DEVICE.  DO YOU WANT TO SWITCH BBM INFORMATION TO YOUR CURRENT DEVICE:  OPTIONS: Exit or Switch BB At firs