Hi i have just purchased a mac pro. ive installed word for mac as i wanted to transfer word documents from a windows pc, which are ona usb stick. however i cannot open the usb stick. can anyone tell me what im doing wrong!

Hi, I've bought a mac pro and installed word for mac, as i wanted to transfer word documents to the new pc. I saved the documents ona usb stick but I cannot open the documents from the stick. What am i doing wrong?
thanks

Welcome to the Apple Support Communities
First of all, check that you are looking for your USB drive in the correct place. To do it, first connect the USB drive. Then, open a Finder window (press the left icon of Dock) and choose your USB drive on the Finder sidebar, under "Devices". Finally, just copy the documents you need to the internal disk.
If you want to show the USB drive in Desktop, open Finder menu (on the menu bar) > Preferences > General, and tick "External drives"

Similar Messages

  • Itunes document manager pro will not open a document with .cwk extension. It will catch the document then error message states that it cannot open document. Can anyone tell me what Im doing wrong?

    Itunes document manager pro will not open a document with .cwk extension. It will catch the document then error message states that it cannot open document. Can anyone tell me what Im doing wrong?

    Forgive my ignorance but I have never hear of iTunes Document Manager Pro. If you mean Document Manager Pro, i was able to find that. Back to your problem, have you tried opening one of those files in the iOS iWorks apps? Form the quick read that I did about this, .cwk files can be opened by Pages, Numbers or Keynote, depending on what type of document that it is and those files can be read by Document Manager Pro, after properly saving them. I don't see that you can go directly from the .cwk file in Document Manager Pro without converting them first.
    I took a very quick look at the app, so I may be a missing something about its capability.

  • I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    I have a issue with my mac book pro. For some reason it won't stay powered on. I can't get past the apple loading logo. The battery is fully charged so it is not the problem. Can anyone tell me what the problem may be and how can i get it resolved?

    The battery is fully charged so it is not the problem.
    What happens when you use the MagSafe?

  • I just purchased the ipad I have an itunes account but it tells me I am not connected to the itunes store. can anyone tell me whats wrong

    I have just purchased the ipad and trying to log onto itunes and it tells me I am not connected .  i typed in my apple sign on and it states cannot connect to itunes store. Can anyone tell me whats wrong?

    I'm sort of confused by your response. Did your iPad start up? If I DO understand - you are frozen on the sign in setting for the Store?
    Try this - force quit the settings app.
    Force quit the app by holding down on the sleep button until the red slider appears. Let go of the sleep button and then hold down on the home button until the app quits. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • I have just bought a new laptop with windows 8 and when trying to load itunes was told it was incompatible. Can anyone tell me what I can do to put itunes on my computer? thank you

    I have just bought a new laptop with Windows 8 and cannot load itunes from the existing disc or online as it is incompatible.Can anyone tell me what I can do now to get itunes on to my computer? Thank you

    See the futher information area of Troubleshooting issues with iTunes for Windows updates for download advice and direct links if required.
    See this migrate iTunes library post for advice on moving the library over from a previous computer and this post on deduplication.
    tt2

  • When I open the website as oldc.in on firefox then sometimes there images are out of the boxes? Can anyone tell me what can I do for it?

    When I open the website as http://oldc.in then there posting are going out of boxes so please can anyone tell me about fixing this problem? This problem is going only with mozilla firefox.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    If you have made changes to Advanced font settings like increasing the minimum/default font size then try the default minimum setting "none" and the default font size 16 in case the current setting is causing problems.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow pages to choose their own fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced: [X] "Allow pages to choose their own fonts, instead of my selections above"
    *http://kb.mozillazine.org/Websites_look_wrong
    *http://kb.mozillazine.org/Website_colors_are_wrong

  • I can no longer log into my Remote Work site with Firefox, and I do not know why (I won a Mac)--can anyone tell me what might be wrong?

    For 1 1/2 years I had been able to log in to my work Remote Access site using Firefox, but I no longer can--it just sits there and does nothing. I have tried deleting the Firefox browser in case of corruption and reloaded from the Mozilla website, but that does not help. I prefer not to give the URL of my company website, but it is possible someone can help me. Might the problem be java, or something else?

    You'll have to call and explain your situation to Adobe Customer Service for your region.

  • Can anyone tell me what I did wrong?

    I've been trying to code a game and it kept on giving me "TypeError: Error #1009" on the output whenever I make my player touch the car.
    Here's the .as codes:
    package {
      import flash.display.*;
      import flash.events.*;
      import flash.utils.*;
      import Game.*;
      public class TouchALife extends MovieClip
      private var Hearts:Number;
      private var jumping, left, right:Boolean;
      private var speedX, speedY: Number;
      private var platformsArray, heartsArray:Array;
      public function TouchALife()
      public function startGame()
      stage.focus = stage;
      Hearts = 0;
      speedX = 0;
      speedY = 0;
      jumping = false;
      left= false;
      right = false;
      platformsArray = new Array();
      heartsArray = new Array();
      setupGame();
      addEventListener(Event.ENTER_FRAME,update);
      stage.addEventListener(KeyboardEvent.KEY_DOWN,keyDownHandler);
      stage.addEventListener(KeyboardEvent.KEY_UP,keyUpHandler);
      private function setupGame()
      //Check for items on the stage and put them into
      //the appropriate array
      for (var i=0; i< MovieClip(root).numChildren; i++)
      var object = MovieClip(root).getChildAt(i);
      if (object is Platform)
      platformsArray.push(object);
      else if (object is Heart)
      heartsArray.push(object);
      private function keyDownHandler(evt:KeyboardEvent)
      if (evt.keyCode == 32) //spacebar
      //Make player jump
      jumping = true;
      else if (evt.keyCode == 37)
      //Move player left
      left = true;
      else if (evt.keyCode == 39)
      //Move player right
      right = true;
      private function keyUpHandler(evt:KeyboardEvent)
      if (evt.keyCode == 37)
      //Stop Moving Left
      left = false;
      else if (evt.keyCode == 39)
      //Stop Moving Right
      right = false;
      public function update(evt:Event)
      //This is the game loop
      //Handle user input
      if (right)
      mcPlayer.moveRight();
      else if (left)
      mcPlayer.moveLeft();
      else
      mcPlayer.stopMoving();
      if (jumping && !mcPlayer.isInAir())
      mcPlayer.jump();
      //reset jump
      jumping = false;
      //Handle game logic
      mcPlayer.update();
      //Check for collision between player and platforms
      if (mcPlayer.isFallingDown())
      for (var i = platformsArray.length - 1; i >= 0; i--)
      if (platformsArray[i].hitTestObject(mcPlayer.hitBox))
      mcPlayer.y = platformsArray[i].y;
      mcPlayer.hitFloor(platformsArray[i]);
      //Exit the loops
      break;
      //Touch the car
      if (mcVehicle.hitTestObject(mcPlayer.hitBox))
      //Hearts += 1;
      gameOver();
      gotoAndPlay("end");
      //Check for collision between player and aliens
      for (i = heartsArray.length - 1; i >= 0; i--)
      if (heartsArray[i].hitTestObject(mcPlayer.hitBox))
      if (mcPlayer.isFallingDown())
      //player jumped on it
      removeChild(heartsArray[i]);
      heartsArray.splice(i,1);
      Hearts += 1;
      else
      //player is hit
      removeChild(heartsArray[i]);
      heartsArray.splice(i,1);
      Hearts += 1;
      //Handle display
      txtHearts.text = String(Hearts);
      private function resetGame()
      mcPlayer.x = 410;
      mcPlayer.y = 575;
      private function gameOver()
      removeEventListener(Event.ENTER_FRAME,update);
      stage.removeEventListener(KeyboardEvent.KEY_DOWN,keyDownHandler);
      stage.removeEventListener(KeyboardEvent.KEY_UP,keyUpHandler);
      }//end class
    }//end package
    Here's how my .fla timeline looks like
    At frame 1:
    startGame();
    stop ();
    So here's what I'm actually planning to do: No matter how many hearts the player decides to collect, as long as they touch the car, there'll be an animation playing after that.
    But it's just that when the player touches the car, the type error starts coming out from the Output

      //Touch the car
      if (mcVehicle.hitTestObject(mcPlayer.hitBox))
      //Hearts += 1;
      gameOver();
      gotoAndPlay("end");

  • GS70 new bios update 70F ntfs V 06. 8/22/2104 can anyone tell me what it does...

    as the title states. what is the benefit? should I update from 70E? What are the benefits? What performance gains are there?

    Hey TheHorniak,
    Like it says, 70F has updated the ntfs driver in the bios.
    Whether updating it or not it's really your choice, personally I like to keep my bios to the latest version.

  • My I phone doesn't allow me to update my billing information. call somebody tell me what I doing wrong.

    My I phone 4S doesn't allow me to update my billing information. When I entered the new information he keep the old one. After I finished entered the data I press DONE and  I still have the old data.
    Does not accept my new credit card information. Can somebody tell me what I doing wrong and how to fix it.
    Thanks for your assistance.
    papasam 1969

    Did you follow these instructions:
    http://support.apple.com/kb/ht1918

  • I have a Mac Pro 4,1 quad core intel Xeon running mac OSX 10.6.8 and I have just moved studios and now need to use the Internet wirelessly but there's no airport facilities on this model can anyone tell me what model of airport card I would need for this

    I have a Mac Pro 4,1 quad core intel Xeon running mac OSX 10.6.8 and I have just moved studios and now need to use the Internet wirelessly but there's no airport facilities on this model can anyone tell me what model of airport card I would need for this mac

    Instead of getting a wireless card for the Mac Pro, you might want to consider getting an 802.11ac wireless bridge device that would enable you to connect more than one device to it by Ethernet cable and to eventually take advantage of the faster 802.11ac wireless standard.

  • I have just purchased a macbook pro. I downloaded two sd cards, one via lightroom 4 and the other via iPhoto. I can't find the latter card when I try to import via LR4. In fact i can't find it at all unless i open iPhoto. where is it?

    Good Evening, I have just purchased a Macbook Pro, and have downloaded two SD cards of a trip to USA and Canada last September.  One via Lightrooom 4 and the other via iPhoto. I tried to import the SD card via iPhoto into Lightroom 4 but could not find it. I tried to find this "folder"? via other means with no success. however when I open iPhoto, there it is, so it must be on the Hard Drive somwhere??? I am new to Apple having decided to jump ship from Windows. Would be grateful for any help.

    iPhoto is a - like Lightroom - Photo Manager. It's a database. Like any db to get data out you have to export it.
    File -> Export
    and in this case set the Kind to Original.
    iPhoto is a $15 app, LR is somewhat more expensive. As they both want to manage the photos there's no good usage scenario where you use both. Pick one horse and ride, essentially.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Hi, we need to create the test environment from our production for oracle AP Imaging. we have soa,ipm,ucm and capture managed servers in our weblogic. can anyone tell me what is the best way to clone the environment, can I just tar the weblogic file syste

    Hi, we need to create the test environment from our production for oracle AP Imaging. we have soa,ipm,ucm and capture managed servers in our weblogic..
    Can anyone tell me what is the best way to cloning the application from different environment, the test and production are in different physical server.
    Can I just tar the weblogic file system and untar it to the new server and make the necessary changes?
    Can anyone share their experiences and how to with me?
    Thank in advance.
    Katherine

    Hi Katherine,
    yes and no . You need as well weblogic + soa files as the database schemas (soa_infra, mds...).
    Please refer to the AMIS Blog: https://technology.amis.nl/2011/08/11/clone-your-oracle-fmw-soa-suite-11g/
    HTH
    Borys

  • I have just updated my iphone4 to iOS 5 and unable to restore my back up. The error message that appeared was "an error occurred while restoring this iPhone (-50). Can anyone tell me what the problem is?

    . Can anyone tell me what the problem is?

    I have had the same issue since day 1 of the ios5 installation.  I always hit "Cancel" and then the iPad eventually shows up again in iTunes.  Then a few hours later, I get the same message again.  Annoying, but I've not found a way around it.

  • I have mac os x10.4.11 Tiger , i tried to update and after I did that when I tried to use itunes, but it doesn't open.. can anyone tell me what I have to do to fix this ??

    I have mac os x10.4.11 Tiger , i tried to update and after I did that when I tried to use itunes, but it doesn't open.. can anyone tell me what I have to do to fix this ??

    Hello,
    Leopard requirements/10.5.x...
        *  Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor
    minimum system requirements
        * 512MB of memory (I say 1.5GB for PPC at least, 2-3GB minimum for IntelMacs)
        * DVD drive for installation
        * 9GB of available disk space (I say 30GB at least)
    Classic/OS9 Apps no longer supported.
    Trouble is Apple no longer sells it, check eBay & such for the Retail version, not the Gray Discs...
    http://www.ebay.com/sch/i.html?_nkw=mac+os+x+leopard+retail+10.5
    There are workarounds if the 867MHz CPU is the only hangup...
    http://sourceforge.net/projects/leopardassist/
    http://lowendmac.com/osx/leopard/unsupported.html
    So we know more about it...
    At the Apple Icon at top left>About this Mac, report the version of OSX from that window, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: eMac
    Model Identifier: PowerMac6,4
    Processor Name: PowerPC G4 (1.2)
    Processor Speed: 1.42 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.2f1

Maybe you are looking for