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.

Similar Messages

  • 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"

  • Updating iphone 4 to iOS 5 - while doing the Backup I receive an error message no 402636788 - backup has failed. Can anybody tell me what this means or how I can fix this?

    Updating iphone 4 to iOS 5 - while doing the Backup I receive an error message no 402636788 - backup has failed. Can anybody tell me what this means or how I can fix this?
    I am working on a Win 7 Machine and I have disabled all Firewall and Antivirus Tasks as this caused problems on an other update.

    Well - I synced before - that was successful - but I am a bit scared to ignore this error and just to continue? You think I should ignore that?

  • 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.

  • 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.

  • 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");

  • 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 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 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

  • IBooks will not sync PDF collections with my IPhone. It syncs the collection title but not the content?

    My IBooks will not sync PDF content with my IPhone. It syncs the collection title but no content. Both devices are set to sync collections? Any ideas how to fix this?

    The 'sync collections' setting does not copy books or PDFs between devices - all it does is if you have the book on both devices and you move it into a collection on one of them, then it will be put into the same collection on the other device.
    You will need to sync each PDF that you want on your phone. If you don't currently have them on your computer then connect your iPad to your computer's iTunes and do File > Devices > Transfer Purchases to copy them over (that should copy PDFs and/or epubs that are in the iBooks app, not just actual ibooks), and if using a Mac with Mavericks on it do File > Move Books From iTunes in the iBooks app on it, and you can then sync them to your iPhone.

  • Can anyone tell me what this Time Machine error means? The network backup disk does not support the required AFP features?

    Can anyone tell me what this Time Machine error means? The network backup disk does not support the required AFP features?

    AFP - Apple Filing Protocol
    The Network Attached Storage (NAS) that you are pointing Time Machine at does not have the features needed by Time Machine in order to do its Thing.  Time Machine needs some specific features that are not typically available on generic networked storage devices.
    There are manufactures that support the Mac OS X HFS+ file system formats and implement all the needed AFP protocol packets necessary so that they can be used with Time Machine, but apparently yours does not.
    If you are not using a networked mounted volume for Time Machine, then more information will be needed about your Time Machine setup.

  • TS3274 My Ipad will not come on after reset. All i get is the little white apple to appear that is it. Any suggestions ?

    My Ipad will not come on after reset. All i get is the little white apple to appear that is it. Any suggestions ?

    Hi Dawg70,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281?viewlocale=en_US
    Cheers,
    Judy

  • My iphone 4s keeps overheating and will not let me go on any of my apps as well as send any messages. plus my contract isn't up for another 6 months, what can i do?

    My iphone 4s keeps overheating and will not let me go on any of my apps as well as send any messages. plus my contract isn't up for another 6 months, what can i do?

    RESOLVED!!! I logged on to my Straight Talk online account, and did a Tech Chat. They immediately gave me a direct phone number and a Reference PIN number and asked me to contact their iPhone specialty support. I called (of course the gentleman's accent was very difficult for me to understand, but managed with asking continually for clarity). He walked me through several tests, setting changes and had me get on my wifi to obtain the latest APN settings. None of his efforts worked ad it was obviously NOT my Straight Talk iPhone 5, 64GB CDMA (no SIM) - it was something with their setting on their end on my account. I was placed on hold a few times and he would come back on to have me try to get on Safari and even Google... after the 3rd on-hold, he returned and asked me to try to use my data again without the wifi turned on and BINGO it worked... I still do not have my wifi turned on and I'm still receiving texts from YESTERDAY too while I was away from wifi service. IF you come across this issue - please call Straight Talk and/or log on to your Straight Talk online account and talk to an online customer service representative and get their direct line phone number for iPhone support and have your Reference PIN number available. Good Luck

  • My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours and

    My imac will not load after I enter my password. The only thing I get is the arrow from my mouse on top of a blank white screen.  Can anyone tell me what this is?  I've restarted and turned off several times.  I left it on in this state for 8 hours hoping it would reload and work.  No luck.

    Hello KCC4ME,
    You may try booting your Mac in Safe Boot, as it can resolve many issues that may prevent a successful login.
    OS X: What is Safe Boot, Safe Mode?
    http://support.apple.com/kb/HT1564
    If a Safe Boot allows you to successfully log in, you may have issues with one or more login itmes (while the following article is labelled as a Mavericks article, it is viable for earlier versions of the Mac OS, as well).
    OS X Mavericks: If you think you have incompatible login items
    http://support.apple.com/kb/PH14201
    Cheers,
    Allen

  • 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?

Maybe you are looking for