Wednesday, January 09, 2008

The January Fix for REVIT Products is In...under the radar!

Looks like the fix for problems associated with the Jan 2008 bug are now available. Had problems recently opening older files? Trouble editing schedules or groups?...Install the latest build 20080101_2345 to fix these problems and more! It is definitely time to upgrade and install the latest Revit Builds! Learn about and download the latest builds using the links below.

Click on the Web Update Enhancement List links below to read about the changes and fixes provided in the latest builds.

Want to download the latest English builds directly? Get it/them at Autodesk by clicking on these links:

Don't forget to read up on the content changes. I'll include this important reminder until the next full release.

Thank You Autodesk for understanding the need to release all the disciplines tools at the same time!...

Labels: , , , , , , , ,

Monday, January 07, 2008

Layer Set by Pick Lisp

Looking for a quick way to set a layer active? Why not pick an object that already exists on that layer! The following lisp code does just that!

(defun c:ls ()

(while (not e) (setq e (entsel))) ;get layer of item picked

(setq lyr (cdr (assoc 8 (entget (car e)))))

(command "-LAYER" "set" lyr "") (setq e nil)

)


Labels: , , , ,

Thursday, January 03, 2008

Use VBA to detach unloaded External References (XREFs)

Often when archiving or sending files to consultants, it is desireable to do some house cleaning prior to transmitting them. A common practice in cases like these would be to detach any unnecessary XRefs. And what is more unnecessary than a previously unloaded xref?


Public Sub DetachUnloadedXrefs()
Dim o_Blk As AcadBlock
For Each o_Blk In ThisDrawing.Blocks
If o_Blk.IsXRef And o_Blk.Count = 0 Then
ThisDrawing.Utility.Prompt o_Blk.Name & _
" is an unloaded xref and has been detached." & vbCrLf
o_Blk.Detach
End If
Next
End Sub


Hope you find that useful.

Labels: , , ,

Tuesday, November 13, 2007

Updated for 2008: Routine to Copy Layer Keys Between Layer Key Styles

Need to migrate your layer keys in AutoCAD Architecture 2008? I updated the routine to work in 2008. Get it here.

Labels: , , , ,

Wednesday, February 07, 2007

Mindmapping to Create Handouts

I have to admit, I've gotten away from my use of MindManager over the last few months. I got busy and forgot how this tool really helps to streamline development. After seeing fellow AUGI board member, Steve Stafford, use it to generate his AU handouts during our recent board meeting I realized that I was wasting time not taking advantage of this tool.

Yesterday, I realized that I had to set aside some time to develop a handout for a training class today. I knew that I was going to use MindManager to get the job done. I started by quickly organizing my thoughts in brainstorm mode and then completed the initial skeleton of the document as shown in the following image.



Taking the initial nodes, I utilized the notes pages for each topic to layout the meat of the handout including images, bullets, and text. Being able to quickly drag nodes to new branches and reorganize on the fly really sped up the process.



After completing the MindMap, I used the built in Saveas to document feature, pointed my new map at an existing Word template and quickly published a nine page handout to Word. I'll use this tool for every handout I create from now on.

Labels: , , ,