Automated scripts/macros for UB print and fab file generation

Hi,
I'd like to automate PCB layer printing and all fab file generation.  I'd love to see something like this built unto UB, but I'm assuming I'll need to use some kind of a macro recorder for this.  I can get AutoIt for free.
Has anyone done something like this?
Does MS/MB have the proper tags on the various buttons to allow this to work well?  Or do I need to use screen physical location control to do it?
Anybody know what I'm even talking about?
Thanks,
David B

Hello,
There's no innate function in UL or MS for any of this but as you said you would have to use a timer and placement macro maker program. I've used Jitbit's Macro Recorder (it allows for timing and placement of mouse along with keyboard recording as well as configuring), I think it might help.
Best Regards,
Miguel V
National Instruments

Similar Messages

  • AIX-based printing and PDF file generation

    Greetings,
    looking to find a best practices approach to scheduled printing of pdf BOXI reports hosted by in an AIX environment to a Windows AD secured network printer. 
    Looking at three possible approaches:
    1. AIX-based printing: lpr queue with some ghostscript translation to postscript
    2. Windows-based printing via SAMBA: AIX based printing using samba services
    3. Windows-based printing via  FTP: transfer the file out from the AIX server and script the printing using Control-M
    Leaning towards #3 presently.  Expert guidance would be greatly appreciated.
    Martin

    Hi Martin,
    I faced a similar situation at a client site and after actually trying out Option 1, then considering the cost of Option 2 (resources, skill sets and long-term maintenance), we decided to go for Option 3.
    With Option 1, we used the lpr queue commands to send the reports to particular printers (print queues) on the that were registered on the AIX box. We faced two major problems with this approach.
    (1) We had what we called the 'default' printer problem, where, may be based on the volume of pages we were printing or the performance issues on the server itself, print jobs would go the default print queue on the AIX server. As you can imagine, that was not good. Jobs that were intended for one department were ending up in another, and the default location had to start parsing through the print outs and create piles. Operational nightware.
    (2) Cover sheets... We had 1 report (basically a form) that needed to be printed with data for different departments (six depts). So a developer wrote a little java app that called BusinessObjects and passed in the report parameters - and ID, and the printer name. The problem that we faced was that the print jobs would come out the other end, each with its own cover sheet. Even though we passed in the AIX command to suppress the  cover sheet, they came out. I don't remember whether specifying the switch in the CMC worked or not - but we didn't have that luxury - we had to do programmatically because the printing was so dynamic.
    So we opted for a rather simple situation, which was made possible also because the customer's license allowed it. We installed the report job servers (no CMS) on a windows servers, assigned them to the CMS pool on the AIX server, installed the printers we needed on the Win server. Then we created a Server group that included just the Windows servers (report processing servers), and locked the report in question to only be processed by servers in that group. So the report would only be processed by the Windows servers with the necessary printers.
    The solution has been in operation for over 12 months and working great. We can manage all the servers from the CMC and with auditing turned on, we have great visibly on the performance of the system. Because this printing system is so critical, the process is being enhanced by throwing the stats on an Xcelsius dashboard for real-time monitoring by the operations folks.
    Hope this helps. I'll be glad to share more if you're interested.
    Will

  • Creating InDesign files for both print and mobile output?

    I am looking for a way to create files that can be multi-purpose for both print and mobile/online environments. I would like the output to be 2 different PDFs from one set of Indesign files. The problem I am encountering is that currently my files are full of hi-res and vector graphics, effects, and are generally created to be optimized for large-scale printings on offset or digital presses. I am trying to use the same files to generate files that are optimized for mobile and online presentation but finding that the number of vector graphics specifically is slowing page display down.
    My initial reaction is that the solution would have to be dual-development. Multiple forms of 'master graphics' would have to be created and placed on multiple layers (one for print and one for mobile/online).
    Hi-res files could be made lo-res in Acrobat or Pitstop, but vector imagery would have to be rasterized and I am not aware of a method to do that in either of those programs.
    I have found some info on adobe.com leading me to think that maybe CS6 addresses some of this, but the majority of my work is being done in CS4 with only the bleeding edge being done in CS5.
    Thanks in advance for any insight.

    the output to be 2 different PDFs from one set of Indesign files.
    You can accomplish this by saving each PDF using a different preset - High Quality Print for the high res, smallest file size for web
    but vector imagery would have to be rasterized...
    You should be trying to keep all vector work as vectors. This, in most cases, lowers the file size. There are a couple of exceptions to that like if the vectors are very complex (layered etc) and you are using bitmap effects like drop shadows. In general, rasterizing will increase the file size and lower the quality.
    Is there any functional difference between the 2 PDFs? I am wondering why exporting using 2 different presets will not do the job efficiently enough. You could always save your linked images with a low res version - same file but make a copy 100dpi instead of 300dpi. This might help but InD normally downsamples the images anyway when exporting as smallest file size.
    EDIT:// In Acrobat, you can save as "Reduced Size PDF" which strips out all the meta data etc and makes the PDF lighter and faster for web use. This would be a final, before publishing online step.

  • Im trying to install new drivers for my printer and it will not accept my password

    Im trying to install new drivers for my printer and it will not accept my password

    Hey fyermanbob,
    Thanks for using Apple Support Communities.
    OS X Mavericks: If your administrator password was not accepted
    http://support.apple.com/kb/PH14014
    Have a nice day,
    Mario

  • Macro to compare CSV and Excel file

    Team,
    Do we have any macro to compare CSV and Excel file.
    1) In Excel we should have two text boxes asking the user to select the files from the path where they have Stored
    2) First Text is for CSV file
    3) Second Text box is for Excel file
    4) We Should have Compare button that should run the Macro and Show the Differences.
    Thanks!
    Kiran

    Hi
    Based on my understanding, we need to convert the 2 files into the same format before comparing two different formats files. 
    Here are the options:
    1. Convert the CSV file and Excel file into 2-dim Arrays, then compare them, about how to load a CSV file into VBA array, you can search it from
    internet or ask a solution in VBA forum.
    VBA forum:
    http://social.msdn.microsoft.com/Forums/en-US/home?forum=isvvba
    2. Also you can import CSV file to Excel sheet, and then compare them.
    Here is the sample code for your reference:
    ‘import csv file
    Sub InputCSV()
    Dim Wb As Workbook
    Dim Arr
    Set Wb = GetObject(Application.GetOpenFilename("csv file,*.csv", , "please choose a csv file", , False))
    Arr = Wb.ActiveSheet.Range("A1").CurrentRegion
    Wb.Close False
    Range("A1").Resize(UBound(Arr), UBound(Arr, 2)) = Arr
    End Sub
    ‘compare sheet
    Sub CompareTable()
    Dim tem, tem1 As String
    Dim text1, text2 As String
    Dim i As Integer, hang1 As Long, hang2 As Long, lie As Long, maxhang As Long, maxlie As Long
     Sheets("Sheet1").Select
    Columns("A:A").Select
    With Selection.Interior
    .Pattern = xlNone
    .TintAndShade = 0
    .PatternTintAndShade = 0
    End With
    Range("A1").Select
    Sheets("Sheet2").Select
    Rows("1:4").Select
    With Selection.Interior
    .Pattern = xlNone
    .TintAndShade = 0
    .PatternTintAndShade = 0
    End With
    Range("A1").Select
    MaxRow = 250
    MaxColumn = 40
    For hang1 = 2 To maxhang
    Dim a As Integer
    a = 0
    tem = Sheets(1).Cells(hang1, 1)
    For hang2 = 1 To maxhang
    tem1 = Sheets(2).Cells(hang2, 1)
    If tem1 = tem Then
    a = 1
    Sheets(2).Cells(hang2, 1).Interior.ColorIndex = 6
    For lie = 1 To maxlie
    text1 = Sheets(1).Cells(hang1, lie)
    text2 = Sheets(2).Cells(hang2, lie)
    If text1 <> text2 Then
            Sheets(2).Cells(hang2, lie).Interior.ColorIndex = 8
    End If
    Next
    End If
    Next
    If a = 0 Then
    Sheets(1).Cells(hang1, 1).Interior.ColorIndex = 5
    End If
    Next
    Hope this will help.
    Best Regards
    Lan
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I want to use my 1TB Seagate Hard drive for time machine and transferring files from Mac to PC.

    For about a year I've been using my 1TB external hard drive for only time machine. To be honest, it wasn't until today that I tried to connect my hard drive to a PC and realize it isn't compatible. I read about partitioning the hard drive so that it can work both for time machine and transferring files between pc and mac. I'm not what you would call tech savvy, so I was wondering if I can get some advice on how to do this.
    Thanks in advance.

    To do it, you have to partition the hard disk, so you will have one partition for Time Machine and another one to store files and use them in a PC and Mac. To create the partition, follow these steps > http://pondini.org/OSX/DU3.html
    In order to read and write in the external disk on the PC, you have to select "MS-DOS (FAT)" as "Format". If you choose any other option, the PC won't be able to read your external disk. Apart from that, note that you can't use files bigger than 4 GB with FAT. If you want to use the external disk with files bigger than 4 GB, you have to format your new partition in exFAT, and you have to do it on a PC

  • Batch script to open multiple excel and doc files

    Hi Everyone,
    Could anybody please provide a batch script to open multiple excel and doc files at a time.
    Appreciate ur quick response.
    Regards,

    You have several scripting choices within Windows. At a basic level you've got "batch files" - which run a series of command interpreter commands, and have a file extension of .BAT or .CMD. If you just wanted to open a list of Word documents, then assuming that the path to Word is correct (something like this below) you could list these in a file with a .BAT extension and run this (e.g. double click on it):
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File1.DOC"
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File2.DOC"
    "C:\Program Files\Microsoft Office\Office\Winword.exe" "C:\Documents and Settings\All Users\Desktop\File3.DOC"
    "C:\Program Files\Microsoft Office\Office\Excel.exe" "C:\Documents and Settings\All Users\Desktop\File1.XLS"
    "C:\Program Files\Microsoft Office\Office\Excel.exe" "C:\Documents and Settings\All Users\Desktop\File2.XLS"
    Another script language is VBScript, which was the example I gave. VBScript is available on most Windows platforms and can be run from a command prompt or within Windows. If you save the text I gave you above to a file with a .VBS extension you can double-click to run it (Windows) or open a command prompt and type CSCRIPT MyVBScript.VBS (assuming that's the name of the your .VBS file).
    Other script languages are available to achieve the same thing, including Powershell, however you'd need to have Powershell available on your PC.

  • Using Sym Links for .dbf, .log, and .ctl files?  Will this work in 10g?

    Hello,
    We have an old database server we use for testing/development and it's running very low on diskspace on one of the filesystems on the box. At this point in time, adding space is not a simple option for several reasons. However, there are several other data partitions on this server with plenty of space available.
    I read a paper published by Sun Microsystems that advocates the use of symbolic links for dbf, ctl, and log files:
    http://www.sun.com/blueprints/0103/817-1048.pdf
    Are there any drawbacks/caveats we need to be aware of, or is this really as simple as just stopping the db, moving a few files to another fs, symlinking their locations, and restarting the db?
    Thanks for your input/advice.

    I think you should verify this with Oracle Support.
    This is the perfect measure to have them drop the phone on you.
    Sybrand Bakker
    Senior Oracle DBA

  • When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

    When I change the time zone of the clock, the "Date created" time information for my documents and image files in the Finder window (and in Get Info) is changed. Can I make the time info in "Date created" remain fixed regardless of the clock's timezone?

  • How to import missing content for my music and video files from Itune online

    how to import missing content for my music and video files from I tune online.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • WARNING! A script has requested to print an Acrobat file

    When i print all pdf file i get a warning script message that i have to click on
    OK each time this method is called, even if i checked the check box, it would reset next time i print again. I couldn't find iWarnScriptPrintAll  registry that used to be in Adobe 7.0 to disable this message, unless it has different name now. Any Idea???
    The Warning Message is: "WARNING! A script has requested to print an Acrobat file. This could print an entire document. Do you want to proceed printing?"

    HOW are you executing this print?
    Leonard

  • Any setting to use alt+tab for switching adobe and other file ?

    any setting to use alt+tab for switching adobe and other file ? instead of opening a adobe file agin and agin?
    thanks.
    really hate using win8...........................

    i mean ..can adobe fild open it in a normal way like win7 did...
    so i can use alt+tab to switch task easily..

  • Developing InDesign docs for both print and web

    I develop InDesign documents for offset printing but now the organisation wants to drag itself into the 21st century by also putting these same documents up on the web (as interactive web pages that respond to user input). I am looking for a broad outline of the best way to tackle this, just so that I don't waste too much time trying to learn the wrong technology or the wrong software.
    I have started to tag my documents with XML, so I am thinking that the route to the web is from InDesign to XML then via XSLT or CSS to XHTML. Is that the best and/or only way to do it? I assume DreamWeaver will also feature in the equation at some point.
    These documents are test questions. They are pretty simple. All the paras will have para styles but there will be some overrides of the font like bold, italic, underline, subscript, superscript. Presumably these all need to be tagged with XML, perhaps using character styles? There are lots of inline graphics (ai and psd files) that will have to be converted to png, I guess. I also have attached metadata via XML attributes and I want that metadata to get to the web page and help direct the action based on user input (like which answer they give to a question).
    Since I have always worked on print documents, I don't know XSLT, CSS, XHTML or even HTML so I just want to get started on the right foot.
    Any suggestions welcome, including perhaps good tutorials or other resources. And obviously I want to automate this process as much as possible using scripts.
    Thanks,
    Brian

    Hi Brian,
    I wanted to do the same at my work, but my boss didn’t allow me this. So, I have a general idea about how to do it, but have no chance to implement it into a working solution. In my opinion you answered correctly to your own questions and you are on the right track.
    As to tutorials and resources, I couldn't find much information on the subject so far.
    The best tutorial I know about is in this book:
    http://www.amazon.com/Designers-Guide-Adobe-InDesign-XML/dp/0321503554
    (Chapters 9-11)
    See also this tutorial:
    http://indesignsecrets.com/how-to-export-basic-html-out-of-cs2.php
    All the
    paras will have para styles but there will be some overrides of the font like
    bold, italic, underline, subscript, superscript. Presumably these all need to
    be tagged with XML, perhaps using character styles?
    There are a couple of ready to use scripts that do this — you can run such a script and then Map Styles to Tags.
    There
    are lots of inline graphics...
    That's good — inline graphics are better then stand alone ones for XML export.
    I don't
    know XSLT, CSS, XHTML or even HTML so I just want to get started on the right
    foot.
    The above mentioned book gives you basics on all these topics, but it's not enough — you'll need a good book on Dreamweaver as well. I'd recommend you Dreamweaver CS3 The Missing Manual Series.
    Kasyan

  • Use TC for Wireless Printing and Backups Only on Existing Wireless Network

    I am fairly clueless about this whole issue. I set up my current Belkin wireless router several years ago, and haven't had to fool with it once. I don't want to have to touch it--if it ain't broke............ However, I would like to use my Time Capsule I just purchased to backup via Time Machine wirelessly and attach a USB printer and print wirelessly. So the TC will not be used for internet, just want a separate wireless point for printing and backing up. Is this possible? I am not sure which choice to choose in Airport utility. I tried a couple different ways, and it didn't work. Can't honestly tell you what I tried, am a bit confused at this point!

    If you have not already done so, I suggest that your start over on the AirPort Expess "from scratch" by performing a Factory Default Reset and then attempt to configure it to join the network again.
    Resetting an AirPort Base Station or Time Capsule FAQ
    If you have an older Express, make sure that you are not trying to configure it to connect to the 5 GHz network, as it is unable to do so.
    Assuming that the name of the wireless network, wireless security setting and password on the Express match up with the AirPort Extreme, the Express should "join" the network if it is working correctly.
    If you are still having problems, all that you really can do is try the default reset a few more times. If still no luck, the Express....which is at least 5-6 years old or older, may likely need to be replaced with a new model.

  • Search script generator for all objects and data (!) from a user/schema ?

    Is there a way to create a script which (when run) creates all the existing
    TABLES; INDEXES, KEYS and DATA for a specified user/schema ?
    This (PL-)SQL script should contain all INSERTS for the currently existing rows of
    all the TABLEs.
    When I use e.g. export to Dumpfile I have at first find all TABLEs and components
    which I want to dump. This is rather uncomfortable.
    I just want to specify the user name similar to
    createscript user=karl@XE outfile=D:\mydata\myscript.sql
    Is this somehow possible ?

    So that I understand your requirements exactly, are you asking for your script to ...
    1/ export from database A the entire schema of a specified user
    2/ drop all objects owned by that user in database B
    3/ import the objects from database A into database B
    If so, it sounds to me that a shell script that does a schema level export as Nicholas suggested, and then drops the user from database B using the cascade keyword (e.g. drop user username cascade), recreates the user and then imports the export file into B should do the trick.
    I don't think searching for individual tables and creating the statements to recreate them is the best idea.
    Hope that helps
    Graham

Maybe you are looking for

  • My friend's iPad doesn't want to buy anything

    Hello guys! I have a very tragic story about the my friend's iPad. She recently bought some apps on her iPad, but iTunes store withdrew no money from her account. Today Appstore asked to recheck the payment card. During the checking process, it asked

  • How to use loop in BPEL Process

    Hi friends I have done a bpel process which picks up XMl file using File Adapter and imports the data from the XMl file to oracle db table using DB adapter.... But here the XMl file which have only one row ..if i want insert the XML file which have t

  • How to pass tables in Guided Procedures from VC

    Hi experts! I'am working in a workflow scenario, more precisely an approve-reject workflow scenario. I've defined all the start and the end points belonging to the respective iviews (I mean the sender and the approver iviews), following the  [Modelin

  • Transfer data to new user

    Ok here is my question. I am not trying to transfer data to a different computer. What I want to do is transfer the user files (pics, music, documents) from one user to another. What happened was my sister really messed up her user account putting th

  • Question about compiling

    hi im quite new to java and i wanna noe how to compile a .java file, i tried going to the command promt and typing "javac "filename".java but it saids that 'javac' is not reconized as an internal or external command, operable program or batch file. c