I reviewed RTV Xporter PRO late last year, but there have been a few updates and new features since then so I thought I’d briefly list them here.  For less than $50US per user, you get a lot of automation capability. A 2016 compatible version is now available. Also, a new build for Revit 2015 has been released.

Here are some of the new features in Xporter PRO 2015 build (599):

  • improved revision management
  • improved stability for unattended scheduled tasks with Revit
  • improved PDF connectors
  • new Citrix Sharefile connector
  • new Edit/Update Revit Sheet Parameter data mode
  • new Right-Click shortcut menu options on the main interface
  • new Create 3D views split by floor level and export to individual NWC files

Get it here

A few of the other key features of this addin:

  • tasks can be automatically run as a single Batch process or on a repeating Daily, Weekly, Monthly and Hourly Scheduled process.
  • Automatic creation of PDFs, DWG, DWF, DWFx, DXF, DGN, NWC and IFC files from Autodesk® Revit® drawing sheets and views.
  • Built-in parametric file naming engine automatically saves exported files to match any company’s or project team’s file naming conventions.
  • Batch print large format and reduced hardcopies to two separate printers simultaneously.

If you want to know more, you can check out my November 2014 review:
What Revit Wants: Automatic Batch Printing and Exporting from Revit that could save you Dollars and Time (RTV Xporter Pro review)

This little utility is VERY basic.  It can basically can record mouse movement and clicks, and keyboard input.  You can record a task, save it to a file, open an existing recording, and play.  There are some basic options to do with ‘Play Speed’ and number of repeats.

Download link

It can even save your recorded macro as an EXE file – however:
There are pros and cons in saving the macro in .rec file or compiling it to an .exe file. Once compiled into an EXE file, you can run the macro without TinyTask. However, the play speed and repeat count/continuous playback option are hardcoded during compilation and can no longer be changed. If you save it into a .rec file, it requires TinyTask to run but you can set the play speed and repeat count/continuous playback.

For more detailed information, check out this post:
TinyTask: Small and Lightweight Automation Software | Raymond.CC Blog

Image via Raymond.CC Blog

There are many sources of content out there, the main ones being Seek and RevitCity.

Sometimes, a content provider will attempt to obfuscate the links to the original files, so that you can’t just come along and use DownthemAll and Firefox to download all the RFAs and RVTs in one hit.

However, there is a way around this – its called iMacro, and it is also an addon for Firefox.

Basically, you can set it to record actions you take using your browser, and then replay these actions as a script.  Its very powerful and gives you a lot of control.

A few little tweaks that you might want to add to the start of the script:

SET !ERRORIGNORE YES
SET !LOADCHECK NO
SET !TIMEOUT 100

Let’s say you have printed a bunch of PDFs to a folder, hopefully using one of the techniques described in my previous two posts (links below), and now you want to rename them to match the data exported from a Revit schedule?
Part 1
Part 2

Here is one method:

  1. Create a Revit schedule with all the data you need.
  2. Export the schedule, such that you have a file like this one (view the sample)
  3. Now, open the cool excel spreadsheet that I’m providing here for download.  This file works for 3 columns of data.  Basically, it just joins the data from the 3 columns into one cell (and adds some hyphens and brackets).
  4. Open the exported Revit schedule in Excel.  You will need to choose file type – ‘All files’ and go through the steps to convert to the schedule to a spreadsheet.
  5. Copy all the cells from the Revit schedule spreadsheet and paste into the cell in the Rename-files-using-schedule-data.xls file
  6. You will notice that the 3 columns have been joined into one in Column A.
  7. Copy the data from Column A and go to a new blank worksheet (can be in the same file).
  8. Paste the data using the ‘Paste Special’ command and choose ‘values’.  This data is now ‘clean’ and can be used for renaming purposes.
  9. Copy this ‘clean’ data into a Notepad txt file and save as whatever you like.  Sample file for download here.
  10. This TXT file is now used in the Advanced Renamer program.  Install it if you haven’t already.
  11. Open Advanced Renamer.
  12. Add – Method – List
  13. Then click ‘Load List’ and select the TXT file that you made.
  14. Also, under the ‘Rename Files’ box, choose ‘Add – Directory’ and choose the location where your PDFs are located.
  15. You should now see the previous filenames along with the ‘proposed’ filenames.
  16. If you are happy, click ‘Start Batch’

 As I said, this technique is really not for the fainthearted.  But it sure has saved me a lot of time!  I hope you find it useful.

I hope that you found my previous post on batch printing with automatic naming helpful.

But what if you want to add a prefix or a suffix to all PDFs in a set? Some firms like to add the current revision or issue date as a suffix to each individual sheet. This can be accomplished easily with the freeware program Advanced Renamer. It is available in both portable and installable versions.

Here is a few simple steps to add a suffix to all PDFs in a specified directory:

  1. Install and run Advanced Renamer.
  2. Click Add – Directory. Select Directory and click OK.
  3. Click Add method – Add (this will obviously ‘add’ something to the filename of resulting files.)

  4. Set the options for the Add method: Type the text you would like to add, select index 1, ‘backwards’ and Apply to Name. This will add the specified text to the end of all filenames in the directory.

  5. Click ‘Start Batch’ and you are done.

You can experiment with other ‘methods’ to do some more advanced renaming tasks.

Sometimes you will want to produce a large set of PDFs where each drawing sheet is in its own PDF file. You also want the PDFs to be automatically named and created. There are a number of ways to accomplish this – here is the simple way that I use.

  1. Download and install PDFCreator ( if you don’t have it already)
  2. Download the following ini file: pdfcreator settings
  3. Open the PDFCreator application
  4. Go to Printer – Options, and then ‘load’ the settings from the ini file you downloaded (use the little folder at the top of the window to load settings), then hit ‘Save’ at the bottom of the window.
  5. Now, when you print from Revit, be sure to choose the options to ‘Create separate files…’
  6. When you click ‘Print’ in Revit, each sheet will be sent individually to PDFCreator. PDFCreator will then use the View or Sheet name (as per the REDMON_DOCNAME_FILE setting) to Autosave the PDFs to a specified folder – the above ini file uses C:TEMP_PLOT by default.

You can tweak these settings to your own individual taste – you may want to change the Autosave folder, for example.
Revit wants you to work efficiently, and it wants you to maximise the value of the data inherent to the BIM model. In this case, we leverage the View/Sheet name to automatically name the PDF files.
But what if you want to modify the filenames – perhaps adding a prefix or suffix to all PDF filenames? Well, you will just have to subscribe and wait for the next post…

Go to Part 2