Errors and more, my first illustrator script

First, I should mention that I started scripting for Photoshop about a month ago and have had some really motivating successes there. It led me to this one task we have that is just incredibly repetitive and boring in Illustrator that I want to script.
I haven't gotten all the pieces in here that I need so far, and any form of help would be greatly appreciated, whether just suggestion, or really whatever. I don't mind doing research and trying things out myself.
The purpose of this script is to open a template file we have on our network drive, ask for a folder with a collection of files (these are files provided to us that contain the info we need to make labels), place one, save with a specific name, and start over, placing the next file, till they are all on the template. We do this before we can create labels for our products. There are weeks when it has to be done 50+ times and that's pretty mind-numbing.
The steps I think I need are:
ask where the provided files are that need to be placed
open template file
make sure the folder chosen has the right type of stuff in it (PDFs)
place the first file at specified coordinates
embed the link
lock the embedded link
ask user to proof information on screen (ok to continue, cancel to stop and let user interact with file on their own) (95% of the time, there are no errors)
use the embedded link's name as the name of the file and save it to a specific network location
repeat until all the files in the chosen folder have been done
I've been lurking around here for a couple days, reading up on how Illustrator works with scripting and have broken off bits and pieces of different scripts to adapt for my purposes. So far, this is what I've come up with:
function getLabelRequests() {
     return Folder.selectDialog('Please select the folder containing label requests:', Folder('~/Desktop'));
     function placeLabelRequests(selectedFolder) {
          var myDoc;
          if (selectedFolder) {
          var fileRef = File("/Volumes/myNetworkLocation/myTemplateFile.ai")
          open(fileRef);
          myDoc = app.activeDocument;
          var firstImageLayer = true;
          var thisPlacedItem;
          // create document list from files in selected folder
          var fileList = selectedFolder.getFiles();
          for (var i = 0; i < fileList.length; i++) {
          // open each document in file list
          if (fileList[i] instanceof File) {
          // get the file name
          var fName = fileList[i].name;
          // check for supported file formats
          if( (fName.indexOf(".pdf") == -1)) {
               // skip unsupported formats
               continue;
               } else {
                    // Give the file the name of the image file
                    File.name = fName.substring(0, fName.indexOf(".") );
                    // Place the label request on the artboard
                    thisPlacedItem = myDoc.layers['Job Form'].placedItems.add();
                    thisPlacedItem.file = fileList[i];
                    thisPlacedItem.position = [15,-45];
                    thisPlacedItem.embed();
     if( firstImageLayer ) {
     // display error message
     alert("Sorry, but the designated folder does not contain any recognized image formats.\n\nPlease choose another folder.");
     myDoc.close();
     getLabelRequests (placeLabelRequests());
     else {
     // display error message
     alert("Rerun the script and choose a folder with label requests, if you please.");
// Start the script off
placeLabelRequests (getLabelRequests ());
So obviously there's no loop in there, which is one of my problems at this point. I know what each of these chunks of code do, but can't necessarily understand all the syntax. Particularly things like
for (var i = 0; i < fileList.length; i++) {
I know it's saying that the variable i is zero, and while the list of files is greater than i, do whatever that last bit means, but I don't really know why it works or how it was constructed originally.
I haven't specified the save either, which might be why I'm running another of my problems, but I don't know how to get the name of the link to be the name of the file when it's saved. I also haven't given it a confirm to let the user proof either.
Here's my list of problems:
Running the script returns the image format error, even though the folder selected contains PDFs (I suppose I don't need to confirm the files are PDFs, that could just be incumbent upon the user)
Running the script places all the files into one iteration of the template (this may be because I haven't gotten the save or the loop in there, but I think it has more to do with the function being set up the way it is)
Obviously, it doesn't save with the link name as the file name
I don't seem to be able to figure out how to lock the link after it's embedded.
I also wonder if there's a way to, rather than opening-placing-saving-closing-repeat, to open-place-save, delete-placenext-save, delete-placenext-save.
Phew, sorry for the short novel.
Here is a copy of the template … or not. Can I not embed files in the post that aren't images?
Here's a JPG of the AI file that I use as a template
This document has two layers in this order normally:
Artwork
Job Form
And here are the blocks I'm using as placement for the information we are provided. These are taking the place of the files that need to be placed, and again, were PDF files, but I'm uploading as JPGs because I either don't know what I'm doing, or you can't upoad those file types.

I worked around the place options for the PDF by adding in a function I found on this forum. It detects clipping masks and deletes them.
There's one line in here that doesn't do anything, and I'm figuring out if it needs to be changed. After the clipScan function runs, I'm telling Illustrator to place a variable at a specific position, but because clipScan modifies the variable, it no longer recognizes that group of page items as the variable. Temporarily, I've used the original place position to make sure the link sits right where I want it to, but I have to make sure that the files we are provided never look any different.
If they do, I'll need to asign a new variable and set the position after clipScan runs, I think. If it's necessary, I'll update with the fix, otherwise I think this is the final script.
#target Illustrator
app.userInteractionLevel = UserInteractionLevel.DONTDISPLAYALERTS;
function getLabelRequests() {
    return Folder.selectDialog('Please select the folder containing label requests:', Folder('~/Desktop'));
function placeLabelRequests(selectedFolder) {
    var myDoc;
    if (selectedFolder) {
        var fileRef = File("/Volumes/graphics/Standards/Job Forms/Label Job Form-5C.ai")
        var thisPlacedItem;
        // create document list from files in selected folder
        var fileList = selectedFolder.getFiles("*.pdf");
        for (var i = 0; i < fileList.length; i++) {
            // open each document in file list
            if (fileList[i] instanceof File) {
                //open job form
                open(fileRef);
                myDoc = app.activeDocument;
                // Place the label request on the artboard
                thisPlacedItem = myDoc.layers['Job Form'].placedItems.add();
                thisPlacedItem.file = fileList[i];
                thisPlacedItem.position = [-50,10];
                var myLinkName = myDoc.placedItems[0].file.name
                thisPlacedItem.locked=true
                thisPlacedItem.embed();
                var clippingCount = 0
                clipScan(myDoc)
                thisPlacedItem.position = [15,-45];//this is the line that isn't doing anything right now.
                redraw()               
                //make sure the placed job form has the correct information
                var proof = confirm ("Does the job form have the correct information?", true)//needs the redraw step above or nothing shows when the alert happens. Redraw forces Illustrator to display the actions performed so far.
                if (proof) {
                    IllustratorSaveOptions = new IllustratorSaveOptions()
                    IllustratorSaveOptions.compatibility.ILLUSTRATOR15 //some of our printers have yet to upgrade
                    var onPO = Folder ('/Volumes/graphics/ •••Drafts•••/ • Draft Labels/ •On PO')
                    var saveFile = File(onPO + '/' + myLinkName);
                    myDoc.saveAs (saveFile, IllustratorSaveOptions)
            else alert ('Make note of the file with an error. This file will not be saved.')
            app.activeDocument.close (SaveOptions.DONOTSAVECHANGES)
    else {
        // if user cancels action, display message
        alert("Rerun the script and choose a folder with label requests.");
// run the script
placeLabelRequests (getLabelRequests ());
//////////////////////////function to remove clipping paths from placed item, thanks to KennethWebb, Muppet Mark and CarlosCanto on the Adobe Illustrator Scripting forum.
function clipScan (container) {
    for (i=container.pathItems.length-1;i>=0;i--) {
var item = container.pathItems[i];
        if (item.clipping == true){ //screens for locked or hidden items (removed this after true:  && item.editable == true       so it no longer screens for locked or hidden items
            container.pathItems[i].remove();
            clippingCount++;

Similar Messages

  • Help please? Static audio, Crashes, ActionScript Errors and more issues with Flash Player 16

    So, this is the first time I'm posting in here and I'm sorry if I mess up or smth.
    Anyway, this is what happened:
    - Firefox tells me Flash Player 15 is vulnerable
    - I update to the newest version
    - After the update I run into several things that are highly annoying.
    First of all:
    - I can't watch any livestreams anymore, neither on picarto nor on twitch. The video keeps loading and buffering, then works for a second or two and then goes back to buffering OR alternatively the video would stop whilst the sound continues or vice versa. (My wifi connection is super fast and I never had any problems until the update)
    - On youtube videos only load for a second or two, then the audio vanishes and the video crashes. (Never had that issue before, EVER)
    - The audio is incredibly wonky, aka, depending on the bass or sounds I hear static noises and weird sounds. (This only happens on videos that require flash, the sound is fine when playing CDs )
    - When watching videos and pausing it or going back a few seconds to rewatch something, the audio suddenly is completely gone.
    - Flash player crashes A LOT
    EDIT: Another Issue appeared:
    - When watchign videos using the Blip player (used by some websites) I get ActionScript errors which then result in crashes
    I'm using:
    Packard Bell EasyNoteLS
    Windows 7 Home Premium
    Firefox 34.0.5
    Adobe/Shockwave Flash 16.0.0.235
    What I've tried to do:
    - revert back to an older version of Flash (but it kept telling me to update so I gave up on it)
    - Try to enable "hardware accelaration" BUT, when right clicking on the Flash Symbol on Adobe's site FF freezes and tells me that Flash player crashed
    - Found out that I already have hardware accelaration enabled and it still keeps crashing
    - I deleted all of its local cache
    - downloaded and installed the debug version
    But none of it helped in the slightest.
    I really hope someone can help me fix this OR that adobe soon comes with a patch/update that fixes all these things ;_____;
    Thanks for reading and helping!

    Just to let you know, I don't tend to send all reports but here are a few from within the last week:
    [@ hang | WaitForMultipleObjectsEx | RealMsgWaitForMultipleObjectsEx | CCliModalLoop::BlockFn(void**, unsigned long, uns…
    https://crash-stats.mozilla.com/report/index/8f9d816a-8fa9-475a-9b6c-b660a2150109
    https://crash-stats.mozilla.com/report/index/a415ab2a-1321-4056-b263-83c212150109
    I tend to submit crash reports most of the times lately but yeah--
    Also, someting that really bugs me are these Actionscript errors because I can't upload a crash report for those--
    (they are more rare now but still happen occasionally)
    EDIT: Added photo of one of the Actionscript Errors when trying to play videos using the blip-player

  • Linux-3.1.8-1-i686 Errors and more

    The recent linux updated yielded this:
    (1/1) upgrading linux [######################] 100%
    >>> Updating module dependencies. Please wait ...
    >>> Generating initial ramdisk, using mkinitcpio. Please wait...
    ==> Building image from preset: 'default'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
    ==> ERROR: invalid kernel specifier: `/boot/vmlinuz-linux'
    ==> Building image from preset: 'fallback'
    -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect
    ==> ERROR: invalid kernel specifier: `/boot/vmlinuz-linux
    I'm not sure how this came about, but obviously rebooting wasn't pretty and (I believe it was during init) gave me:
    ERROR: Unable to determine major/minor number of root device 'y'.
    So I booted from liveCD, mounted everything and used chroot to try installing the package again to which it worked. Rebooting again the regular boot option in grub was broken, but luckily the fallback worked. Even now that I'm inside my system without a liveCD, installing the package again gives the same errors it did originally At this point I think my best bet would be to just copy my fallback options to my normal method and be done with it, but I'd like to know what might have caused it and a more elegant solution. Thanks ahead of time.

    The fallback image generation fails the same way the default, yet it somehow works.
    Have you tried examining your /boot?

  • "event cannot be created...server error", and more

    I have NEVER been able to reliably or consistently have iCloud sync calendar events between my iPhone5, iCloud and MacBook Pro (all running latest software). Occassionally if I enter an event on the phone it'll show up on the iCloud account (and vice versa), but certainly not always, or even most of the time. Events entered on the Mac virtually never sync to anywhere else. [Contacts, no problem.] I tried reinstaling Mntn Lion and for about five minutes several test events from each of the three sources (phone, iCloud and pwrbk) did show up in the other places but then it reverted to the inconsistent, useless behavior as before.
    Now I can't even create events on the web: when I try I get a message: "This event couldn't be created because of a server error; please try again." This happens regardless of browser (Chrome, Safari or Firefox). Tried creating a new iCloud acct but no work.
    Is anyone able to help: would appreciate (love, love, love) a step by step walk through the necessary steps on each device to make thi happen. Without this functionality I have to always carry around the Pwrbk to have my calendar available, missig out on one of the major functionalities offered by these devices.
    Many, many thanks and a golden star to anyone who can help ne through this.
    Thanks, Aloha,
    Ali B.

    I used to have 2 calendars on my Mac before using iCloud (Home and Work) and I backed them up by exporting to .ics files.  I had so much headache with the iCloud syncing that decided to create a new Apple ID and to start everything new. 
    I first imported the Home and Work ICS files into my Mac and then I created a new "Family" calendar for my family's activities.  Only the new Family calendar gets synced by iCloud.  The Home and Work calendar would not get synced.  I tried entering my calendar item from Mac and from my iPhone.  Only the new Family calendar gets synced.  So weird.
    And when I tried entering something from iCloud.com, I get the same "This event couldn't be created because of a server error; please try again." message.
    Any advice would be much appreciated!

  • Errors, Errors, and More Errors

    I am having massive problems with our Sql Server (v8 sp4)/Websphere (5) application.
    We rolled out a new version of our (previous stable) J2EE application at the beginning of December 2005. Our app uses container-managed transactions, no entity beans.
    We immediately began experiencing blocking processes. KILLing the blocking process almost always resulted in a few widowed and orphaned records.
    I tried tuning the connection/transaction/context. Previously, the app created new connections for almost every function call to every bean. I changed the configuration to share the same connection for all the calls. The problem reduced slightly.
    I have tried reducing the number of queries in each transaction. No help, either.
    Today, I checked the logs and we are getting a crazy collection of database errors:
    - "Statement is closed"
    - "ResultSet is closed"
    - "Invalid parameter binding(s)" (lots of these!)
    - "No valid transaction context present"
    - "Transaction is ended due to timeout"
    - "Transaction has already failed, aborting operation."
    As well as Java exceptions like:
    - "NullPointerException"
    - "SQLException: DSRA9002E ResourceException with error code null"
    This makes no sense whatsoever. We didn't make massive changes to the code. Our changes focused on some new beans, new JSPs, etc.
    Any ideas?
    Russell T
    Atlanta, GA (USA)

    I apologize for explaining badly the connection setup. We are using connection pooling (through Websphere).
    What I intended to say was that we were acquiring connections from the Context willy-nilly throughout the code. I created an abstract bean that every session bean extends in order to eliminate redundant code.
    The abstract session bean gets its connection like this:
    Context envCtx = (Context) new InitialContext();
    String dataSourceName = (String) envCtx.lookup("java:comp/env/dataSourceName");
    DataSource dataSource = (DataSource) envCtx.lookup("jdbc/" + dataSourceName);
    connection = dataSource.getConnection();The Websphere admin has even tried additional tuning of the connection pool settings, such as size, timeout, reap time, etc.

  • WebCamCenter error and more

    Today I installed a new Live! Cam Vista IM on my DELL WinXP machine.
    When running WebCamCenter and pressing "Capture" the following happens:
    1. Video window appears, text at the bottom says "Initializing camera..."
    2. Error window pops up:
    CTNullCam: WebCamCenter.exe - Application error; The instruction at "0x002b0f0" referenced memory at "0x002b0f0". The memory could not be written.
    The application then freezes up.
    Happens every time.
    - Installation was OK
    - online registration and updates were OK.
    - System restart does not help.
    - In Control Panel's Scanners and Cameras section there is no entry for the camera.
    - The camera works with Skype.
    - The camera does not work with MS Powertoy "Timershot".
    - At installation time (or just thereafter) there was a complaint about "C:\Documents and Settings\LocalService\Desktop" not existing.

    just checking precisely where you are in the troubleshooting process.
    have you worked through the possibilities from these documents?
    iPod for Windows: Fast user switching in Windows XP is not supported
    iPod shows up in Windows but not in iTunes

  • I tried to open my Illustrator CS6 today and got the following error message, "To open Adobe Illustrator CS6 you need to install the legacy Java SE runtime". The window then states, "Click More info...to visit the legacy Java SE 6 download website."  I do

    Help. I tried to open my Illustrator CS6 today and got the following error message, "To open Adobe Illustrator CS6 you need to install the legacy Java SE runtime". The window then states, "Click More info...to visit the legacy Java SE 6 download website."  I do click on the More Info... button, but the webpage is blank. Please help.
    Thanks,
    Leo

    Leo,
    Depending on your OS, you should be able to use;
    Win:
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Mac:
    http://support.apple.com/kb/DL1572
    Some have found that the page may turn up blank to start with, so it may be necessary to reload the page.
    Others have found that it may depend on browser. Specifically, a switch from Safari has solved it in one case.

  • Need more info on solving script errors -- don't have Webroot on my computer, but it gets tied up for hours at a time with Mozilla script blockages !!!!

    Whenever I am logged into FF, my computer will eventually grind to a halt -- sometimes after a few minutes, and sometimes after a few hours. I then get the script error message shown below.
    "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete."
    <nowiki>**************************************************************************</nowiki>
    Below that generic message is one of these specific messages:
    Script: resource://gre/modules/XPCOMUtils.jsm:320
    https://secure.wlxrs.com/w!xbEiA1hkt!tswyuOeDSQ/litedepex.js:1
    resource://gre/modules/XPCOMUtils.jsm:323
    resource://gre/modules/XPCOMUtils.jsm:325
    resource:///components/nsPrompter.js:434
    https://gfx7.hotmail.com/mail/16.2.7137.1204/c2a.js:1
    resource://gre/modules/XPCOMUtils.jsm:325
    https://secure.wlxrs.com/w!xbEiA1hkt!tswyuOeDSQ/wlive.js:1
    https://secure.wlxrs.com/_D/w!xbEiA1hkt!tswyuOeDSQ/jquery-min.js:47
    chrome://global/content/bindings/textbox.xml:98
    chrome://mozapps/content/downloads/download.xml:71
    Script: https://mail.google.com/_/mail-static/_/js/main/m_i,t/rt=h/ver=am293eyFlXI.en./sv=1/am=!v8Czf-oeNMn0BO3a1PgLcnZDWwl3f6w7siCzO0WZ4q30IbVM6NJqQEKHLeJhMzB_YcWyBQ/d=1:2729
    http://pagead2.googlesyndication.com/pagead/osd.js:12
    https://gfx7.hotmail.com/mail/16.2.7137.1204/cmpt0.js:1
    http://mail.yimg.com/zz/combo?nq/launch/common-neo-base_6549.js&nq/launch/common-neo-om_6549.js&nq/launch/search-neo_6549.js&nq/launch/inbox-om_6549.js&nq/launch/inbox-listview-new_6549.js&nq/launch/inbox-message-new_6549.js&nq/launch/inbox-minty-fresh_6549.js&nq/launch/inbox-base_6549.js&nq/intl/js/launch/lang_en-US_6549.js&nq/intl/js/launch/conf_us_6549.js:194
    <nowiki>************************************************************************************</nowiki>
    I have no such problem with Internet Explorer or when the computer is not connected to the Internet; it is specific to FF. I do not have Webroot Spysweeper on my computer.
    Strangely enough, we do not have this problem with two other PCs that use FF, nor did I have it on these two computers during the first few years that I used them with FF. I bought a new PC, moved my files onto it, then suddenly it had the same problem, which is what made me think it was a malware issue.
    I checked Windows Defender and found that was not switched on and could not be switched on. So I bought three different anti-malware programs beginning with Malwarebytes and then SpyBlaster and SpyBot S&D. But they did no good.
    Just pressing the "continue" button in response to the script error message does not good, since it allows the computer to continue grinding to a halt. Worse, if those scripts are malware, I don't want them sending private info to internet sites, which is apparently their function.
    Please help me root out the problem. It has made my computer inoperative for several hours a day for the past few months.

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Tons of Script Errors and Slow Redraw

    I recently setup CS 5.5 with Bridge 4.1.0.54 on a new MacBook Pro.
    When I launch Bridge I get the following messages:
    I'm confident of a few things. First, it's obviously somewhat related to this issue:
    http://forums.adobe.com/message/3083307
    Second, it has nothing to do with CFS or Samba shares.
    Lastly, the error has something to do with the output module script- if I startup without it on, no errors.
    Currently I have my MBP setup with two drives. A SSD for the system software and a second SATA drive for content. All my system software is on the SSD boot drive, however, my users folder is split between the two. Everything but ~/users/xxx/library is symbolicly linked on the second drive.
    If you look closely at the thread referenced above, all the errors are the same except for the "could not create" error. In the thread, it lists a specific user, my error lists Volumes/Null/...
    Here is what I've tried so far:
    Reset the app
    Trashed the prefs
    Started up w/o scripts
    reinstalled the entire CS 5.5 Suite after Uninstalling and using the cleaner tool
    To add insult to injury, When the output script is off and bridge does load, it does it painfully slow to the point where it is not usalbe. It is also having a ton of redraw issues.
    Any advice?

    I think I may have found a workaround.
    I've been racking my brain over the past few days to figure this one out. I've tried at least a dozen permsissions fixes, both through the apple utility and manually. I've reinstalled both bridge and CS 5.5 three times using the cleaner script and a fresh install. NOTHING.
    So I went back to the original error message:
    One thing I noticed was that everytime Bridge was starting, it created a folder in /volumes called "null". I checked three other macs setup the same was as mine and NONE of them created this folder during bridge startup.
    I still have not figured out why my laptop is doing this.
    However, I looked at the error and it seemed that bridge was looking for a path that didn't exists, which was /volumes/null/Adobe/Adobe Bridge CS5.1/Adobe Output Module/Mediagallery
    the path Adobe/Adobe Bridge CS5.1/... is the same path as my ~/library/application support/... folder for adobe.
    First I created a regular alias to that folder to create the fake path. No dice. Then I tried a symlink to creat the fake path /volumes/null/Adobe/Adobe Bridge CS5.1/Adobe Output Module/Mediagallery
    Voila. Worked like a charm. I can now start up Bridge without any errors, script errors, etc. I also have all the functionality of my Output panel back and I'm able to use it without getting the insufficiant disk space error.
    Now to figure out why Bridge is creating a "Null" folder.

  • What type of errors generally we wil get in script and smartform?

    what type of errors generally we wil get in script and smartform?

    Hi,
    Script and Smartforms are used to Output the outgoing Document print in any orgn.
    Mostly the problem is the allignment of windows on the page.
    Data problems are very little. printing of pages, ie. particular data should come in first page and other on second page,
    and the address should not come in 2 pages,
    displaying of currency related fields errors, texts related errors are the mostly occuring errors.
    reward if useful
    regards,
    Anji

  • PCI DIO 32HS (6533) Suddenly giving "The device is not responding to the first IRQ level" error, and no longer functioning.

    Greetings NI folks,
      I'm an oceanographer, and have an sidescan sonar data aquasition computer running Windows XP SP2, and NiDAQ 7.0 (Legacy). For several years, this machine has worked flawlessly, but today, I booted it up to test the system for an upcoming job, and I got some strange errors in our sonar program. I tranced the problem to our NI-6533 PCI-DIO-32HS card. I launched NI Automation Explorer to test that the card was responsive, and when I click the "test panel", I get an error: "The device is not responding to the first IRQ level." Continue (yes/no). If I click yes, I can test the digital i/o's, but nothing happens, and all the tests fail (nonresponsive). I tried moving the card to another PCI slot, tried forcing it to have a specific IRQ that was unused by anything else, and finally tried moving it to another computer that had never been used with the DIO card. I'm still getting the error, and the card is nonresponsive. I'm at the limit of my abilities, and would like to know if there's anything else I can do, or should we send the card back to NI for repair/diagnosis.
    Thanks.

    Duplicate Post
    Best Regards
    Hani R.
    Applications Engineer
    National Instruments

  • When I try to use the print/save as pdf option, I get a scripting error and Firefox usually freezes.

    On my MacBook Pro running OS 10.5.8 and Firefox 3.6.13, I am trying to save documents as pdfs under the print window, I get a scripting error and Firefox usually freezes/becomes nonresponsive. This happens every time I tried to perform this task.

    This is a fresh install of Windows 7.  It is installed on virtual environment on my mac mini using the parallels virtualization application.
    I purchased the windows version of dream weaver CS 6 through an online website which I tried to install to my new windows instance.   This is the academic version of the Dreamweaver application with a perpetual license that I am trying to install.
    I verified my eligibility through adobe which gave me a link to download the CreateiveCloud Set-up program.  I downloaded the install program in my windows environment and program and the gave the above error message.  Below is a copy of my computers specs. 

  • Just updated to IOS 7 and two issues:  First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".

    Just updated to IOS 7 and two issues: 
    First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".  I'm not sure what this really means...
    The second issue is when I try to select "Manually Manage Music"
         The iPhone "My iPhone" is synced with another iTunes libary on "MY-PC".  Do you want to erase this iPhone and sync with this iTunes library?  An iPhone can be synced with only one iTunes library at a time.  Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So... I don't want to do that, but I do what to be able to Manage my music.  I'm not sure what it means by being synced to another iTunes unless it means to an older version of itunes?
    Anyone have any ideas?

    I cannot address the sync services error right now, but the error that you receive when you change from sync to manually manage music is what happens when you change. Once you change to manually manage music, it erases all of the music and will only put the music that you want on the phone, content that you manually drag over to it. See if this support document helps you out. http://support.apple.com/kb/HT1535

  • The system doesn't recognize or capitalize the word (I) or the first word of every sentence. Another really annoying thing about the integrated mail on your Mac computers is the fact that the system learns the word as you type it more and more instead of

    The system doesn’t recognize or capitalize the word (I) or the first word of every sentence. Another really annoying thing about the integrated mail on your Mac computers is the fact that the system learns the word as you type it more and more instead of highlighting it as incorrectly is this is a word that’s being misspelled. Can Apple fix this bug to make it user friendly as if you were using Office or a Word Document?

    You hit the target CT.
    It’s only fair that if Apple is going to integrate Mail into Mac PCs, it would be nice if the system does it for you like Office or perhaps Outlook. I just don’t to use Outlook although I have it installed and ready to use, but instead use Mail which comes with Mac OS already.
    I hope to make some sense here.

  • I purchased photoshop elements and i am having all the problems in the world installing it.... first the link in the emails were errors and secondly i have downloaded and installed multiple times and it says my serial number from the email i received is i

    I purchased photoshop elements and i am having all the problems in the world installing it.... first the link in the emails were errors and secondly i have downloaded and installed multiple times and it says my serial number from the email i received is incorrect.... please help

    Ok, since this forum is for Photoshop Standard and Photoshop Extended, we don't know much about Photoshop Elements. There is a Photoshop Elements forum and I'll link it for you since they best know how to field your questions.
    Photoshop Elements
    Good luck on it! 
    Gene

Maybe you are looking for

  • NetBeans

    I have been having the strangest problem with NetBeans. Everytime i create a new form, it opens the GUI Editor. I make no changes (or i do... doesn't matter) to the starting JPanel created. I save and then quit out. Later on (or right away) i reopen

  • Windows Form with SAP B1 Problem

    Dear all, I'm building an add-on that use some windows form. In Menu Event i placed the code for open my windows form:                     MyForm xxx = new MyForm();                     xxx.WindowState = System.Windows.Forms.FormWindowState.Normal;  

  • I am trying to update firefox on my mac 10.4.1 , but it keeps saying insufficient privilage

    Hi , I have a mac 10.4.11, i use firefox as my browser, but there is problems with my email , it does not work , so it did suggest to upgrate firefox.I dowloded , but when i try to drag it in to my aplication , it says that i dont have sufficient pri

  • Acrobat Icon

    Upgraded the latest version of Adobe Acrobat X, 10.1.2 yesterday.  After a few minutes, the Acrobat icon on my desktop changes to the first page of the pdf document. Had this same problem with previous versions of Acrobat.  How do I maintain the docu

  • Safari keep crashing! Please help!

    Hi, my Safari keeps crashing and wont reopen. I tried opening using safe mode, worked fine. Here's the report. Please help me!! Process:         Safari [340] Path:            /Applications/Safari.app/Contents/MacOS/Safari Identifier:      com.apple.S