Have you already experienced script problem due to Vista updates ?

Hi,
I wrote a script for a customer. He used a CS3 on Windows XP.
The script worked fine.
He has now switched for a Windows Vista and now the script seems to not be fully functional anymore.
The problem seems to come from a simple doc.print(...) command. The preset is defined by the user (dialog with a dropdown menu).
app.activeDocument.print(false, app.printerPresets[myChoice.selectedIndex]);
Do you have experienced such problems ?
TIA Loic

Care to post the source + APDU trace?

Similar Messages

  • Hi,have you ever met such problem- one side of the display a bit lower than another,it is new, what should i do ?

    Hi,have you ever met such problem- one side of the display a bit lower than another,it is new, what should i do ?

    Call Apple Support

  • VB Script Problems with Windows Vista Ultimate

    I have iTunes 7.0.2.16 and when i try to update it i keep getting a message that says:
    "iTunes could not be installed becasue visual basic script (VB Script) is not installed or has been disabled. make sure VB Script is installed, turn off script blocking in anti-virus and personal firewall software, re-register VB Script, then install iTunes."
    I even get this message when i try to unistall iTunes. I completly uninstalled my antivirus software and removed all firewalls, but i wasnt able to fix the problem.
    I visited the iTunes and QuickTime for Windows cannot be installed without Visual Base Script (VBScript) section for help, however, it was unable to solve my problem.
    I currently have Windows Vista Ultimate and have been looking for a fix for a while now...any help would be greatly appreciated...
    thanks
      Other OS   Windows Vista Ultimate
      Other OS   Windows Vista Ultimate
      Other OS   Windows Vista Ultimate

    Hey rrijeka,
    Unfortunately, Vista is currently not compatible with iTunes.
    This article: http://docs.info.apple.com/article.html?artnum=305042 will tell you more about the iTunes and windows Vista compatability. The article will also be updated when itunes and Vista are compatible.
    Jason

  • Can you fix this script problem?

    Hi everyone
    I got this script
    for gen underline text to pdf
    the problem is it gen each page multi times if the page more then one place has underline text
    Can you fix it?
    //======================================================================
    var f = new Folder("~/Desktop/Revised_PDF put in here/"); 
    f.create();
    var doc = app.documents; 
    app.findTextPreferences = null; 
    app.findTextPreferences.underline = true; 
    for(var i=0;i<doc.length;i++) 
            var found = doc[i].findText(); 
            var _pages = []; 
            for(var j=0;j<found.length;j++) 
                    var txfms = found[j].texts[0].parentTextFrames; 
                    for(var k=0;k<txfms.length;k++) 
                            _pages.push(txfms[k].parentPage.name); 
            for(var j=0;j<_pages.length;j++) 
                    if(_pages[j] === _pages[j-1]) 
                            _pages.splice(j,1); 
            if(_pages.length != 0) 
                    app.pdfExportPreferences.pageRange = _pages.toString(); 
                    doc[i].exportFile(ExportFormat.PDF_TYPE, new File("~/Desktop/Revised_PDF put in here/" + doc[i].name.replace(/\.indd$/i,".pdf")), false);
            _pages = []; 
    app.findTextPreferences = null;
    alert("Done.");
    var f = Folder("~/Desktop/Revised_PDF put in here/" ); 
    f.execute(); 
    //======================================================================
    for specific details:
    Is that possible to write a script for export underline text to PDF?
    thanks
    Harvey

    > the problem is it gen each page multi times if the page more then one place has underline text
    Is this only when you have multiple unconnected text frames (each one containing underlined text) on the same page? Or possibly footnotes, tables, or anchored text?
    Chinna's script assumes all text is in a single threaded story: the findText command searchs one story at a time, from start to end (and across multiple pages). If it reaches the end of the story, it continues with the next one, even if it has to go back to the first page. And anchored objects, text in tables, and text in footnotes all count as "separate texts".
    Chinna's script already removes multiple pages:
    for(var j=0;j<_pages.length;j++)
      if(_pages[j] === _pages[j-1])
        _pages.splice(j,1);
    but it only works for a continuous story, because the "found" occurrences will be in the original page order, such as "1,2,2,3,5,5". This code removes successive doubles (see the Javascript documentation for a description of "splice"). As soon as you have separate stories (tables, 'notes, et cetera), you get a series such as "1,3,3,5,1,6" -- where "1,6" would be the occurrences in a separate story.
    The solution is simple: before removing the duplicates, sort the pages. As far as scripting goes, this is remarkably easy:
    _pages.sort();
    Please note that I just felt like answering your question this once. If you do what you did on most some of your other questions (ask for multiple versions for other formatting, have a different functionality, work on "selected documents" or "all in a folder" or "in a book file", or follow up with questions about totally unrelated scripts) I will probably not answer anymore.
    No offense meant, of course.

  • HT5100 I was thrilled with this app at first, the content is amazing, but lately I have not been able to open this on my iPad or to download updates. have other user experienced these problems? Is there a setting I can change to make his work again?

    I was thrilled with this app at first, the content is amazing, but lately I have not be enable to open the app, or to download updates. are other users experiencing problems like this? Is there a setting I can change that will solve the problem?

    I was thrilled with this app at first, the content is amazing, but lately I have not be enable to open the app, or to download updates. are other users experiencing problems like this? Is there a setting I can change that will solve the problem?

  • Can you fix my script problem?

    Hi everyone
    I got this script:
    function: gen specify color of text to pdf
    everything was very well, unless final step, I want to the script keep the new file's name as same as my indesign file's name,
    and no need to type in (".pdf")
    Thank you all so much!
    Harvey
    //==============================================================
    var doc = app.properties.activeDocument && app.activeDocument; 
    if (!doc) {alert("Adiós Amigo") ; exit();} 
    var sN = doc.swatches.everyItem ().name, 
        sID = doc.swatches.everyItem ().id, 
        /** UI */ 
        w = new Window ('palette', "Print by Color"), 
        g1 = w.add('group'), 
        g2 = w.add('group'), 
        st = g1.add('statictext', undefined, "Select Swatch from Drop Down List") 
        d = g1.add('dropdownlist', undefined, sN), 
        b1 = g2.add('button', undefined, "PDF"), 
        b2 = g2.add('button', undefined, "Print"); 
        b1.onClick = function () {proccessPages (d.selection, true)} 
        b2.onClick = function () {proccessPages (d.selection)} 
    w.show(); 
    function proccessPages (s, e) { 
        var l, c = 0, o, p, pO = {}, pA = []; 
        if (s == null) {alert("No Swatch Selected") ; return;}; 
        app.findTextPreferences = app.changeTextPreferences = null; 
        s = doc.swatches.itemByID (sID[s.index]); 
        app.findTextPreferences.fillColor = s; 
        var pageFinds = doc.findText (); 
        if (!(l = pageFinds.length)) {alert("No finds") ; return;}; 
        for (c = 0; c < l; c++) { 
            o = (p = pageFinds[c].parentTextFrames[0].properties.parentPage) && p.documentOffset + 1; 
            if (p) pO["_" + o] = o; // if the finds on a page add to page list 
        c = 0; 
        for (o in pO) pA[c++] = pO[o]; 
        var pageRange = "+" + pA.join(", +"); 
        doc.printPreferences.pageRange = pageRange; 
        if (!e) doc.print(true); 
        else { 
            app.pdfExportPreferences.pageRange = pageRange; 
            f = File.saveDialog("Export PDF", "PDF: *.PDF"); 
            if (!f) return; 
          app.activeDocument.exportFile (ExportFormat.PDF_TYPE, File(exportPath+'/'+linkname.name.replace(/(\.[^.]+)$/, '.pdf')), false, app.pdfExportPresets.item(exportPreset)); 
    //==============================================================

    everything was very well, unless final step...
    app.activeDocument.exportFile (ExportFormat.PDF_TYPE, File(exportPath+'/'+linkname.name.replace(/(\.[^.]+)$/, '.pdf')), false, app.pdfExportPresets.item(exportPreset));
    Hi Harvey,
    Be honest, it can not work. There no exportPath, linkname and exportPreset in your code.
    You pasted it from a several independent codes and ask for help to fix it ==> but, to tell you the true, is nothing to fix.
    It reminds me very much one story happened to some guy somewhere:
    He was asked by a stranger:
    "Which way is shortest to another part of the city."
    The guy knew the city pretty well but explaining the way took a minutes.
    At the end, nonetheless, a stranger jumped to a guy's back and ask:
    "Could you kindly take me there, pls?"
    Jarek

  • Have you got the same problem?

    Hello,
    I've been editing some code and wanted to use the 'insert
    destination path' tool in the editor.
    On pressing the icon Flash CS3 just...... QUIT. No saved
    work, no message, just no window.
    I'm shocked, since fortunately I wasn't working over some
    important stuff for a client, which I didn't save.
    Anyway it just scared me.
    The app is unpredictable. I don't remember now exactly how it
    happened but during the first days after the installation,
    it crashed while PS was running in the background.
    Judging from how Adobe was advertising the product, it should
    run smoothly and be trustworthy. I'm disappointed at the bugs.
    Did you encounter similar crashes?
    I'm running WinXP with sp2 and all critical patches. System
    works fine, no redundant litter. I use it only for designing.
    I don't think any software clash could have caused the crash,
    it must have been Flash CS3 bug.

    Archived - iTunes for Mac reports error -50 when trying to authorize iTunes Store purchases
    Products Affected
    iTunes 7 for Mac, iTunes 8 for Mac, iTunes 9 for Mac
    This article has been archived and is no longer updated by Apple. 
    Symptoms
    After installing the Mac OS X 10.4.9 Update, iTunes may be unable to properly authorize your computer to play your iTunes Store purchases.
    Resolution
    The following steps will delete your network preferences. Most broadband connections do not require any special settings to connect, but if your connection does or if you are not sure, please contact your ISP or network administrator for further assistance.
    Important: You must be logged in as an Administrator.
    Click the Finder icon in the Dock.
    Choose Go to Folder from the Go menu.
    Type /Library/Preferences/SystemConfiguration
    Click Go.
    In the Finder window, locate the file named NetworkInterfaces.plist.
    Drag this file to the Trash.
    Restart the computer.
    Once your computer has restarted. You will not be able to connect to the Internet. Now you will need to refresh your network settings to be able to connect again.
    Choose System Preferences from the Apple menu.
    Choose Network from the View menu.
    To refresh your network settings, from the Location pop-up menu, choose New Location.
    Type a name for your location and click OK.
    Click the Apply Now at the bottom right to accept the changes.
    If your network connection requires any special settings, you will need to put them back in at this point. Once you have made these changes you should be able to connect to the Internet again and authorize your computer to play your iTunes Store purchases.

  • Have you ever had the problem where you try to plug in your ipod, and you dont get anything.. Like it wont sync, but when you go on your Ipod you get the "Trust this computer" ? Please help

    So, whenever I try to plug in my IPod I get nothing, I get the sounds of it being synced, but I open ITunes and I have nothing. When I access my IPod 5th gen, I get a message asking me to "trust this computer" this just recently became a problem for me and right about now I don't even know what to do. I backed up, IClouded, DFU, and even reset my Ipod. still the same problem. Please help

    I'm having this same problem. I AM NOT HAPPY, APPLE!!! Sure glad I upgraded from a 4th Gen iPod Touch to this iPod 5th Gen that I cannot get recognized in iTunes. Jeez - for as much money as people pay for these products, it sure would be nice if they worked propelry...

  • Have you also experienced unreasonable delay in fixing a brand new Apple

    I have had the "part on order" for a new MacBook which had black screen. They took in my computer on the 25th August after the "genius" said it had to go back to the manufacturer. I am amazed that Apple doesn't seem to have a quality control on its manufacturing process that would result in such behaviour. Fortunately I have a very reliable IBM business PC to use in the interim.

    strangely enough, serious issues with their laptops occured with both models in their infancy. the macbook pros had their shares of woes and heartache, although it wasnt as numerous as the macbook's. but the delay at this point is pretty predictable, since at the moment im sure lots and lots of macbooks are being sent in for repair but the people that actually report it on here are just a handful, and im sure others are unable to anyway since the MB was their only computer. mine was off for a week, and hopefully it has the new part that will drive off the RSD demons. but time will tell on that one :/

  • HT201401 have you ever had a problem with a foggy lens - blurry pictures?

    Looks like the lens in the back has a film over it.  It is blurry!

    Does it happen with pictures you take with the front-facing and the back-facing camera? Or just one of them?

  • How do you fix the sound problem due to software 10.6.8

    my speakers work when i turn on my computer they make the sound but when i try to listen to something on itunes it doesnt work.

    obush1 wrote:
    when i try to listen to something on itunes it doesnt work.
    What's iTunes' volume setting?

  • Has anyone experienced bluetooth problem after iPhone 4 update?

    Has anyone experienced bluetooth connecting problems in car after iPhone update for 4.

    Hi Barosz2,
    If you are having Bluetooth connection issues after a recent update to your iPhone, you may find the troubleshooting steps outlined in the following article helpful:
    iOS: Troubleshooting Bluetooth connections
    http://support.apple.com/kb/TS4562
    Regards,
    - Brenden

  • What do you do when you iPod has a problem backIng up while updating

    Well I was trying to update to iOS 6 but my iPod (4th gen)said it had problems backing up, I have the latest iTunes and it's fine with normal syncing. Please help me I don't want to lose all my data

    You pray at least something will be backed up, and hope you have a previous backup on iTunes (as you should have regularly taken anyway.)
    You might also try recovering data through syncing with iTunes afterwards, but that's not quite the same...

  • Have you been getting timeouts and other weird connection issues lately?

    Internet connection has become a bit wonky as of late, have you been experiencing some or all of the following symptons?
    1) Most internet speed test sites just stop before completing as if they have timed out (i.e. speedtest.net).
    2) Sites will start loading quickly but then sometimes randomly stop and have to be manually refreshed.
    3) Downloads will randomly stop downloading for some moments before resuming (particularly from Steam)
    4) Tracert to some websites that were causing issues show timeouts on peering with Alter.net servers.
    Looks like there are some issues between Verizon and Alter.net (formerly MCI, now Verizon owned) in NY.... Any word on when we can expect a resolution? This is quite frustrating as it affects a good amount of traffic.

    I'm a little further east than you out here on Long Island, Touyats, but I've seen none of the issues you or the Original Poster here are experiencing.
    Assuming you're having the problems on a device connected to your router by Ethernet cable (WiFi opens up an entire range of other possible problems) you might try getting your router assigned a new WAN IP address. 
    If you want to give that a try, see this post for the steps involved:
    http://forums.verizon.com/t5/FiOS-Internet/How-am-I-able-to-change-my-ip-address/m-p/703336#M47733

  • I have problem since I install update this morning. They said to me APPLE MOBILE DEVICE FAILED

    This morning I have a demand to accept an update for Itune.
    I accept and I receive an error message. Apple mobile Device failed.
    Since I dont have access of my itunes

    Hello Plume 295101,
    Thank you for the details of the issue you are experiencing with installing the latest iTunes update.  I recommend following the steps below:
    Resolution
    Follow these steps to resolve the issue:
    Check for .dll files
    Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
    If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
    Reboot your computer.
    Note: Depending on your operating system, you may only have one of the listed paths.
    Uninstall and reinstall iTunes
    Uninstall iTunes and all of its related components.
    Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
    Re-download and reinstall iTunes 11.1.4.
    When you get to the step to uninstall iTunes, it is important to uninstall iTunes and the related components in the order listed in the link for that step. 
    You can find the full article here:
    iTunes 11.1.4 for Windows: Unable to install or open
    http://support.apple.com/kb/TS5376
    I recommend the following article if you continue to receive an error:
    How to restart the Apple Mobile Device Service (AMDS) on Windows
    http://support.apple.com/kb/TS1567
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • Run time error in FBZ5

    Hi, while runing t,code FBZ5 , i am getting this run time error. Runtime Errors         CALL_FUNCTION_NOT_FOUND Except.                CX_SY_DYN_CALL_ILLEGAL_FUNC Date and Time          30.05.2009 13:12:34 Short text      Function module "OTF_LIST" n

  • Where can I find the latest cab file?

    Where can I find the latest cab file? for example: CODEBASE=http://java.sun.com/update/1.5.0/jinstall-1_5_0_05-windows-i586.cab CLASSID=clsid:5852F5ED-8BF4-11D4-A245-0080C6F74284 It is not available on this page: http://java.com/en/download/manual.js

  • Separate IDocs based on condition

    My scenario is XML file to IDoc. In my XML file I have BELNR which will change often. Whenever a new BELNR occurs a separate IDoc needs to be created. For example: If I get BELNR like following: 100100 100100 Then only 1 IDoc needs to created... 1001

  • Change of email id to new for sending  PO output ??

    Hi Guys, can any body tell me how to change email id from the exisiting one to new id.This is to send PO output to an email. I need to change the mail address... where can i do this? your help will be appreciated. Message was edited by: raja gurrala

  • HTML 4.01

    sorry, duplication..