Applescripts no longer work

Hi all,
I had to update some old applescripts, but apparantly none of them work anymore on my machine (OSX Mavericks).
It seems to be related with calling InDesign (tried with CS5, 55 and 6), but I'm not sure.
Sample:
set myJavaScript to "alert (\"lalala\");"
tell application "Adobe InDesign CS6"
          do script myJavaScript language javascript
end tell
Result:
Sytax error:
Expected end of line but found “script”.
This used to work fine and actually still works on other machines (also OSX Mavericks)
Hoping anyone has experienced something like this and knows a solution...
Thanks!

Apparently the AppleEvent subsystem can not even resolve the application by name.
The reported error could just be an applescript way to indicate a syntax error, e.g. the terminology data is not available - the equivalent to ExtendScript's OMV data needed to compile the script.
What happens if you execute the following script:
get path to application "Adobe InDesign CS6"
The event log should yield a meaningful path to the InDesign app...
You could also try to compile the script as script-application on a different machine and transfer the complete applet. If you run it you may find out which program is pretending to be InDesign.
Dirk

Similar Messages

  • Batch printing using Applescript - no longer works

    For several years I have been using a simple Applescript to monitor the contents of a folder, print new files then delete these files:
    on adding folder items to this_folder after receiving added_items
    repeat with each_item in added_items
    tell application "AddPrinter" to open each_item
    delay 30
    tell application "Finder" to delete each_item
    tell application "AddPrinter"
    quit
    end tell
    end repeat
    end adding folder items to
    After the last Mavericks update it has stopped working and gives the error message "the document m3.txt could not be opened. AddPrinter cannot open files in the text format"
    The same happens for PDF files - it seems that AddPrinter app has been changed and this functionality no longer works.
    Is there some way to restore the previous AddPrinter functionality (I tried copying and using an old verison of the app, without success)?
    Or is there another app that will work as intended?

    I have found an alternative to the AddPrinter.app that sort of works in this Macscripter tip from 2004:
    http://macscripter.net/viewtopic.php?id=9835
    do shell script "/usr/bin/lp '"
    calls up the Unix print command (LP = line printer!)
    This enables me to print .txt, rtf, pdf and jpg files
    Here is the new script:
    on adding folder items to this_folder after receiving these_items
        try
            tell application "Finder"
                repeat with i from 1 to number of items in these_items
                    try
                        set this_item to item i of these_items
                        set the path_string to this_item as string
                        set the final_path to POSIX path of the path_string
                        do shell script "/usr/bin/lp '" & final_path & "'"
                    on error error_message
                    end try
                    delay 30
                    tell application "Finder" to delete this_item
                end repeat
            end tell
        on error error_message
        end try
    end adding folder items to
    Now I just need to find out how to do some minor formatting such as font size and margins...
    Now digging into the CUPS manual:
    http://www.cups.org/doc-1.1/sum.html

  • My 'run with administrative privileges' script no longer works - help

    Hey all. I have an applescript that shuts down the computer that I made a while back. I pulled it out today to use it and it no longer works. Here's part of the code I'm having trouble with:
    do shell script ¬
    "sudo shutdown -h now" password "myadminpassword" with administrator privileges
    On old machines this worked great, I would just put the admin password where myadminpassword is and it would work perfectly. Now though, I run it on my machine and I get the prompt to enter my admin username and password before it will shutdown.
    Now this is going on a remote install so I need it to work. Any ideas? The machine is running snow leopard, but it seems to still work on an old leopard macbook pro.

    Well, for one, do not use sudo in do shell script.
    The whole 'with administrator privileges' part takes care of elevating your privileges. sudo has no place in do shell script.
    Don't know if that's your issue, but it's the first thing I'd fix.
    If that doesn't help, are you running the script as your admin user?
    Nowhere in your script are you defining the username to run the command as, therefore it will attempt to run as the current user who may not be the same as your admin user, nor have the same password. You might need to include the username:
    do shell script "shutdown -h now" user name "admin" password "myadminpassword" with administrator privileges

  • Script no longer works after Upgrade to 10.4.6

    The following script worked fine using 10.4 thru 10.4.5 but no longer works after upgrading to 10.4.6.
    When I highlight a folder and then run the script the highlighted folder is moved to a specific "Achive" folder, depending on whether the highlighted folder has a ".0" or ".1" or etc in its name.
    When I run the script using 10.4.6 I get an error indicating that the highlighted folder already exists in the destination.
    Anyone else having Applescript problems with 10.4.6?
    --Bob
    tell application "Finder"
    activate
    set fname to selection as string
    if fname contains "0." then
    move selection to folder "ARCHIVE" of folder "0JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "1." then
    move selection to folder "ARCHIVE" of folder "1JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "2." then
    move selection to folder "ARCHIVE" of folder "2JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "3." then
    move selection to folder "ARCHIVE" of folder "3JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "4." then
    move selection to folder "ARCHIVE" of folder "4JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "5." then
    move selection to folder "ARCHIVE" of folder "5JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "6." then
    move selection to folder "ARCHIVE" of folder "6JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "7." then
    move selection to folder "ARCHIVE" of folder "7JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "8." then
    move selection to folder "ARCHIVE" of folder "8JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    else
    if fname contains "9." then
    move selection to folder "ARCHIVE" of folder "9JobsArchive" of folder "Archived_Files" of disk "Preflight_Only"
    end if
    end if
    end if
    end if
    end if
    end if
    end if
    end if
    end if
    end if
    end tell

    I, too, immediately started having problems with my scripts immediately after updating to OS 10.4.6. I put my scripts in "Library/Applications/..." so that the scripts associated with particular applications are available in the menu bar. I don't know if that has any bearing on the problem, but for me, it was not any particular script, but just about every one that started going funny.
    First, I noticed that my scripts would typically work right once, but fail in some odd manner the second time I tried to use one. The second thing I noticed was that the modification dates of my scripts were changing to the time that I last executed the scripts, even though I had not altered and recompiled any of them in weeks. Finally, I noticed that the scripts that were failing were ones in which I had used property statements to initialize some of my variables.
    What I think is happening is this: for some strange reason 10.4.6 is recompiling scripts every time they are run, and variables are being initialized, not to the values specified in property statements, but to whatever the variable was the last time the script ended.
    I discovered that I could prevent this from happening by (1) recompiling all my scripts to make sure all the property statements were back in effect, and then (2) setting the permissions of all my scripts to read only. This seems to prevent whatever in 10.4.6 is recompiling the scripts from doing this each time the script is run. At least, the modification dates are no longer changing inexplicably, and all my scripts are running reliably again.
    It's a bit of a pain to have to remember to reset script permissions to read/write whenever I want to make a change, and then change them back to read only before executing, but it seems to be a reliable workaround. I'd appreciate hearing if anyone else can replicate this phenomenon, or tell me if I'm on the right track.
    Jeff Johnson
    Dual 1.2 GHz   Mac OS X (10.4.6)  
    Dual 1.2 GHz    

  • Links to launch Script Editor no longer work

    Links to launch Script Editor no longer work.

    I don't know, I just use a very simple Applescript to enclose the clipboard in tags that allow the user to launch Script Editor from the browser:
    set the clipboard to "<a href=applescript://com.apple.scripteditor?action=new>Click here to launch Script Editor</a>.
    <pre class=COMMAND>" & return & (the clipboard) & return & "</pre>"
    And it wraps the script on the clipboard on PRE tags so the structure is preserved. Neither of those work now.

  • QT DROPLETS NO LONGER WORK 7.2

    The QT script droplets (http://www.apple.com/applescript/quicktime/) that used to work with QT NO longer work in 7.2
    Any suggestions how to SAVE AS UNEDITABLE in 7.2?

    I've updated to QuickTime 7.3 and the script's working now.

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

  • Brand new IPOD Touch Apps no longer work after upgrading software

    I got a Ipod touch for my wife Today at Wal-Mart. I brought it home, connected to wifi and downloaded some apps and also payed for some. They all worked fine. Then I connected to computer to transfer songs. It told me to upgrade the Ipod software so i Did. After it restarted none of the downloaded apps work anymore. I have read MANY MANY MANY discussions on this and there is no fix. I am not wiping out all the songs and reload everything all over again. It will take forever. My wifes BD is Friday and this is making me so mad after I just dropped $300 on this thing. APPLE!!! Where is the fix? I deleted the apps and reinstalled they still don't work. Anybody got this figured out? I am getting ready to get my money back and tell everyone to avoid buying ipod until they get this upgrade bug fixed.
    Message was edited by: 2009 IPOD TOUCH

    I have the same problem. Brand new two days ago. I synched the touch with Itunes but wasn't hooked up to the internet at the time so didn't do the software upgrade right away. Then I downloaded about a dozen apps (free and paid) with wifi directly to the touch. They all worked fine. Then I plugged it back in to Itunes and had it upgrade it to 3.1.2. It locked up Itunes several times since then and the downloaded apps no longer work (they start to open then disappear).
    The problem is, no one is listening to this problem (including Anna above)! Everyone says "just do a hard reboot, or restore to factory settings, reload the apps, etc." I've tried all the standard troubleshooting but none of it fixes this. It sure seems to me this is a problem with 3.1.2 but Apple isn't helping out here. Where are you APPLE? Use some of those outrageous profits you're making to fix the problem you have created. Here's $300 of my hard earned dollars pretty much down the drain.
    Message was edited by: IPatronius

  • Link to A folder View in a PDF Portfolio - feature no longer working - please advise

    Hi, I am no longer able to link to a Folder View of a PDF Portfolio:
    Within a PDF portfolio i need to link from a PDF to a folder view in the Portfolio. I am using Link Action - Go to Page View.
    This used to work for me - very important feature that no longer works. Please advise a workaround.
    Steps:
    1. Start a PDF Portfolio that contains files and folders
    2. Open a PDF in the Portfolio
    3. in the opened PDF click Add or Edit Link
    4. Define a link area and set it to Go To A Page Vies
    5. In the past i have been able to target a Folder View in the Portfolio - ie. direct a user not to a file, but instead to a folder view that contains relevant files. I would do this by setting the Target Page View to my desired folder view
    6. This used to work in bringing a user to the folder view i specify. Now it does nothing. If i go back to the PDF and EDIT the Link i see this. File: Parent Document Page 1. This in fact does nothing.
    Please advise, am i doing this wrong, it used to work. I have tried several workarounds, with no luck.
    thanks!
    Alejandro Collados-Nunez
    Graphic Designer | Art Director
    | e: [email protected]
    | w: www.1lb.ca

    There's an extension or two, or a combination of extensions which seem to be causing that in Firefox 6.0.2. One that has been mentioned is TabMix Plus.
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes
    You need to figure out what is causing it, and disable that extension/s until they are fixed by their developer.

  • System password no longer works after 10.9.4 update

    YOU CAN READ MORE ABOUT IT HERE:
    Re: Issues after Software  OS X 10.9.4 (13E28) upgradeRe: Issues after Software OS X 10.9.4 (13E28) upgrade
    Same problem, here, updated, pw n longer works, HOW TO  FIX? Can’t install anything, any ideas?
    HERE IS MY ENTRSFO, HOPE IT HELPS:
    EtreCheck version: 1.9.12 (48)
    Report generated July 18, 2014 at 11:49:39 AM PDT
    Hardware Information:
      27" iMac (Early 2011)
      iMac - model: iMac12,2
      1 2.7 GHz Intel Core i5 CPU: 4 cores
      16 GB RAM
    Video Information:
      AMD Radeon HD 6770M - VRAM: 512 MB
      iMac 1920 x 1080
    System Software:
      OS X 10.9.4 (13E28) - Uptime: 1 day 11:8:27
    Disk Information:
      ST31000528AS disk2 : (1 TB)
      EFI (disk2s1) <not mounted>: 209.7 MB
      Macintosh HD (disk2s2) / [Startup]: 999.35 GB (59.06 GB free)
      Recovery HD (disk2s3) <not mounted>: 650 MB
      OPTIARC DVD RW AD-5690H
      HGST HUS724020ALE640 disk0 : (2 TB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      disk0s2 (disk0s2) <not mounted>: 2 TB
      Boot OS X (disk0s3) <not mounted>: 134.2 MB
      HGST HUS724020ALE640 disk1 : (2 TB)
      EFI (disk1s1) <not mounted>: 209.7 MB
      disk1s2 (disk1s2) <not mounted>: 2 TB
      Boot OS X (disk1s3) <not mounted>: 134.2 MB
    USB Information:
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Internal Memory Card Reader
    FireWire Information:
      LaCie d2 quadra (button) 400mbit - 800mbit max
      EFI (disk4s1) <not mounted>: 209.7 MB
      Snow Leopard Copy (disk4s2) /Volumes/Snow Leopard Copy: 666.67 GB (18.36 GB free)
      Desktop Download(s) from iMac (disk4s3) /Volumes/Desktop Download(s) from iMac: 666.67 GB (60.95 GB free)
      OS Lion (disk4s4) /Volumes/OS Lion: 332.71 GB (3.91 GB free)
      Recovery HD (disk4s5) <not mounted>: 650 MB
      MBP COPY (disk4s6) /Volumes/MBP COPY: 333.09 GB (164.16 GB free)
      Avid Mbox Pro 400mbit - 400mbit max
    Thunderbolt Information:
      Apple Inc. thunderbolt_bus
      G-Technology G-RAID with Thunderbolt
    Configuration files:
      /etc/hosts - Count: 18
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [loaded] at.obdev.nke.LittleSnitch (4050 - SDK 10.8) Support
      [loaded] com.Cycling74.driver.Soundflower (1.6.6 - SDK 10.6) Support
      [loaded] com.HGST.driver.GDOCKDriver (1.0.3 - SDK 10.7) Support
      [loaded] com.avid.driver.firewire.mboxpro (1.3.0 - SDK 10.7) Support
      [loaded] com.digidesign.iokit.DigiDal (10.0f56 - SDK 10.6) Support
      [not loaded] com.line6.driver.xtaudio (7.3.6 - SDK 10.7) Support
      [not loaded] com.line6.iokit.ClassicNotSeizeVariaxIF (1.0.1) Support
      [not loaded] com.paceap.kext.pacesupport.leopard (5.9 - SDK 10.4) Support
      [not loaded] com.paceap.kext.pacesupport.master (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.panther (5.9 - SDK 10.3) Support
      [loaded] com.paceap.kext.pacesupport.snowleopard (5.9 - SDK 10.6) Support
      [not loaded] com.paceap.kext.pacesupport.tiger (5.9 - SDK 10.4) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      [not loaded] com.wacom.kext.pentablet (5.3.3 - SDK 10.8) Support
      [loaded] com.waves.driver.soundgrid (2.0.0) Support
    Startup Items:
      DigidesignLoader: Path: /Library/StartupItems/DigidesignLoader
    Problem System Launch Daemons:
      [failed] com.apple.wdhelper.plist
    Launch Daemons:
      [running] at.obdev.littlesnitchd.plist Support
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.line6.l6ksettingmgr.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.paceap.eden.licensed.plist Support
      [loaded] com.timesoftware.timemachineeditor.helper.plist Support
      [running] com.waves.daemon.SoundGridProtocolService.plist Support
      [loaded] PACESupport.plist Support
    Launch Agents:
      [running] at.obdev.LittleSnitchUIAgent.plist Support
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.avid.mboxpro.helper.plist Support
      [running] com.canon.MFManager.plist Support
      [loaded] com.divx.dms.agent.plist Support
      [loaded] com.divx.update.agent.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.wacom.pentablet.plist Support
    User Launch Agents:
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [not loaded] com.macpaw.CleanMyMac.trashSizeWatcher.plist Support
      [failed] com.macpaw.CleanMyMac2Helper.diskSpaceWatcher.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [failed] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
    User Login Items:
      iTunesHelper
      SpeechSynthesisServer
      uTorrent
      G-Technology Assistant
    Internet Plug-ins:
      AdobePDFViewerNPAPI: Version: 11.0.07 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Cannot contact Adobe
      EPPEX Plugin: Version: 10.0 Support
      iLokClientHelper: Version: 3.6 - SDK 10.5 Support
      DivX Web Player: Version: 3.1.0.13 - SDK 10.5 Support
      AdobePDFViewer: Version: 11.0.07 - SDK 10.6 Support
      googletalkbrowserplugin: Version: 5.4.2.18903 Support
      RL Secure Plug-In Layer: Version: (null) - SDK 10.5 Support
      MagellanPlugIn: Version: 1.2 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 1.0.0.0 - SDK 10.6 Support
      GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      OVSHelper: Version: 1.1 Support
      Default Browser: Version: 537 - SDK 10.9
      Flip4Mac WMV Plugin: Version: 3.0.0.126   - SDK 10.8 Support
      o1dbrowserplugin: Version: 5.4.2.18903 Support
      WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 Support
      JavaAppletPlugin: Version: Java 7 Update 60 Check version
      WacomNetscape: Version: 2.1.0-1 - SDK 10.8 Support
    Safari Extensions:
      Conduit Search for Safari: Version: 1.0
      Searchme: Version: 1.3
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
      ConduitNPAPIPlugin: Version: 1.0 - SDK 10.6 Support
      UploadManager: Version: (null) - SDK 10.5 Support
      Google Earth Web Plug-in: Version: 7.1 Support
      ContentManager: Version: (null) - SDK 10.5 Support
      RocketEngine: Version: (null) - SDK 10.5 Support
    3rd Party Preference Panes:
      Flash Player  Support
      Flip4Mac WMV  Support
      Java  Support
      Line6AudioMIDI  Support
      Mbox Pro  Support
      YAMAHA-USBMIDIPatch  Support
    Time Machine:
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 930.71 GB Disk used: 875.71 GB
      Destinations:
      TIME MACHINE [Local] (Last used)
      Total size: 1
      Total number of backups: 3
      Oldest backup: 2013-10-21 19:02:42 +0000
      Last backup: 2014-03-19 11:19:09 +0000
      Size of backup disk: Too small
      Backup size 1  < (Disk used 875.71 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          2% SGProtocolService
          1% DashboardClient
          1% WindowServer
          1% fontd
          0% Safari
    Top Processes by Memory:
      999 MB com.apple.SpeechRecognitionCore.speechrecognitiond
      459 MB DaisyDisk
      360 MB mds_stores
      180 MB Safari
      164 MB Mail
    Virtual Memory Information:
      8.79 GB Free RAM
      4.12 GB Active RAM
      1.46 GB Inactive RAM
      1.62 GB Wired RAM
      1.76 GB Page-ins
      9 MB Page-outs
    Like Show 0 Likes(0)

    Me again, THANKS FOR HE TALENS well it kind of worked, but I had one chance and have not seen it since but all the root, or iCloud, basically all keychains might have been rest to defaults, but if I try a password, it hakes and says incorrect, the apple id worked though?!?
    NIGHTMARE AND NEED THI FOR WORK, last backup (from apples time machine, not sure how old.
    Your or anyones HELP! is greatly appreciated!

  • IPod Apps no longer work, Music disappears, Fix?

    QUESTION : How to fix permanently the “iPod Touch Breakdown“?
    (seems identical to the iPhone “Breakdown“)
    Since I upgraded to 2.0.2, running iTunes 7.7.1 (11) on a MacBook Pro G4, I keep having big trouble with Apps, Music and Films.
    Here is what I call the “iPod Touch Breakdown“:
    - Apps won’t start : the iPod would go back to the home screen after a few seconds.
    - Music and Films disappear (My music consists essentially of personnal CDs).
    - (for me Photos are still there)
    - all original Apple Apps work OK
    This is a known problem, also occuring on the iPhone with many posts on the iPhone discussions forum (see “iPhone“/“Installing and Using iPhone Applications“/“iPhone Applications no longer work“. At the time I write this messge, this question has been viewed 16,080 times ( ) (*) and there have been 319 replies: probably a sad record for a single question, which means that THERE REALLY IS A BASIC PROBLEM.
    My iPod is a 8Gb purchased while staying in Pasadena, almost a year ago. I was extremely happy to use it more and more like a PDA (updates 2.0.1 and 2.0.2).
    There have been some fixes proposed on the discussions forum (iPhone) that I tried and I have tried myself a couple more. NONE of them could fix the problem permanently: all fixes have been working for a day or two, no more. Untill you download an App (even an update) and you get the “Breakdown“ again.
    As other users, I have noted a slowdown in anything I am doing (e.g. typing text) just before the Apps stop working and the music disappears. (see for instance Truth42 on iPhone Forum (Applications no longer work), Posted: Aug 25, 2008 10:57 AM)
    Fixes: typically you get to disinstall and then reinstall all your Apps. Each time, you lose all your Apps parameters (bad for data bases and notes).
    Two ways:
    see iPhone forum: Aveonz Posted: Aug 24, 2008 3:16 AM :
    1- sync using iTunes
    2- in iTunes/Store: deauthorize your account
    3- sync
    4- authorize
    5- sync (will re-load your Apps)
    6- sync (to backup you new configuation)
    (the whole process may take several hours; I have also done a reboot between 3 and 4)
    (ii) proposed by various people :
    1- deselect all applications
    2- sync
    3- disconnect your iPod and reboot it (pressing both buttons simultaneously for several seconds – see Apple site) (you keep you parameters, WiFi, etc)
    4- select the Apps you want back
    5- sync (will re-load your Apps)
    6- sync (to backup you new configuation)
    In the end you can use the Apps you have reloaded, but just for a few days (or hours)… until you cannot resist downloading a new App, or simply just download an App update. It won’t breakdown instantly after you do that, but it will very soon.
    I certainly would take any procedure to fix this definitely. However, the best choice is probably to use as few third party Apps as possible (none is better) and wait for 2.1. Hopefully Apple is working on this, and we’ll get a definite fix very soon. This actually makes a very bad press for the iPod Touch and iPhone.
    Sadly,
    because I think iPod Touch and iPhone are beautiful machines –but for how long? Competition is tough…
    Cheers
    (*) about this number 16,080, obviously not all of the viewers experienced the “Breakdown“, but most were just curious to know. Still, the good question is to know how many of us, using the iPhone and iPod Touch experience this bug (virus?) and why some have it and not others (and in which proportion?).

    Same issue here since updating to 2.0.2; Is there a way to back I wonder?
    So I plugged back in my iPod touch and,...
    0. make a note of all your music, movies, photos, apps selections to restore
    1. cancel connect attempt to iTunes store (little 'x' in iTunes toolbar)
    2. cancel attempts to sync or backup (little 'x' in iTunes toolbar)
    3. clicked <OPTION>[Restore] once selecting my iPod touch device
    4. navigate to <home>/Library/iTunes/iPod Software Udpates/
    5. pick the prior update: iPod1,12.0.1_5B108Restore
    6. then waited through iPod window status displays
    'Preparing iPod software for restore...'
    'Restoring iPod software...'
    'Verifying iPod Software...'
    7. OK the 'Your iPod has been restored to factory settings,...'
    8. Ssync process did NOT automatically being so I unplugged & plugged it
    (I did verify that 2.0.1 was loaded seeing the App Store)
    9. Pick 'Set up as a new iPod'; don't pick an earlier backup point
    (mostly 'cause I couldn't be sure which was a good failsafe).
    10. iTunes then begin setup of my [ahem] new iPod.
    STOP IT; it'll try and do restore everything. Then navigate the tabs for
    your iPod and re-select those things you want (music,photos,movies,apps,etc)
    So like any computer you need to keep proper backups.
    The apple s/w system updater appears to do just that automatically, thanks! Of course it would've been nice to have had the 2.0.2 version tested a bit more before its release.
    IMHO the host (mac) should have kept my prefs for the iPod rather than my resorting to handwritten notes but at least I'm back to normal. Consider when replacing an iPod how you'd want the replacement to be a mirror of its predecessor.
    Oh, skip future requests to update to 2.0.2 until Apple can get his sorted out.
    HTH
    /los "I was a teenage net-random"

  • TS3771 My iTunes U no longer works since the update, an error message pops up saying that "This movie requires QuickTime, which is not supported by this version of iTunes." I followed the tutorial that suggests to change to from 64 to 32 bit and it didn't

    iTunes U video files no longer work on my computer since i update to Mavericks. The following message appears on the screen "This movie requires QuickTime, which is not supported by this version of iTunes." I followed a tutorial that suggested to go to Applications/iTunes/Get Info and change to 32 bit. Now my iTunes does not open at all, it says it requires 64 bit. I am a bit confused and disappointed. What should I do to get it fixed? Buy a new MacBook?

    Marcello, I am having the same problem.  When following the advice of many in the community to start iTunes in 32-bit mode, I get the following error after I have done so:
    I am running 10.9.2 on a mac mini. 
    I am hoping this will be fixed or at least a solid answer could be given that iTunes will no longer support certain types of media going foward.

  • Itunes no longer works on ipad on version 6 software

    My I tunes 10.6.1 no longer works with my upgraded software ipad 2 on version 6 stating my mac needs a higher operating system (currently on 10.5.8) to then upgrade I tunes 10.7. I can no longer use my ipad with itunes simply because I have an older mac operating system. An upgrade on the mac operating system is a lot of money . There is no roll back of ipad software from 6 to the original to cure this

    The upgrade to the Mac is around $30.00 if it is still available. You need to upgrade to Snow Leopard 10.6.8 - I think that's the latest SL version.
    I copied this from another discussion.
    Apple said that customers can still purchase a copy of Snow Leopard or Lion from its online store's telesales agents: 1-800-MY-APPLE (1-800-692-7753) or Customer Service and Sales Support at 1-800-676-2775. For Lion you'll get a redemptions code via e-mail and need to DL from the Mac Apple Store (requires SL 10.6.6+).
    Here is the discussion.
    https://discussions.apple.com/thread/4140356?start=15&tstart=0

  • Itunes no longer works after latest update

    I updated the latest version of iTunes. Now, it no longer works. Then my computer told me to update the latest version, so tried again, but again it didn' work. So in uninstalled iTunes and tried to install it again. It didn't work. I even tried with an older update after I had deleted the latest one and it didn't work. Now my computer tells me that some file or stuff was missing.
    Thanks for any help!

    ...now my computer updated it again. It opened, tried to collect information about the copyright, the an error message popped up saying that iTunes does not work correctly due to any mistake...
    Please help me!

  • ITunes no longer works on my Windows VISTA system.  Get error msg saying C runtime library incorrectly... Error 7, Windows error 1114..

    iTunes no longer works on my Windows VISTA system.  Get error msg saying an application is attempting to access C runtime library incorrectly... Error 7, Windows error 1114.  Same msg, or one that says unable to install, when trying to update or reinstall iTunes.  iTunes worked well up until about a month ago when this error msg starting appearing.

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

Maybe you are looking for

  • Navigator/Portfolio SDK

    I am wanting to create a custom layout for a PDF portfolio, which is turning out much more difficult than I'd hope. I'm running CS6 on Mountain Lion OSX and the Navigator Project wizard option is unavailable. I'm unsure where exactly i'm supposed to

  • PO wise Credit Debit Values

    Dear All I need to develop PO wise costing report. for that i need to divide charges (VAT, NBT,PAL....) as Cridit and Debit. These values picked from KONV table. From table how to identify credt and debit rgds pramod Moderator message : Spec dumping

  • Need help setting up email on 10g

    Okay, so I've run the utlmail.sql and the prvtmail.plb and it successfully completed. From what I understand I now need to do something like alter system set smtp_out_server = '<ip-address:port' scope=Both; My question is, how do I know what to put f

  • Trigger showing as invalid

    hey guys, trying to create a trigger which should insert values into a table when another table gets updated, as well as trigger of a sequence of increasing an ID column by 1. my trigger however shows as invalid and aqua data studio shows following e

  • How do I change constraint length

    Good time of the day everyone. I have to change the maximum length of the constraint in my Oracle database. I really have to. Can someone please tell me how to do it? If it is possible at all, of course. I have read a lot of forum posts on the Intern