Script no longer working with QT 7.2

Hi,
I had a script that used QuickTime to save self-contained movies. With QT 7.1.6 it worked fine, but apparently after installing QT 7.2, I get a "NSInternalScriptError" when the script reaches the point where it tries save the self-contained movie. Does anyone know what causes this error, and what I could do to fix it? Is it a problem with my code or is it a QuickTime bug? Thanks.
Leor

I think it's a bug in 7.2 because I'm having the same problem. The save function seems to be broken now!

Similar Messages

  • Script no longer working with OS 10.5

    Since I have upgraded to 10.5 a few weeks ago the following script no longer is working properly. I had been using this script extensively over the last two without any problems. Now it seems to hang up when it gets to the
    "duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing"
    Sometimes it eventually copies the file but usually it times out because it takes so long. Have the commands or the way you refer to a server volume changed from 10.4 to 10.5. P&M2 is a server volume. As I said before this script worked fine with 10.4--it only took a matter of seconds to copy a file to my server. I realize that the problem could lie with my server connection but I don't think so.
    Any suggestions??? The script is attached below.
    Thanks.
    Pedro
    global photoList, theFolder, theDate, theSchool, theCats, theEvent, theKeywords, theID, theFileName
    on run
    tell application "Finder"
    set theFolder to ¬
    (choose folder with prompt "Where are my photos?")
    set photoList to (every file of the theFolder whose name ends with ".jpg")
    set cr2List to (every file of the theFolder whose name ends with ".cr2")
    set crwList to (every file of the theFolder whose name ends with ".crw")
    set nefList to (every file of the theFolder whose name ends with ".nef")
    set tifList to (every file of the theFolder whose name ends with ".tif")
    set xmpList to (every file of the theFolder whose name ends with ".xmp")
    set dngList to (every file of the theFolder whose name ends with ".dng")
    end tell
    archiveFiles(photoList)
    end run
    on open theFolder
    tell application "Finder"
    set the photoList to every file of (item 1 of theFolder whose name ends with ".jpg")
    set cr2List to (every file of the theFolder whose name ends with ".cr2")
    set crwList to (every file of the theFolder whose name ends with ".crw")
    set nefList to (every file of the theFolder whose name ends with ".nef")
    set tifList to (every file of the theFolder whose name ends with ".tif")
    set xmpList to (every file of the theFolder whose name ends with ".xmp")
    set dngList to (every file of the theFolder whose name ends with ".dng")
    end tell
    archiveFiles(photoList)
    end open
    to archiveFiles(thePhotos)
    try
    tell application "iMagine Photo"
    close every importer
    quit
    end tell
    on error
    end try
    set Archived to the (count of thePhotos) as integer
    repeat with i from 1 to count of photoList
    --return photoList
    set thisFile to item i of photoList as alias
    set theFileName to the name of item i of photoList
    with timeout of 3000 seconds
    tell application "Finder"
    duplicate item i of photoList to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    try
    mount volume "afp://username:[email protected]/P&M2"
    on error theMsg
    display dialog theMsg
    return
    end try
    try
    duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing --SCRIPT HANGS UP HERE!
    on error
    mount volume "afp://username:[email protected]/P&M2"
    duplicate item i of photoList to "P&M2:CPA JPEG Archive Files:" with replacing
    end try
    try
    duplicate item i of photoList to "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA JPEG Archive Files:" with replacing
    on error
    mount volume "afp://username:[email protected]/Photo [Archive]"
    duplicate item i of photoList to "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA JPEG Archive Files:" with replacing
    end try
    end tell
    end timeout
    set importPhoto to name of item i of photoList
    set fileRef to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" & importPhoto as alias
    set fileRef2 to "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:"
    tell application "iMagine Photo"
    activate
    try
    set thisImporter to import graphic fileRef
    set exifInfo to the exif data of thisImporter
    close thisImporter
    exifInfo
    set fileInfo to the exif unicode of item 1 of exifInfo --something like that
    set thePhotog to the exif unicode of item 6 of exifInfo
    set myTID to AppleScript's text item delimiters
    set AppleScript's text item delimiters to ";"
    set schoolInfo to 1st text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theSchool to 2nd text item of schoolInfo --school of the file
    set AppleScript's text item delimiters to ";"
    set catInfo to 2nd text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theCats to 2nd text item of catInfo --catagories of file
    set AppleScript's text item delimiters to ";"
    set theEvent to 3rd text item of fileInfo
    set AppleScript's text item delimiters to ":" & space
    set theEvent to 2nd text item of theEvent
    set AppleScript's text item delimiters to ";"
    set theKeywords to 4th text item of fileInfo
    try
    set AppleScript's text item delimiters to ":" & space
    set theKeywords to 2nd text item of theKeywords
    on error
    set AppleScript's text item delimiters to ":"
    set theKeywords to 2nd text item of theKeywords
    end try
    set AppleScript's text item delimiters to ";"
    set theID to 5th text item of fileInfo
    try
    set AppleScript's text item delimiters to ":" & space
    set theID to 2nd text item of theID
    on error
    set AppleScript's text item delimiters to ":"
    set theID to 2nd text item of theID
    end try
    on error
    if thePhotog is "Sari Goodfriend" then
    set theKeywords to ""
    set theID to ""
    else
    tell application "Finder"
    activate
    display dialog "There appears to be a problem with the archiving information for file" & space & ¬
    theFileName --("OK", "cancel") default button "OK"
    return
    end tell
    end if
    end try
    set AppleScript's text item delimiters to myTID
    tell application "Expression Media"
    open file "Photo Server Data:Photo [Data]:5 PHOTO ARCHIVE:Expression Media catalogs:YU CPA Catalog.ivc"
    tell front catalog
    activate
    tell application "Finder"
    set theNameofFileRef to the name of fileRef
    end tell
    try
    import fileRef
    on error number theNumber
    set theErrNum to theNumber
    if the theErrNum is not -48 then
    display dialog "There appears to be a problem with file" & space & theNameofFileRef & "."
    return
    end if
    --display dialog theErrNum
    end try
    count media items
    set currentMediaItem to result
    set the people of media item currentMediaItem to theID
    set the headline of media item currentMediaItem to ""
    set thePhotographer to author of media item currentMediaItem
    set the keywords of media item currentMediaItem to theKeywords --& "," & space & addKeywords
    set the categories of media item currentMediaItem to theSchool & "," & space & theCats
    set the event of media item currentMediaItem to theEvent
    set the copyright of media item currentMediaItem to "Yeshiva University"
    set theDate to creation date of media item currentMediaItem
    set event date of media item currentMediaItem to theDate
    set the caption of media item currentMediaItem to "ID:" & space & theID & return & "School/Category:" & space & theSchool & "," & space & theCats & return & "Event:" & space & theEvent & return & "Keywords:" & space & theKeywords & return & "Date:" & space & theDate & return & "Photographer:" & space & thePhotographer as text
    end tell
    end tell
    end tell
    end repeat
    tell application "Expression Media"
    save front catalog
    end tell
    tell application "Finder"
    --open file "P&M2:YU CPA Server Catalog.ivc"
    repeat with i from 1 to count of photoList
    end repeat
    end tell
    tell application "Finder"
    duplicate (every file of theFolder whose name ends with ".xmp") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".xmp") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    duplicate (every file of theFolder whose name ends with ".CR2") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".CR2") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA JPEG Archive Files:" with replacing
    duplicate (every file of theFolder whose name ends with ".dng") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".dng") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".CRW") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".CRW") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".NEF") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".NEF") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    duplicate (every file of theFolder whose name ends with ".TIF") to folder "Photo Server Volumes:Photo [Archive]:CPA Photo Archive:CPA Photo Archive FILES:CPA HiRes Archive FILES:" with replacing
    move (every file of theFolder whose name ends with ".TIF") to folder "Photo Server Data:Photo [Data]:CPA Photo Archive:Archive Files:CPA HiRes Archive FILES:" with replacing
    end tell
    tell application "iMagine Photo"
    close every importer
    quit
    end tell
    beep 3
    activate "Finder"
    set dd to display dialog "The number of files cataloged was:" & space & Archived buttons ¬
    {"OK", "cancel"} default button ¬
    "OK" giving up after 10
    end archiveFiles

    It may be but I have not been able to figure it out.
    Thanks.
    Pedro

  • Dropbox automator script no longer working with Mavericks

    Hi,
    I use two versions of the following shell script (found on the net), launched by automator, to set up two Dropbox accounts :
    Since upgrading to Mavericks, the script hangs when execution is requested. If the execution is then stopped and then requested a second time, the script terminates normally. Anyone have any idea why this might be (I am no expert of either shell scripts or automator) ?

    ok then do this. Once you have your first Dropbox account set up try the following steps:
    1. Create a folder named "Dropbox-second" anywhere you like.
    2. Open terminal, write "bash" and press enter.
    3. paste the line below and press enter. (Dont close the terminal window)
    HOME=$HOME/Dropbox-second /Applications/Dropbox.app/Contents/MacOS/Dropbox &
    4. A second dropbox instance will open requiring you to sign in. Go ahead sign-in and then click advanced and point to the "Dropbox-second" folder you created.
    5. Close the terminal window and close the second instance of the dropbox from the topbar. (Click on the icon -> Click on the gear -> Quit Dropbox)
    6. Now open AppleScript Editor and paste the following
    do shell script "HOME=$HOME/Dropbox-second /Applications/Dropbox.app/Contents/MacOS/Dropbox > /dev/null 2>&1 &"
    7. Click run and you will see the second icon of Dropbox in the topbar appear again.
    8. Click stop and then from file save this as an application anywhere you like. Give a name like "DBMore" or anything you like.
    9.Now to make sure everytime you login to your account the second dropbox starts, go to system preferences->users & groups-> select the current user-> click login items on the right->click the + sign to add "DBMore" application you created.
    That's it you're done.
    10. If you want to be able to differentiate between the two dropbox accounts click on the second dropbox icon in the topbar -> click the gear -> click preferences -> general -> use black and white menu bar icons.
    Enjoy! Hope this really helps

  • Signon.useDOMFormHasPassword no longer working with FF 30

    Seems that the "signon.useDOMFormHasPassword" workaround (latest working version is FF 29.0.1) to automatically populate username/password fields protected by "autocomplete=off" no longer works with FF 30.
    Now with FF 30 I always have to double click each of those "protected" username input field to select the only one entry to automatically populate the corresponding password input field. This is pretty annoying as there is only ONE username to select (which should be auto filled). Why did you disable the above workaround? Is there an other way to re-enable username/password autofill for autocomplete=off protected input fields?
    I already tried the following parameters, but nothing changed:
    signon.autofillForms;true
    signon.overrideAutocomplete;true

    I came across this bug already and it describes exactly my issue. Previous to FF 30 the combination of the greasmonkey script AND the signon.useDOMFormHasPassword pref enabled the autofill of password fields. Now that the signon.useDOMFormHasPassword pref is gone in FF 30 this no longer works. I don't think it can be solved by updating the greasmonkey script, the bug explains the reason why:
    I'v tried moving the GreaseMonkey script to run as early as I can using "@run-at document-start" and a DOMContentLoaded eventListener on the document but it still runs too late, by the time it runs the new Password Manager has already seen the page content.
    So it seems that the workaround was removed in FF 30 without providing a fix for the issue. Again my problem is not about saving passwords on autocomplete=off fields (this is working fine) but on loading them back into this fields without the need to double click the username field and select the single entry.

  • Simple script no longer works in PS3

    The following script no longer works in Photoshop 3. I now get the error message "Adobe Photoshop CS3 got an error. Can't make some data into the expected type."
    What does this mean and how can I fix it??
    Thanks.
    Peter
    set inputFolder to choose folder
    tell application "Finder"
    set filesList to (every file of inputFolder whose name ends with ".jpg")
    set outputFolder to folder (choose folder with prompt "Which folder do you want to save the new photo in?")
    end tell
    tell application "Adobe Photoshop CS3"
    set display dialogs to never
    close every document saving no
    end tell
    repeat with aFile in filesList
    set fileIndex to 0
    tell application "Finder"
    set theFile to aFile as alias
    set thefileName to name of theFile
    end tell
    tell application "Adobe Photoshop CS3"
    open theFile
    set fileName to "FCP" & name of current document
    set docRef to the current document
    set docName to name of docRef
    set docBaseName to (docName) of me
    set docRef to the current document
    set bits per channel of docRef to eight
    set docHeight to height of docRef
    set docWidth to width of docRef
    -- Convert the document to a document mode that supports saving as jpeg
    if (mode of docRef is not RGB) then
    change mode docRef to RGB
    end if
    do action "Resize JPGs" from "FCP.atn"
    set docHeight2 to height of current document
    select all of current document
    set docHeight2 to height of current document
    set docWidth2 to width of current document
    set infoRef to get info of docRef
    select all of current document
    activate "Adobe Photoshop CS3"
    copy
    close docRef saving no
    make new document with properties {width:docWidth2, height:docHeight2, resolution:300}
    paste
    set docRef to current document
    set fileIndex to fileIndex + 1
    set newFileName to (outputFolder as string) & "FCP" & docBaseName
    set myOptions to {class:JPEG save options}
    save docRef in file newFileName as JPEG with options myOptions appending lowercase extension with copying
    close current document without saving
    end tell
    end repeat

    What I'm trying to do is change the resolution of a jpg file to 300 dpi and then change the the jpg pixel dimensions to a width of 1000 pixels--constraining the proportions and letting the height dimension fall wherever. That's what the "Resize JPG's" action does. I then want to save the jpg to a new file called 'FCPoriginalfilename'.
    The script gets hung up on "save docRef in file newFileName as JPEG with options myOptions appending lowercase extension with copying". I get the error message that "Photoshop CS3 can't make some data into the expected type"
    I modified the script from a previous script that I wrote to convert raw files to TIFs which I have attached--it works fine.
    Thanks.
    Peter
    --set tempFolderName
    set inputFolder to choose folder
    tell application "Finder"
    set filesList to (every file of inputFolder whose name ends with ".CR2")
    (*if (not (exists folder ((inputFolder as string) & tempFolderName))) then
    set outputFolder to make new folder at inputFolder with properties {name:tempFolderName}
    else*)
    set outputFolder to folder (choose folder with prompt "Which folder do you want to save the new photo in?")
    --((inputFolder as string) & tempFolderName)
    --end if
    end tell
    tell application "Adobe Photoshop CS3"
    set display dialogs to never
    close every document saving no
    end tell
    repeat with aFile in filesList
    set fileIndex to 0
    tell application "Finder"
    -- The step below is important because the 'aFile' reference as returned by
    -- Finder associates the file with Finder and not Photoshop. By converting
    -- the reference below 'as alias', the reference used by 'open' will be
    -- correctly handled by Photoshop rather than Finder.
    set theFile to aFile as alias
    set thefileName to name of theFile
    end tell
    tell application "Adobe Photoshop CS3"
    --set myOptions2 to {class:raw format open options, bits per channel:16, byte order:Mac OS}
    open theFile as Camera RAW with options ¬
    {class:Camera RAW open options, bits per channel:sixteen}
    set docRef to the current document
    set docHeight to height of docRef
    set docWidth to width of docRef
    -- Convert the document to a document mode that supports saving as jpeg
    if (mode of docRef is not RGB) then
    change mode docRef to RGB
    end if
    (*if (bits per channel of docRef is sixteen) then
    set bits per channel of docRef to eight
    end if*)
    -- The copy is simply saved with additional document info added
    set infoRef to get info of docRef
    --set copyright notice of infoRef to "copyright 2004 trofanna"
    set docName to name of docRef
    set docBaseName to (docName) of me
    set fileIndex to fileIndex + 1
    set newFileName to (outputFolder as string) & docBaseName
    set newPhotoName to newFileName & ".tif"
    set myOptions to {class:TIFF save options, byte order:Mac OS}
    save docRef in file newFileName as TIFF with options myOptions appending lowercase extension with copying
    -- The original document is closed without saving so it remains as it was
    -- when opened for batch processing
    close current document without saving
    end tell
    end repeat

  • Function keys no longer working with a new keyboard...

    I got a new keyboard and my function keys no longer work with it.  I am used to have them used in the standard format, i.e. F10-F12 control the voume, etc.  I have the "Use all f1,f2, etc." button clicked.  I have also tried restarting my computer.  Any thoughts?

    Try doing a SMC reset and PRAM reset.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • Hello, I've updated the iPhone I have got I have a problem I hope you respond to some of the applications no longer work, such as the safari and skype and many applications are no longer working with the ios7.0.4

    Hello, I've updated the iPhone I have got I have a problem I hope you respond to some of the applications no longer work, such as the safari and skype and many applications are no longer working with the ios7.0.4

    Standard troubleshooting...
    1. Try a Restart by pressing the sleep/lock button until you see the slider.  Slide to power off.  Restart by pressing the sleep/lock button until you see the Apple logo.
    2. Try a Reset by pressing the home and sleep buttons until you see the Apple logo. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    3. Remove apps from Recently Used (multi-tasking) list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Swipe up on the app preview card to remove it from the list
    - Press the home button when done.
    4. If still a problem restore with your backup.
    5. If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    6. If still a problem, it's likely a hardware issue.

  • Bluetooth No Longer Working With Headset

    I have a Motorola bluetooth headset that I've used with my ibook before without a hitch, but when I screwed up OS X and reinstalled it (note: reinstalled the operating system, but didn't format) it no longer works with the headset. I can connect to it just fine, but if I try to use it for anything such as switch my audio output to the headset, the program will freeze - same applies to using the headset for input. The headset isn't broken as it works fine with my phone, but my ibook won't cooperate and they are paired correctly. Is their someway to reinstall the bluetooth drivers or something to that extent? Thanks

    jrnet154 wrote:
    Hi - I'm a student with disabilities and rely heavily on accessibility features that make my life easier. For example, I use a Bluetooth headset to trying answer phone calls and use Siri… I especially use the "Raise to speak" option for accessing Siri
    If you have a headset, why use Raise to speak? Kinda defeats the purpose of the headset.
    Press and hold the button on your headest to call up Siri.

  • Firefox no longer working with Mac OSX 10.4.11

    i'm using Mac OSX 10.4.11 and Firefox 3.6.12. As i understand it any of ur upgrades no longer work with this computer system. ( I tried to upgrade last week and ur site said upgrades no available gfor my platform version. Last week every time i conducted a search (default Google) i was redirected to http://search.creativecommons.org/?q=crossword+puzzles&sourceid=Mozilla-search.what gives? Have I been hijacked? also sites that I use daily are clipped and entire pages are smaller than usual . see www.shockwave.com
    If u are no longer supporting Mac users, please let us know in advance or at least post it on ur site. Can no longer use Firefox...

    When you have a problem with one particular site, a good "first thing to try" is clearing your Firefox cache and deleting your saved cookies for the site.
    (1) Bypass Firefox's Cache
    Use Cmd+Shift+r to reload the page fresh from the server.
    (You also can clear Firefox's cache completely using:
    Firefox > Preferences > Advanced
    On the Network mini-tab > Cached Web Content : "Clear Now")
    (2) Remove the site's cookies (save any pending work first). While viewing a page on the site:
    Tools > Page Info > Security > "View Cookies"
    Then try reloading the page. Does that help?
    If you open about:crashes, you should get links to online crash reports. You could post some of the crash IDs for review by volunteers here.
    Given the timing, another issue might be some ads or media in the page. There are some add-ons to block such things...

  • HT204416 My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    My Safari is no longer working with many sites.  However Chrome and Firefox work fine.  I would like to re-install Safari in an effort to clear up the problem I can not resolve.

    1. From the Safari menu bar, select
              Safari ▹ Preferences... ▹ Extensions
    Turn all extensions OFF and test. If the problem is resolved, turn extensions back ON and then disable them one or a few at a time until you find the culprit.
    2. Select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data...
    and confirm. Test.
    3. If the above steps don't resolve the problem, please describe it in more detail.

  • Facebook and Slacker no longer working with Firefox. Still work with Explorer. Until a week ago problem did not exist.

    I am for about one week not able to input information on Facebook. Also the Facebook page appears in a huge font. Regarding Slacker I do not see any available online radio stations. Until about a week ago everything worked fine. At present I can work with Internet Explorer, but at present can no longer work with Firefox.
    == URL of affected sites ==
    http://www.facebook.com; http //www.slacker.com
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; .NET4.0C)

    Haven't tried facebook... But Slacker doesn't work for me either. Running 4.0b7pre on Ubuntu...
    Going to google it at some point, but slacker.com returns:
    VelocityViewServlet : Error processing the template
    Invocation of method 'init' in class com.rockit.webplayer.beans.BrowserDetect threw exception class java.lang.NumberFormatException : For input string: ""
    java.lang.NumberFormatException: For input string: ""
    at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
    at java.lang.Integer.parseInt(Integer.java:468)
    at java.lang.Integer.parseInt(Integer.java:497)
    at com.rockit.webplayer.beans.browser.DetectFirefox.detect(Unknown Source)
    at com.rockit.webplayer.beans.BrowserDetect.doInit(Unknown Source)
    at com.rockit.webplayer.beans.BrowserDetect.init(Unknown Source)
    at sun.reflect.GeneratedMethodAccessor49.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.velocity.util.introspection.UberspectImpl$VelMethodImpl.invoke(UberspectImpl.java:267)
    at org.apache.velocity.runtime.parser.node.ASTMethod.execute(ASTMethod.java:197)
    at org.apache.velocity.runtime.parser.node.ASTReference.execute(ASTReference.java:175)
    at org.apache.velocity.runtime.parser.node.ASTReference.render(ASTReference.java:220)
    at org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:230)
    at org.apache.velocity.runtime.directive.Parse.render(Parse.java:181)
    at org.apache.velocity.runtime.parser.node.ASTDirective.render(ASTDirective.java:114)
    at org.apache.velocity.runtime.parser.node.SimpleNode.render(SimpleNode.java:230)
    at org.apache.velocity.Template.merge(Template.java:256)
    at org.apache.velocity.tools.view.servlet.VelocityViewServlet.performMerge(Unknown Source)
    at org.apache.velocity.tools.view.servlet.VelocityViewServlet.mergeTemplate(Unknown Source)
    at org.apache.velocity.tools.view.servlet.VelocityViewServlet.doRequest(Unknown Source)
    at org.apache.velocity.tools.view.servlet.VelocityViewServlet.doGet(Unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at com.rockit.util.servlet.StatsServletFilterAction.doFilter(Unknown Source)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)

  • I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    I used to have an application in my iPhone 4 and 4s that captures business card and creates its content to my contacts. Its no longer working with my i5. Can you recommend me a new apps for this same function

    Try CardMunch it works well for me

  • Why does my ipod no longer work with my alpine car stereo

    my ipod connects directly to my alpine car stereo and up til now it has worked great. i recently synced my ipod to my computer and i think it updated the software on my ipod and now my ipod no longer works with my alpine stereo. what is up? did apple change something that would make my ipod no longer compatible with my car stereo? if so, what do i do? i have about $1000 invested in my car stereo and ipod specifically for car use. this is a serious issue for me! i just want my ipod to work like it did…
    i just connected my friends ipod and it works fine. he has version 1.1.1 software on his. i have version 2.3 on mine. since my ipod works fine by itself i’m assuming that the incompatibility between my ipod and my alpine is due to the software update.
    here again, what do i do? how can i get an older version of software back on to my ipod?
    ipod v.2.3   Mac OS X (10.4.9)  

    what kind of connection do you have? do you use the ipod 30 pin cable that connects directly to the head unit? it so, maybe you could get help on the alpine site, or a similar site?it could just be a bad connection. you may just have to go oldschool and use rca cables and plug those in...

  • Ipod out no longer works with iOS 6.1

    As the title suggests, after updating my iPhone 5 to iOS 6.1 the iPod out function no longer works with connected devices. With the previous version, I could hook up my Kenwood car stereo using the lightning to 30 pin adapter and the stereo would "Read" my iPhone and begin playing the first track of my music collection. I also had song, artist and playlist search support.
    Now, all I get is a constant "Reading" indicator and can't get past this point.
    Is anyone else having any experiences similar to this and does anyone have any suggestions to fix it?
    Thanks

    Try this.
    Go to Settings>General>Date and Time>Set Automatically>Off.
    Set the date one year ahead. Try to get email.
    If you get an error message, go back to the settings. Correct the date and time (set automatically) then go back and try to get email again.

  • My iPad Mini with retina display suddenly will not connect to the Internet. It shows full wifi bars, yet no web pages will load. My Internet is working with all other apple devices in my house. The iPad also no longer works with celluar data.

    My iPad Mini with retina display suddenly will not connect to the Internet. It shows full wifi bars, yet no web pages will load. My Internet is working with all other apple devices in my house. The iPad also no longer works with celluar data. I'm not sure what has happened. It was working fine a few hours ago. I have tried resetting it, ive restarted my browser etc. I tried to erase all data from my Ipad but I can't do that because it needs to sign into my Apple ID and use the Internet!

    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are drooping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Fix WiFi Issue for iOS 7
    http://ipadnerds.com/fix-wifi-issue-ios-7/
    iOS 6 Wifi Problems/Fixes
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    iPad: Issues connecting to Wi-Fi networks
    http://support.apple.com/kb/ts3304
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h Mt
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    10 Ways to Boost Your Wireless Signal
    http://www.pcmag.com/article2/0,2817,2372811,00.asp
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Some Wi-Fi losses may stem from a problematic interaction between Wi-Fi and cellular data connections. Numerous users have found that turning off Cellular Data in Settings gets their Wi-Fi working again.
    You may have many apps open which can possibly cause the slowdown and possibly the loss of wifi. In iOS 4-6 double tap your Home button & at the bottom of the screen you will see the icons of all open apps. Close those you are not using by pressing on an icon until all icons wiggle - then tap the minus sign. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

Maybe you are looking for