I'm trying to move an array of pads.

I'm trying to move an array of pads to a location on a .005" grid but it will only move to the nearest .01". What do I change in setup?

Could you post your Ultiboard file so that we may examine it? That way we will be on the same page when it comes to recreating your situation.
Kittmaster's Component Database
http://ni.kittmaster.com
Have a Nice Day

Similar Messages

  • Trying to move a list of form variables to session variables of the same name

    I am trying to move a list of form variables to session variables of the same name and I am having a lot of trouble.
    I have never had to post of this forum with a language question in all the 10 years I have been using ColdFusion. I was a qa Engineer @ Allaire/Macromedia back when it was going from one to the other. I have a pretty good grasp of the language.
    I have software that runs off a list. The fieldnames are variable and stored off in an array. It's survey software that runs off a "meta file". In this example; I have the number of fields in the survey set to 12 in the "metafile". I have each field declared in that file in array Session.SurveyField[1] and the above loop works fine. I include this "metafile" at the start of the process.
    I cfloop around a struct and it works wherever I have needed to use it; such as here - writing to the database for example;
    <CFQUERY NAME="InsertRec" DATASOURCE="Survey">
    INSERT into #variables.SurveyTableName#
    (EntryTime
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    ,#Session.SurveyField[arrayindex]#
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,q01_name,q02_AcadTechORNA,q03_Water,q04_FirstAid,q05_CPR,q06_LifeGuard,q07_AED
    ,q08_ProjAdv,q09_Color,q10_SantaClaus,q11_Supervisor,q12_SupervisorOpinion --->
       VALUES
        ('#EntryTime#'
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thisname = "Session." & Session.SurveyField[arrayindex]>
    ,'#evaluate(variables.thisname)#'
    </cfloop>
    <!--- EXAMPLE OF WHAT THE ABOVE GENERATES
    ,'#Session.q01_name#','#Session.q02_AcadTechORNA#','#Session.q03_Water#','#Session.q04_Fi rstAid#'
    ,'#Session.q05_CPR#','#Session.q06_LifeGuard#','#Session.q07_AED#','#Session.q08_ProjAdv# ',
    ,'#Session.q09_Color#','#Session.q10_SantaClaus#','#Session.q11_Supervisor#','#Session.q1 2_SupervisorOpinion#' --->
    </CFQUERY>
    NOW HERE'S THE PROBLEM: I am running into trouble when trying to move the form variables to session variables of the same name. It is the only part of the software that I still need the datanames hard coded and that is a roadblock for me.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thissessionfield = "Session." & Session.SurveyField[arrayindex]>
    <cfset thisformfield = "Form." & Session.SurveyField[arrayindex]>
    <cfset #thissessionfield# = #evaluate(thisformfield)#>
    </cfloop>
    I have tried it with or without the "evaluate"; same result. It doesn't give an error; it just ignores them (session variables look as such in the next page in the chain)
    q01_name=
    q02_acadtechorna=
    q03_water=
    q04_firstaid=
    q05_cpr=
    q06_lifeguard=
    q07_aed=
    q08_projadv=
    q09_color=
    q10_santaclaus=
    q11_supervisor=
    q12_supervisoropinion=
    Note: they exist because I CFPARAM them in a loop like the above at the start of the procedure) - and this works just fine!
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset dataname = "Session." & Session.SurveyField[arrayindex]>
    <cfparam name="#variables.dataname#" default="">
    </cfloop>
    </cflock>
    I EVEN tried exploiting the Form.Fieldnames list using CFLoop over the list and the same sort of logic within and it still gives me nothing....
    Here's the FORM.FIELDNAMES value
    "Q01_NAME,Q02_ACADTECHORNA,Q03_WATER,Q04_FIRSTAID,Q05_CPR,Q06_LIFEGUARD,Q07_AED,Q08_PROJAD V,Q09_COLOR,
    Q10_SANTACLAUS,Q11_SUPERVISOR,Q12_SUPERVISOROPINION"
    Here's the logic; SAME RESULT - The session variables don't get set.
    <cfoutput>
    <cfloop list="#Form.FieldNames#" index="thisfield">
    <!--- <br>#thisfield# --->
    <cfscript>
    thisSESSIONfield = "Session." & thisfield;
    thisFORMfield = "Form." & thisfield;
    #thisSESSIONfield# = #thisFORMfield#;
    </cfscript>
    </cfloop>
    </cfoutput>
    The CFPARAM in a loop with variable output name works just fine; so does the post (which I included above) as does the SQL Create, Param Form Variables, Param Session Variables, etc.
    THIS even works for moving BLANK to each session variable, to zero them all out at the end of the process;
    <cflock scope="Session" type="EXCLUSIVE" timeout="30">
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    </cfscript>
    <cfset #thissessionfield# = "">
    </cfloop>
    </cflock>
    Expanding on that code, you would think this would work, but it doesn't;
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
    <cfset thislocalfield = Session.SurveyField[arrayindex]>
    <cfscript>
    thissessionfield = "Session." & thislocalfield;
    thisformfield = "Form." & thislocalfield;
    </cfscript>
    <!--- debug --->
    <!--- <cfoutput>#thissessionfield# = "#evaluate(thisformfield)#"</cfoutput><br> --->
    <cfoutput>
    <cfset #thissessionfield# = "#evaluate(thisformfield)#">
    </cfoutput>
    </cfloop>
    And see that debug code in the middle? To add insult to injury... When I uncomment that it shows me this. So it certainly looks like this should work....
    Session.q01_name = "Me"
    Session.q02_AcadTechORNA = "N/A"
    Session.q03_Water = "Yes (certificate expired)"
    Session.q04_FirstAid = "Yes (certificate is current)"
    Session.q05_CPR = "No"
    Session.q06_LifeGuard = "Yes (certificate expired)"
    Session.q07_AED = "Yes (certificate expired)"
    Session.q08_ProjAdv = "Yes (certificate expired)"
    Session.q09_Color = "Gray"
    Session.q10_SantaClaus = "Yes"
    Session.q11_Supervisor = "Da Boss"
    Session.q12_SupervisorOpinion = "Not a bad thing"
    There must be some simpler way to do this. This way won't work against all odds even though it seems so much like it should.
    So I end up having to hardcode it; still looking for an automated way to set these #@%$*@!## session variables over the list from the form variables of the same @#@!$#%$%# name. Do I sound frustrated???
    No matter what I do, if I don't HARDCODE like this;
    <cfset Session.q01_name = Form.q01_name>
    <cfset Session.q02_AcadTechORNA = Form.q02_AcadTechORNA>
    <cfset Session.q03_Water = Form.q03_Water>
    <cfset Session.q04_FirstAid = Form.q04_FirstAid>
    <cfset Session.q05_CPR = Form.q05_CPR>
    <cfset Session.q06_LifeGuard = Form.q06_LifeGuard>
    <cfset Session.q07_AED = Form.q07_AED>
    <cfset Session.q08_ProjAdv = Form.q08_ProjAdv>
    <cfset Session.q09_Color = Form.q09_Color>
    <cfset Session.q10_SantaClaus = Form.q10_SantaClaus>
    <cfset Session.q11_Supervisor = Form.q11_Supervisor>
    <cfset Session.q12_SupervisorOpinion = Form.q12_SupervisorOpinion>
    I always get this from my next page because the session variables are empty;
    You must answer question 1.
    You must answer question 2.
    You must answer question 3.
    You must answer question 4.
    You must answer question 5.
    You must answer question 6.
    You must answer question 7.
    You must answer question 8.
    You must answer question 9.
    You must answer question 10.
    I tried duplicate as well, but I can not get the above to work...
    Can anyone help me do this thing that one would think is simple????

    I think if you use structure array syntax you should get the results you want.
    <cfloop from="1" to="#Session.NumberOfSurveyFields#" index="arrayindex">
          <cfset session[Session.SurveyField[arrayindex]] = Form[Session.SurveyField[arrayindex]]>
    </cfloop>
    Or probably even easier.
    <cfset session = duplicate(form)>

  • I am trying to move my wife's iPhoto '08 library to my new iMac for iPhoto '11.

    I am trying to move my wife's iPhoto (2007) library on a Macbook to my new iMac for iPhoto '11.  First, when I opened iPhoto on the iMac it asked me to create a library, which I did.  Then I imported her photos via a wireless network to my "new" library.  However, when it finally finished importing, it had imported 3 copies of each photo from her library.  I deleted the "new" library and started over.
    Second, I opened iPhoto on the iMac and chose to use "other library."  I chose my wife's shared iPhoto library and it began transferring the photos to the new iMac (or so I thought).  This worked beautifully as it only brought over single photos and not 3 copies like discussed above.  After editing the new library and adding some photos from an old PC, I shut down iPhoto.  A few hours later I tried to open iPhoto on the iMac and it gave me the opening screen again with choices to create a new library or use a different library.  As it turns out, my wife's Macbook and been disconneted from our wireless network.  I was able to figure out that that unless my wife's Macbook is connected to the network then I cannot access the iPhoto library on my iMac.  I was under the impression that I had copied her library to my computer and that the photo files were now on the hard drive of the iMac.  So when her computer is offline I can no longer access the imported library.  I want her library to stay on the iMac as we plan to sell her Macbook.  As you now know, we cannot access her iPhoto library on the Macbook since she is running an older version of iPhoto.
    So, what I would like to do is to completely transfer the photos from her Macbook to my new iMac and be able to access them on the iMac regardless of whether she is on the network or not because we plan to sell her Macbook to a friend.  Thank you for any help you can provide.

    To move an iPhoto Library to a new machine:
    Link the two Macs together: there are several ways to do this: Wireless Network,Firewire Target Disk Mode, Ethernet, or even just copy the Library to an external HD and then on to the new machine...
    But however you do choose to link the two machines...
    Simply copy the iPhoto Library from the Pictures Folder on the old Machine to the Pictures Folder on the new Machine.
    Then hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    and select the Library that you moved.  That's it.
    This moves photos, events, albums, books, keywords, slideshows and everything else.
    Your first option didn't work because you imported one Library to another. Every version and thumbnail is imported like a distinct photo, you lose all your Albums, Keywords etc., the link between Original and Previews is destroyed, the non-destructive editing feature is ruined and so on. In summary: it's mess.
    Your second option didn't work because you simply referenced her library on the old machine.
    Regards
    TD

  • So, I have just about had it. For nine days now,  I have valiantly tried to move my library to an external drive. At first, I attempted to move it to my 2TB Time capsule, iTunes didn't like its new home though and moved home without telling me.

    So, I have just about had it. For nine days now,  I have valiantly tried to move my library to an external drive. At first, I attempted to move it to my 2TB Time capsule. iTunes didn't like its new home though and moved home without telling me. So then there were two libraries. I meshed them back together reluctantly and iTunes in a silent revolt, absolutely refused to use its own 'Keep Library Organized' criteria and may as well have thrown my music against the wall. Seriously, my 5 year old nephew has his computer files better managed. Then I bought a 3TB Time Capsule and you may ask yourself why??? Well, iTunes doubled in size- although when I ran apps that are designed to find duplicate iTunes files, it deleted the music I actually bought from iTunes. So then I watched as iTunes got it back. How you ask; I run a MacBook Air, iMac and Mac mini in my house - as soon as one powered up it hit the net like a sailor on leave and re-downloaded it all without abandon. I tried to keep the libraries separate, no success there. I tried to keep them unified; iTunes response was to ask me if I wanted to join iTunes Match every time I logged on to my computer and on any computer - my iTunes match song number has been as high as 24,367 and as low as 11,112. And I can't simply refuse iTunes. No one refuses iTunes. Refusal to allow iTunes Match to run through all 24000 songs again was to revoke my rights to the songs that were once part of my library. If I took a long time to decide or was visibly impatient while iTunes did its little 3 hour scan it would arbitrarily decide that music I bought from iTunes was ineligible for iTunes Match. How could that possibly be??? I am missing music, or at least iTunes tells me so by showing me that lovely exclamation point. I have tried backing up my computer to do a full system restore and start all over. Time Capsule claims I have 979 GB of data and takes its sweet time to even back up one gig (about 18 minutes) even though I can transfer files to my Time Capsule at about 1 GB every 40 seconds. I guess though performing back-ups are somewhat like government jobs; it will get done, when it gets done. The back up requirement of 979 GB is surprising though, my Mac claims that I currently occupy just about 25% of my 2TB drive. The discrepancy, who knows, but I think the solution lies somewhere in iTunes. But maybe iPhoto. But that is for another time.

    After admittedly only a quick read the one thing you don't say is how you are trying to make this move.  Most people with moving library issues do it the wrong way.  Plenty of web sites tell you how to do it the wrong way.
    If the iTunes application is started before the drive with the library is fully mounted and awake iTunes will revert back to the internal drive.

  • A PDF file was filed in documents. when trying to move this file to trash i got response : operation can't be completed because the itempdf is in usen

    A PDF file was filed in DOCUMENTS, when trying to move this PDF file to trash I got the response: "Operation can't be completed because the item ..... is in use".
    How do I get this document deleted from the system?

    The suggestion to move items from documetns to desktop and then moving to trash is the one that worked.
    I have now one other question and that is that during my strugle with the original problem I called with Apple helpline and there they suggested to move the application "Preview" to trash and then the  issue would be solved. I did so but clearly the issue was not solved.
    Bottom line is that with your solution I got rid of the PDF files, but I still need to reinstall the Preview application. Do you have suggestions how to do that??

  • Trying to move iPod library to an external hard drive

    Okay I am totally confused and hope that some of you can help me. I have a 60GB iPod and a few months ago I tried to move my library to an external portable hard drive (so it wouldn't take up so much room on my computer hard drive) using the instructions in the manual for iPod. Moving the library using the instructions in the manual did not include my playlists and play count and etc. Then I realized that when I opened iTunes the file names were there but the songs wouldn't play. So I came to the message board for help. Someone gave me links to info on how to move the music from iPod to iTunes including play count and etc. Well I tried that but all of the songs were not transferred (I have over 7000 on my iPod now) and some songs are being transfered more than once when I try to run the program again to add the songs that were missed. This whole process has been a mess!!!! So I just stopped working with it. So now I really just need to start from the beginning. I want to rebuild my library from my iPod to iTunes but I want the iTunes library to be on an external hard drive so that it is not taking up all the extra room on my laptop. Can this be done? Can someone help me please!!!! I am in desperate need of help!!! Thanks!!!
    HP notebook   Windows XP  

    Usually, I set up my ExHDs to be a letter that is farther down the alphabet. Try 'M:' for Music, or 'T:' for Tunes. That way, anything else you add will not take up that drive letter inadvertently.
    Remap you ExHD to another letter. See the instructions below:
    -- Click on 'Start'
    -- Right-click on 'My Computer'
    -- Select 'Manage' from the drop down box
    -- That will launch the 'Computer Management' utility. From there, select 'Disk Management'
    -- If you right-click on the ExHD drive letter, you should be able to 'Change Drive Letter and Path'
    -- Change only one drive letter at a time
    -- Reboot after the change, for it to take effect.
    -- Repeat for additional drives
    Also see: How to change drive letter assignments in Windows XP

  • HT1451 I am trying to move two ring tones from my Iphone 4 to my new Iphone 5.  I can see the ringtones on my old device in Itunes but I cant seem to move them to the Library or to the new device.

    I am trying to move 2 ringtones from my Iphone4 to my new Iphone5.  I can see the ringtones in Itunes on the old device.  I cant seem to copy them to the library or to the new phone.  Do you have any suggestions?

    Hello DelaineF,
    Congratulations on your new iPhone 5!  It sounds like you would like to transfer your ringtones from your iPhone 4 to your iPhone 5. 
    If the ringtones were purchased from the iTunes Store, you can transfer them to iTunes using the steps in this article:
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/ht1848
    Once you have the ringtones on your computer, I recommend using the steps in the following article to sync it to your iPhone 5:
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12313
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • I am trying to move a pdf file onto my iPad2, and it says that the device is not connected or has stopped working.  But Windows 7 recognizes the device and I can see my pictures.  Same thing happens when I try to put music onto the iPad.

    I am trying to move a pdf file onto my iPad2, and it says that the device is not connected or has stopped working.  But Windows 7 recognizes the device and I can see my pictures.  Same thing happens when I try to put music onto the iPad.

    When in iTunes on the computer,my our ipadmshould show under devices.
    Click on your ipadmunder devices then go to music at top center of the iTunes window, check what you want to sync for music. You need to set it to a folder if I remember which would have your music in it you want synced.
    Same with PDF files.....there should be an option for data or even PDF files at the top center area of iTunes when the iPad is clicked under devices.
    If your iPad does not show or you cannot click on it under devices which is in the leftane of iTunes, the iPad is not being seen by the computer.
    Try unplugging the USB cord from the laptop then give it a few and see if the computer picks it up.

  • I am trying to move a picture that I brought over from iWeb and it is locked. I need to move it. Can anyone help?

    I am trying to move a picture that I brought over from iWeb and it is locked. I need to move it. Can anyone help?

    It is probaly just "inline" ie part of the text.
    click on it > Inspector > Wrap > Floating
    Peter

  • Trying to move my music library from my ipod to my new laptop...

    I am trying to move my music library from my ipod to my new laptop... i have followed instructions from website, but when i was supposed to have all my songs in my itunes on the new laptop, they were not there, they are in a folder called "music".
    wheni open my itunes now, i have only the songs i purchased from the store and a few more i had dowloaded from my cd's. Most of the songs have an ! in front of them, and i can't play them.
    on my ipod i have only a few songs....
    my old laptop was windows xp and the new one windows 7, my ipod is 1st generation nano
    what can i do???

    .... and now on my old laptop i also have all the songs with exclamations marks as well.... totally lost here!

  • Trying to move my iPhoto library to external drive

    I'm trying to clear up room on my internal drive and so trying to move my library to an external drive.  I've copied the photo library to the external drive.  How do i point the iPhoto application to this new location so that I can delete the library on my mac's drive.  Follow up question, do i need to make any changes with time machine so that the new location continues to get backed up?

    1 - Option - launch iPhot
    2 - Yes - in the TM preferences under options be sure that drive is not excluded
    3 - what format is the EHD? It MUST be Mac OS extended (journaled) to work for the iPhoto library
    The general answer including those points is
    Moving the iPhoto library is safe and simple - quit iPhoto and drag the iPhoto library intact as a single entity to the external drive - depress the option key and launch iPhoto using the "select library" option to point to the new location on the external drive - fully test it and then trash the old library on the internal drive (test one more time prior to emptying the trash)
    And be sure that the External drive is formatted Mac OS extended (journaled) (iPhoto does not work with drives with other formats) and that it is always available prior to launching iPhoto
    And backup soon and often - having your iPhoto library on an external drive is not a backup and if you are using Time Machine you need to check and be sure that TM is backing up your external drive
    LN

  • I am trying to copy 3 photos from an album in iPhoto to my iPhone. I have tried to move them to PhotoStream. I "select" the photos in the Album and then click on PhotoStream in the "Share" menu at the bottom of the screen. Nothing happens.  I have also tr

    I am trying to copy 3 photos from an album in iPhoto to my iPhone. I have tried to move them to PhotoStream. I "select" the photos in the Album and then click on PhotoStream in the "Share" menu at the bottom of the screen. Nothing happens.  I have also tried emailing them tyo myself but iPhoto won't send the email. It tells me it doesn't recognize my ID and password. My operating is Lion on an iMac.

    Thank you for responding to my question, above, this morning. And thank you for the link about PhotoStream. It was helpful in understanding how Photostream works, but, unfortunately, doesn't really reference my problem since it assumes that the photos were originated on one of my  Apple devices. The photos I want to copy to my iPhone are in an album on iPhoto but I had originally downloaded them from my camera to my iMac then moved them to the album. The confusing thing for me is that they are 3 of a dozen photos takern over a period of 12 years on different digital cameras (two were taken on film and later scanned and eventually moved to the album in iPhoto) and all but three of the photos moved to photostream and are on my iPhone. It is those three, which were all taken on digital cameras and moved to the album, which I can't get to move to Photostream.

  • HT1386 I am trying to move music from my Ipad to my shuffle that I got for Christmas.

    I have an Ipad2 and a new shuffle, my Itunes gave me a message that it would remove music if I tried to sync,  It says are you sure you want to remove music..etc from Ipad and sync with Itunes library will this delete all of my music?  I need to get music loaded on my shuffel but want some of the music I purchased to be added also

    brianmartinwoolf wrote:
    I am trying to move music from my ipod onto my mac. ...
    Was this Music purchased in iTunes... If so... see here...
    Transfer Purchases
    File > Devices > Transfer Purchases
    More Info Here  >  http://support.apple.com/kb/HT1848

  • I am trying to move my iPhoto library

    I am trying to move my iPhoto library to a new hard drive. Should be simple, but I am getting the error message ' some date in iPhoto library can't be read or written' is there any way around this? J

    What format is the external drive?
    A common workaround is to use a back up utility to copy the Library for you.

  • Problem is with my iPhoto on my Macbook air.  I am trying to move my library from my airbag onto my passport drive.  I did it and deleted it from the airbag but it simply re appeared possibly from the cloud. Not sure what to do next.

    The problem is with my iPhoto on my Macbook air.  I am trying to move my library from my airbook onto my passport drive.  I did it and deleted it from the airbook but it simply re appeared possibly from the cloud. Not sure what to do next. Sorry I am not a techie.

    Sorry - we can not see you
    what do you have? Version of iPhoto? Of the OS? How is the passport connected to your Mac? What format is the passport (for the iphoto library it must be Mac OS extended (journaled)  )?  The iPhoto library is not and can not be on the cloud (maybe later with the Photos Application)
    LN

Maybe you are looking for