Windows Itunes Text Messed Up!

This is exactly the same problem with this post:
https://discussions.apple.com/message/12892737#12892737
Here's my picture:
http://i1181.photobucket.com/albums/x430/raymolino/***.jpg
Please help. It happened out of nowhere

Maybe this technote may help:
http://support.apple.com/kb/TA23140?viewlocale=en_US
Yvan KOENIG (VALLAURIS, France) mercredi 9 septembre 2009 10:46:10

Similar Messages

  • Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items)

    Okay i had to install Itunes onto my new OS because window's Vista messed up on me and i can't get any of my old purchases back from my account such as music and movies any ideas on how to get them back (i do not have the folder that contains old items from the last itunes or anything from that OS because it had a virus and i just wanted windows 7)

    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Hope this helps,
    JD

  • Is it possible in windows itunes to capture (copy) a playlist display as editable text?

    is it possible in windows itunes to capture (copy) a playlist display as editable text?

    Thanks for the reply, ed2345.
    I had found similar suggestions in the archived support files, but thought perhaps something had been added in the recent versions that would more directly address such an obvious need. I had used iTunes on the Apple Mac OSX platform, which provides a direct copy/paste to text file procedure (for the entire playlist display). It was a bit of a surprise to find that the Windows version did not.
    I have tried both of the suggested methods, and found the Excel routine to be the best for my needs. I have not found a way to control the massive amounts of information supplied by the Export method.
    Thanks again for the reply. It served to confirm my fears that there was no direct copy/paste routine.

  • AppleScript error with iTunes: Can't get window 'iTunes' of class pcap ...

    Hi there. I'm working on a script that posts iTunes track names to Campfire based on the AirPlay device in use. I've been getting a "Can't get window 'iTunes' of <<class pcap>> 'iTunes' of application 'System Events'" and was hoping someone might see an obvious answer. The error pops up randomly. Some machines receive the error much more often than others. Here's the code:
    global current_track
    global last_track
    global campfire_token
    global airplay_device
    global campfire_room
    global current_device
    (* Begin user defined settings ************)
    set campfire_token to "123456" (* Your Campfire API authentication token *)
    set airplay_device to "Apple TV" (* The name of your AirPlay device *)
    set campfire_room to "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    set current_track to ""
    set current_device to ""
    set last_track to ""
    on idle
              if application "iTunes" is running then
                        tell application "iTunes"
                                  if player state is playing then
                                            tell application "System Events"
                                                      tell application "iTunes"
                                                                set minimized of front browser window to false (*This AppleScript can only function when iTunes is not minimized.  *)
                                                                delay 2
                                                                set visible of front browser window to true
                                                                delay 2
                                                                set current_track to current track
                                                      end tell
                                                      delay 2
                                                      set current_device to the description of button 8 of window "iTunes" of application process "iTunes" of application "System Events"
                                            end tell
                                            delay 2
                                            if current_track is not equal to last_track then
                                                      if current_device as string is equal to airplay_device & " AirPlay" then
                                                                tell application "iTunes"
                                                                          set current_track to current track
                                                                          tell current_track
                                                                                    set trackName to (name)
                                                                                    set artistName to (" :: " & artist)
                                                                                    set albumName to (" :: " & album)
                                                                          end tell
                                                                          set track_info to (trackName & artistName & albumName) as string
      (* Replace apostrophes *)
                                                                          set search_string to "'"
                                                                          set replacement_string to "&#39;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
      (* Replace quotation marks *)
                                                                          set search_string to "\""
                                                                          set replacement_string to "&#34;"
                                                                          set AppleScript's text item delimiters to the search_string
                                                                          set the item_list to every text item of track_info
                                                                          set AppleScript's text item delimiters to the replacement_string
                                                                          set track_info to the item_list as string
                                                                          set AppleScript's text item delimiters to ""
                                                                          set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
                                                                          set shellCommand to shellCommand as string
      do shell script shellCommand
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                                                                end tell
                                                                delay 2
                                                      end if
                                            end if
                                            set last_track to current_track
                                  end if
                                  return 1
                        end tell
              end if
    end idle
    Thanks for your help. Any suggestions are appreciated!

    well, for information's sake, the cleaned-up script looks like this:
    (* Begin user defined settings ************)
    property campfire_token : "123456" (* Your Campfire API authentication token *)
    property airplay_device : "Apple TV" (* The name of your AirPlay device *)
    property campfire_room : "https://yourorg.campfirenow.com/room/123456/speak.xml" (* The Campfire room you'd like to post to *)
    (* End user defined settings *************)
    global current_track, last_track, current_device
    on run
      (* init at runtime*)
              set current_track to ""
              set current_device to ""
              set last_track to ""
    end run
    on idle
              if application "iTunes" is not running then return 60
              tell application "iTunes"
                        if (player state is not playing) or (current track is equal to last_track) then return
                        set last_track to current track
                        set minimized of front browser window to false
                        set visible of front browser window to true
                        set current_device to my getDevice()
                        if current_device as string is not equal to airplay_device & " AirPlay" then return
                        set track_info to my mungeText({name, artist, album} of last_track, "", "::")
                        set track_info to my mungeText(track_info, "'", "&#39;") -- Replace apostrophes
                        set track_info to my mungeText(track_info, "\"", "&#34;") -- Replace quotation marks
                        set shellCommand to ("curl -u " & campfire_token & ":X -H 'Content-Type: application/xml' -d '<message><type>TextMessage</type><body>" & track_info & "</body></message>' " & campfire_room)
      do shell script (shellCommand as string)
      (*display dialog shellCommand*)
      (*log "Posting to Campfire:" & shellCommand*)
                        return
              end tell
    end idle
    on getDevice()
              tell application "System Events"
                        tell process "iTunes"
                                  return description of button 8 of window "iTunes"
                        end tell
              end tell
    end getDevice
    on mungeText(itxt, stxt, rtxt)
              set tid to AppleScript's text item delimiters
              if class of itxt is text then
                        set AppleScript's text item delimiters to stxt
                        set itxt to text items of itxt
              end if
              set AppleScript's text item delimiters to rtxt
              set otxt to itxt as text
              set AppleScript's text item delimiters to tid
              return otxt
    end mungeText
    I'm positive there's a better way to check if AirTunes is the active device (maybe by seeing if the current playlist is a device playlist, and checking the source name?), but I don't have any way to test that.

  • TS3543 High DPI for Windows iTunes

    So, let's say you prefer Windows for your own reasons, and you have a modern monitor with a high pixel count. So, you turn up the DPI to make things easier to read. And then you launch iTunes, because you're, despite preferring Windows on the desktop, happen to prefer iPhones and iPads.
    The whole program is blurry unless you disable high DPI for that program, and even then the text becomes too large for the area it's bound to. The solution?
    http://support.apple.com/kb/TS3543
    You literally have to degrade the experience for the rest of the operating system in order to stop this bug from happening.
    This is not a solution. This is Apple Developers saying "turn off that new innovative feature, you don't need it". How un-apple is that?  There are no DPI-related problems in any of the OS X versions of iTunes and I can't imagine it would take a ton of effort to add in like native Windows programs have, especially when you consider the bottomless revenue Apple generates from the Windows iTunes community.
    So I guess I'd like to submit a bug you could file under "developer attitude/mindset". I'm not sure that the behavior on this stance accurately represents Apple philosophy.

    So I guess I'd like to submit a bug you could file under "developer attitude/mindset". I'm not sure that the behavior on this stance accurately represents Apple philosophy.
    We're mostly a user-to-user community, so there's no guarantee that an Apple person will see your post. If you'd like to make sure an Apple person sees your comment, you could try the iTunes product feedback form:
    http://www.apple.com/feedback/itunesapp.html

  • Help!! Itunes is messing up my computer...it freezes everything, i cant get on itunes store, and it wont sync! I already tried uninstalling and reinstalling...no luck!

    Help!! Itunes is messing up my computer...it freezes everything, i cant get on itunes store, and it wont sync! I already tried uninstalling and reinstalling...no luck!

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 & above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.

  • Ipod not recognized by windows, itunes, and will not charge with pc.

    yesterday, when i went to sync some new music onto my 1gen nano, it did not work (duh). i plugged it in 3 times:
    -1st, it displayed the "do not connect screen" for one second, and itunes flashed the screen it shows when your ipod is connected, but then the ipod disconnected itself after that one second.
    -2nd, windows gave me a message saying the hardware could not be recognized.
    -3rd, nothing at all happened, as has been happening each time i try to plug it in since then.
    i've done the 5 R's .. and i've tried all the suggestions shown on posts that sound like mine, including these: Windows XP cannot detect an iPod.
    USB drivers are not installed properly or are out of date.
    iTunes 7 doesn't recognize the iPod.
    my ipod will charge when plugged into a wall charger, and it plays normally. also, my brother's ipod (2nd gen nano) is recognized by windows/itunes.

    Hello
    I have been having nearly the same problem as Crashcup for the past month. Differences being I am operating with Windows Vista and my iPod is a 160GB Classic. I have gone through all the steps in the troubleshooting documents to no result. I attach my iPod and it is not recognized by Windows, iTunes or even in Device Manager. Not even as an "Unknown Device".
    I know there is nothing wrong with the USB ports as two different external hard drives and a video game controller work perfectly fine through them. Same goes with the iPod itself; it continues to play and function normally, and is recognized by a charging device completely separate from my laptop. Just when attached to the computer there is no sign of it.
    I am very frustrated that there is no further instruction with regard to what to do with an iPod Classic (as referred to by Crashcup: "...it says to take a photo with an iPhone, or a screenshot with an iPod touch or iPad. WHAT ABOUT THE IPOD CLASSIC????)
    Any help would be much appreciated.l=

  • IPod not recognized by Windows / iTunes

    Hello,
    I hope someone here can help. So far my first experience with Apple support has NOT been a positive impression.
    I searched for info on this problem, but the other ones I see all seem to be related to freezing or battery issues.
    iPod Classic 120GB, I don't sync very often, and just finished doing a bunch of cleanup in iTunes (album artwork, song info, etc.) and want to re-sync the pod.
    When I connect to the PC with the USB cable, Windows doesn't seem to recognize the device, and it doesn't show up in iTunes.
    It is charging through USB, however. The battery is fully charged.
    I tried 3 different USB ports on the PC.
    Tried restarting iTunes.
    Tried restarting the computer.
    Went to Apple support website, tried the troubleshooting assistant:
    Reset the pod.
    *Had already tried different USB ports.
    *Had already trired restarting the PC (Although it mentions checking for the latest software updates - I didn't do this. WHAT software updates should I look for? Device drivers? OS updates? WHAT???)
    Re-installed iTunes. (Was already at v 9.2.1.4)
    *Did not try the restore. Reading the instructions, it appears that the iPod has to be connected to do this, and that's the problem -won't connect!
    Also read something about disk mode. I set the iPod to disk mode, but it's not recognized that way, either. When connected by USB in this mode, the iPod screen still says "OK to disconnect".
    I tried the link "iPhone, iPad, or iPod is not recognized by Windows".
    I do not see the "Apple Mobile Device USB Driver" anywhere in Device Manager. I suppose this is the problem.
    However, continuing with the instructions, it says to take a photo with an iPhone, or a screenshot with an iPod touch or iPad. WHAT ABOUT THE IPOD CLASSIC?????
    (These instructions also say to disconnect the device, but nowhere says when to connect it. Why do they put half-baked troubleshooting instructions on their web site???)
    Is there anyone from Apple support on this list who can help? I believe the driver needs to be reinstalled somehow, but it didn'thappen when i re-installed iTunes, so how do I do this?
    Thanks
    Keith

    Hello
    I have been having nearly the same problem as Crashcup for the past month. Differences being I am operating with Windows Vista and my iPod is a 160GB Classic. I have gone through all the steps in the troubleshooting documents to no result. I attach my iPod and it is not recognized by Windows, iTunes or even in Device Manager. Not even as an "Unknown Device".
    I know there is nothing wrong with the USB ports as two different external hard drives and a video game controller work perfectly fine through them. Same goes with the iPod itself; it continues to play and function normally, and is recognized by a charging device completely separate from my laptop. Just when attached to the computer there is no sign of it.
    I am very frustrated that there is no further instruction with regard to what to do with an iPod Classic (as referred to by Crashcup: "...it says to take a photo with an iPhone, or a screenshot with an iPod touch or iPad. WHAT ABOUT THE IPOD CLASSIC????)
    Any help would be much appreciated.l=

  • Lost all Playlists in MAC iTunes AFTER Upgrading Windows iTunes to v.10.7 (via Parallels) - HELP!

    I HAVE iTUNES v 10.6x installed on my Macbook Pro - been using for quite awhile without issues.  All Updates to iTunes have gone just fine.  I also use Parallels Desktop with Windows XP Pro installed on it and within that Windows installation on this Mac, I have installed many software programs -- all okay for over 3 years - no real issues.  I also have installed iTunes in the Windows, but never really used the Preferences of iTunes to use its Advanced settings to change the location of the Library to the same location of the Mac's iTunes -- the Library is on an external HD.  The use of iTunes in Windows was never really used because I never had the right location of the Library set in Preferences. 
    About 5 days ago, while in Windows XP, I got an Apple Software Upgrade Notice that a new version of iTunes was available for download -- Version 10.7.  Not thinking about it then, I told myself that when I finished upgrading inside Windows that I would exit Windows and while in Macbook Pro's OS X 10.5.8, i just knew there would be an Apple Software Update Notice to also update my Mac's iTunes to version 10.7 also.  That's what I planned to do while still in Windows. While installing the update to version 10.7 within Windows, I thought I'd try to set the proper location for the Library file using iTunes' Preferences and Advance Tab.  I finished the upgrade to 10.7, went into Preferences and Advanced Tab and did just that and set the correct location on the external harddisk then tried to play songs using my Windows XP's upgraded iTunes.  IT WORKED JUST FINE.
    I now exited from Windows and went back to straight Macbook Pro OS X 10.5.8 and tried to check for this upgrade for iTunes from 10.6x to 10.7 by going to the Apple Website and downloaded this from there.  When I then attempted to install the downloaded 10.7 (to replace/update my 10.6x) it would not install because my OS X 10.5.8 is not useable for the new 10.7.  Okay, I'd just use my tried and true version 10.6x.  WRONG!!!!!
    When I attempted to open my iTunes on the Mac, it would open, but all my normal screen views were gone -- NO PLAYLISTS WHATSOEVER.  The Music folder (the Library?) was fine but all songs had the infamous "!" MARK next to each and every song -- not playable.  So, remembering the Library location setting in Preferences was the way to "reset" iTunes so the Library would be recognized and useable, I went into Preferences and reset the Library to the proper and same location as it always had been (and, where I had just previously set the Windows' iTunes to).  Now the "!" marks were gone and each song in the Music Folder played just fine.  BUT, NO PLAYLISTS WHATSOEVER.  ALL MY ORGANIZATION EFFORTS FOR YEARS WAS GONE!!!
    My thoughts are that the Windows iTunes upgrade to 10.7 changed some key iTunes files common to both operating systems on the Macbook Pro, Parallels Desktop, and Windows XP installation -- some Windows iTunes program files are kept and store in the same default location as the Mac's and on the internal hard drive of the Mac.
    Because, in further researching this problem, I found that the "iTUNES LIBRARY.itl" file located on the Mac's hard drive had, in fact, been changed by the Windows iTunes upgrade to 10.7!!!!!!  THOSE CHANGES "CORRUPTED" THIS FILE TO USE IN THE MAC iTUNES PROGRAM AND THE PLAYLISTS ARE GONE.  I also use this software in this effort:  PARALLELS DESKTOP VER 7.X, FULLY UPDATED WINDOWS XP PRO, FULLY UPDATE AS MUCH AS APPLE HAS PROVIDED TO MY OS X 10.5.8 (I CAN'T UPGRADE TO LION), AND OF COURSE iTUNES 10.6x.
    THEREFORE, WHAT EXACTLY SHOULD/COULD I DO TO GET THE PLAYLISTS BACK INTO MY MAC OS X 10.5.8 iTUNES?  I DON'T CARE TO USE THE WINDOWS iTUNES ANYMORE -- I'LL JUST STAY WITH MY MAC'S.  PLEASE HELP!!!  THANK YOU.
    LARRY HAMILTON

    Ok, now main problem is with Apps only.. problem is with msg. Iphone is sync with other library, do you want replace apps on this Iphone ??
    I already took all my apps to the computer...
    So... I need just sync Iphone with this new library and do not remove any app from Iphone...
    how to do it please?

  • I received a new IMac for Christmas and set up a new .me account and I'm using this on my IMac and IPhone4S.  how do I transfer my music from my old Windows iTunes account to my new Mac account?

    I received a new IMac for Christmas and set up a new .me account and I'm using this on my IMac and IPhone4S.  how do I transfer my music from my old Windows iTunes account to my new Mac account?

    You can red this article about transfering your tunes - http://www.myfirstmac.com/index.php/mac/articles/how-do-i-move-my-itunes-library -from-pc-to-mac-and-keep-my-settings-intact
    MJ

  • My ipod 3rd generation is not recognized by windows/itunes,please help

    My ipod 3rd generation is not recognized by windows/itunes,please help. Have tried restoring a number of times but did not work, any suggestions?thanks

    Start with this Apple support document.
    http://support.apple.com/kb/TS1369
    B-rock

  • Error messages - DDE Server Windows itunes.exe - Entry point Not found and iTunesHelper.exe - The procedure entry point asl_add_log_file could not be located in the dynamic link Library ASL.dll

    Hi
            I have tried to research these problems I am getting, but have not been able to resolve them.
    1st is the above DDE Server Windows iTunes.exe - entry point not found.
    This only occurs when I try to start iTunes.
    if I click ok , several times, iTunes will start but slowly.
    If at any time I have to reboot my computer I get
    iTunesHelper.exe - the procedure entry point asl_add_log_file could not be located in the dynamic link library ASL.dll
    if I click 3 times OK it goes away.
    To this end I have uninstalled iTunes and rebooted my machine then gone to iTunes web site and downloaded the latest version.
    Installing it but still get the same errors on reboot and trying to run iTunes
    Anyone any ideas please.
    I have a self build PC it has an Intel core 2 quad Q6000 @ 2.40GHz
    Ram 4.00GB
    32bit OS
    Windows 7 Ultimate SP1
    Firewall - Zonealarm
    Virus   -  Zonealarm
    Thanks in advance
    Steve
    Message was edited by: Ybslik
    Message was edited by: Ybslik

    Taken at face value, you're having trouble with an Apple Application Support program file there. (Apple Application Support is where single copies of program files used by multiple different Apple programs are kept.)
    Let's try something relatively simple first. Restart the PC. If you're using Vista or 7, now head into your Uninstall a program control panel, select "Apple Application Support" and then click "Repair". If you're using XP, head into your Add or Remove Programs control panel, select "Apple Application Support", click "Change" and then click "Repair".
    If no joy after that, try the more rigorous uninstall/reinstall procedure from the following post. (If you've got XP, although the procedure is for Vista and 7, just read "Computer" as "My Computer", read "Uninstall a program control panel" as "Add or Remove programs control panel" and assume the system is 32-bit, and you'll be doing the right things.)
    Re: I recently updated to vista service pack 2 and I updated to itunes 10.2.1 and ever

  • Ex-Mac user now on Windows 7: How to acccess my iTunes library (now on my PC) with my Windows iTunes?

    I'm an ex-Mac user now on Windows 7: How to acccess my former Mac iTunes library (now on my PC) with my Windows iTunes? I get error message: The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes.
    Can anyone help me please?
    Roy

    So, what I have done so far to try to achieve this is:
    I have my Windows PC with it's NTFS formatted external HDD containing the music etc.
    I have my Mac with a new external HDD formatted in Mac OS Extended (Journaled).
    On the Windows PC:
    * I opened up iTunes.
    * Went into Preferences, and then under the Advanced tab I checked both 'Keep iTunes Media Folder Organised' and 'Copy files to iTunes Media folder when adding to library', so that all the files would be in the main iTunes Media folder when I copy it over.
    * Then File, Library, Organise Library and ticked the 'Consolidate Files' so that it moves any files that aren't in the right folder.
    Next I copied the files over. So I copied the updated media folder from the NTFS (Windows) external HDD onto the Mac external HDD.
    And I copied the files from in My Documents/Music/iTunes on the Windows PC to User/Music on the Mac.
    But this doesn't seem to have done it.

  • Smartform:Window Tilte Texts r  junk values in PDF of my forms

    Dear all
    Smartform: i get header title & Window Tilte Texts r  not appearing, some  junk values does appear in PDF of my forms .
    Whr to check ?
    thnx
    Moni

    Hello,
    The reason why I proposed the reinstallation of Adobe Acrobat is due to the reason that the font which you used in SSF ( font size also matters ) may NOT be available in Adobe Acrobat.
    May be you can try out with some other font and try.
    Hope this helps you.
    Best Regards, Murugesh AS

  • App for editing/reading/writing Excel, Word, Windows notepad text documents

    I was wondering if any of you's could recommend some apps (from experience) that would allow me to, edit/read/write Excel, Word, Windows notepad text documents.
    I could make do with an app that would do the above but without the ability to create, edit Windows notepad text documents. But been able to read, write, edit Word and Excel documents would have to be a must.
    Thanks in advance.

    Thanks everyone for the help it was much appreciated.
    After debating, I decided on Docs To Go at £9.99. For this amount its a universal app and as such I can have it installed on my iPhone as well as my iPad (which is what I have done), so £5 for to have it on each device is good value I feel. Quick Office on the other hand would have cost £8.99 for the iPad version and £5.99 for the iPhone version a total of almost £15, which is quite a bit more than I paid for Docs To Go.
    Upto now, I find Docs To Go does everything I want from it, with regards to editing, reading, writing my Excel files. I tried transferring a Microsoft Windows Notepad text document over to the iPad/iPhone, I was able to read this and also add additional text/words to it and save it too. I do use text documents sometimes because if I want to add them onto a friend's computer for example, I know that they will be able to read them because with them having a Windows PC and also my friend does not have the Microsoft Office program on their PC.
    The transferring of files from the computer to the iPhone/iPad is done via a free download of the Docs To Go desktop software program (which is both PC and Mac) compatible). You first need to go into the Docs To Go app and select 'ADD DESKTOP'. This then allows you to add a device to the Docs To Go desktop program thus enabling transfer. You are shown a pin number on the screen which you enter into the Docs To Go app, this procedure only needs to be done once.
    The Docs To Go desktop program creates a folder during installation, where all the files etc are stored that are transferred/going to be transferred over are kept.
    Some people might think needing to use a program to transfer files over is a bit of a nuisance, when other similar programs allow transfer via a web browser. Personally I find that those programs, the transfer is a bit cumbersome and can be a bit slow. I find the transfer via the Docs To Go desktop program is a lot easier and faster than using the web browser. The only downside I can see with needing to use the Docs To Go desktop program is that.. If I am at a friend's house and want to transfer something on to my iPhone/iPad. My friend would need to install the program, but saying that, its a very small program and its not a big deal having to install it. If they didn't want to install it, then there is either emailing the file or transferring the file to my Dropbox account. I forgot to mention that Docs To Go supports cloud/online storage such as Dropbox, GoogleDocs as well as others.
    Once the above is done, you switch the wifi on, load the Docs To Go app, load the Docs To Go desktop program. You then just drag and drop the folders etc that you are wanting transferred over into the The Docs To Go desktop program, then you click on the circular arrow button and they are then transferred over onto the iPhone/iPad.
    Once on the iPhone/iPad, you can view them, add additional information, when you make any changes you can press the circular arrow symbol (bottom left of the Docs To Go app) on the Docs To Go app and the changes are then synced back to the same file that is stored on the computer, so its very easy to keep everything in sync and up to date.
    It is possible whilst using a Microsoft Word document to have a word count, you just touch the symbol at the bottom right of the Docs To Go app and choose Word Count from the drop down menu. I have heard a few people in some reviews saying that 'Docs To Go doesn't have a word count', when indeed it does.
    One surprise is that Docs To Go, does not have a spell checker, but hopefully during later updates, the feature might be added. I sent my feedback to Docs To Go requesting this feature on future releases. I expect that there will be many other people who have requested this feature too.
    I just thought I would share my experience with using Docs To Go.
    Thanks again everyone for the help, it was much appreciated

Maybe you are looking for

  • How can I get the scrubber software to correct a driver installation error?

    I am currently on Windows 8.1.  When I try to install the printer driver for my OfficeJet Pro L7650 I get the following error message:  "System cannot find file specified".   I have read that there is a scrubber software that will solve this issue.  

  • Connection to Car Stereo

    I have an ipod connection into my car stereo in my Infiniti.  I was hoping to replace my ipod with my Blackberry Storm and be able to play it through my stereo system.  Is there a cable that will fit my car connection and the Storm?

  • Bogus packets in OffloadLso test

    All, I am running OffloadLso test with following features enabled  1. LSOV1 2. LSOv2 including IPV4 option, IPV6 ext header support 3. NVGRE LSO support for all headers While testing GRE LSO, I see some bogus packet coming for LSO offload. I am  maki

  • Services sequence order for Hyperion 11.1.1.3

    Hi All, I installed Hyperion 11.1.1.3(Foundation, Planning, HFM, HPCM) suite in HP-Xeon Server. Can anyone tell me the starting and stopping sequence order for Hyperion 11.1.1.3 The following services got installed : Hyperion Administration Services

  • Storage Location - MRP

    Hi Experts, 1. I have excluded a storage location ( say SLoc001) in the SPRO config : "Storage Location - MRP -> Storage location stock excluded from MRP" 2. In the Scheduling agreement (ME31L) i am giving the excluded storage location (SLoc001) as t