macroScript LinksDisplay category:"DaniTools" internalcategory:"DaniTools" tooltip:"Links Display Toggle" buttontext:"Links Display Toggle" Icon:#("SubObjectIcons",14) ( -- Links Display -- Dani Rosen - 02/2005 -- place on your toolbar and toggle the button to view hierarchy links on execute do ( try ( if objects[1].showlinks == false then ( for i in objects do i.showlinks = true ) else ( for i in objects do i.showlinks = false ) ) catch ( messagebox "no objects in the scene" ) ) )