AutoCAD Visual LISP / AutoLISP :: Can Add Named View Control To Quick Access Toolbar?

Dec 8, 2011

I've made a failed attempt to add the RIBBONCONTROL Named Views to the main Quick Access Toolbar. The Customize User Interface dialogue box (CUI) seems to allow me to drag the Named Views  RIBBONCONTROL from the command list to Quick Access Toolbar 1. I don't see the "forbidden" icon and the blue insert bar shows up when I perform the drag operation.

However, I suspect there is some compatibility issue, because the command doesn't pop up when I release the mouse button at the end of the drag operation. Using command QUICKCUI and trying to drag Named Views RIBBONCONTROL directly to the Quick Access Toolbar (on screen) seems to be allowed likewise, but doesn't work also.

Using the regular View Manager Dialogue is not the kind of solution I'm looking for, because in the View Manager it takes at least twice as much mouse clicks to change to another view.

Any way to reach the desired customization? Should it be reported as a bug to Autodesk?

View 5 Replies


ADVERTISEMENT

Revit :: 3D Default View Icon Missing In Quick Access Toolbar?

Aug 13, 2013

I have a problem wit Revit 2014 from BDS Premium. I don't have 3D default view icon in Quick Access Toolbar and I can not add it. I tried to right click on QAT and customize it but unfortunately 3D view is not in the list and it can't be added by righ clicking on the icon.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Delete Files Named In List

Aug 19, 2012

I have list like (C:projectspr0310.dwg  C:projectspr0315.dwg C:projectspr03drawings17.dwg)

Want these three files deleted from C:projectspr03.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Freeze Layers In Viewports On Named Pages?

Jun 24, 2013

I am in need of a LISP to freeze layers in viewports on named pages. I found the following functions to return the frozen vport, but it only returns the list of already frozen and it only works if the viewport is active; besides just listing the frozen layers isn't enough. I need to be able to supply the page/tab and a list of layers to freeze.

; by Jürg Menzi 1999(DEFUN GetFrozenLaysInVport (/ LayLst) (FOREACH memb(GetMviewInfo) (IF(= (CAR memb) 1003) (SETQ LayLst (CONS (CDR memb) LayLst)) ) ) (REVERSE LayLst))(DEFUN GetMviewInfo (/ ActVpt CurSet IDX RetVal TmpVal) (SETQIDX TActVpt (CAAR (VPORTS)) ) (IF (OR(= ActVpt 1)(= (GETVAR "TILEMODE") 1) ) (SETQ RetVal nil) (PROGN (SETQ CurSet (SSGET "X" '((0 . "VIEWPORT")))) (WHILE IDX(SETQ TmpVal (ENTGET (SSNAME CurSet 0) '("ACAD")))(IF (= (CDR (ASSOC 69 TmpVal)) ActVpt) (SETQIDX nilRetVal (CDR (ASSOC "ACAD" (CDR (ASSOC -3 TmpVal)))) ) (SETQ CurSet (SSDEL (SSNAME CurSet 0) CurSet))) ) (SETQ CurSet nil) ) ) RetVal)

Is it possible to provide the page/tab name and a list of layers as aguments to a subfunction that could either activate the viewport and freeze a list of layers, or simply freeze the layer list for the named page's/tab's corresponding vport.

Important: most of my pages/tabs contain at least two vports. The largest of the two vports is the only one I wish to change, but if the layer list is frozen on all vports (per page/tab) it will make no difference because the smaller vport only requires that layer 0 is visible.

View 6 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Load LSP File Named For Windows Login

Sep 14, 2012

If my windows login name is HSIMPSON and i have created HSIMPSON.lsp in a Supported Directory, how do I load that Lisp file via the command line?

I have tried:

(load "loginname")

but that doesn't work because the 'load' command seems to want an explicit name, not a variable name.

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: CANNOSCALE Value Needs To Match Existing Named Scale

Jan 18, 2012

The crux of the matter is that the CANNOSCALE value needs to match an existing named scale.  This lisp is part of a bigger lisp and I need to pass a variable into it.  Here's what I have:

(setvar "CANNOSCALE" (strcat "1" = " (rtos variable 2 0) "'"))

But I get this error when I try to run it.

; error: bad argument type: numberp: nil

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Change Font Of Named Attribute Throughout Drawing

Sep 25, 2012

how to change the font of a specific attribute in all my blocks in a drawing.  I am trying to change the INST attribute font to Arial but I have thousands of them through out my project.  My other attributes that I do not want to change are using the same Style as this block so I can not simply change the style.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Move A Named Block Left 5 Inches

May 24, 2012

I'm dabbling in lisp to reduce some drafting time. I'm looking for a way to move a named block left 5 inches. The names block in this instance is "Bricks". What would be the easiest way of writing this in lisp form? I searched through the forums and I couldn't find what I was looking for. This is not after an insert command. This is a block that currently exists in the drawing template.

View 9 Replies View Related

AutoCAD LT :: Quick Access Toolbar?

Jul 16, 2012

Have a problem seeing my quick access toolbar, there seems to be a white shading over most of it, how I can get rid of shading ?  Not a display problem with my screen as only happens in Autocad !   See the attached screenshot .

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Making A Most Used Tool Button For Toolbar

Sep 22, 2011

I also note I could use excel but I have this thing where id like to have the lisp and AutoCAD run independent from other external programs.

I’m the CAD monkey at work and I’m given unbelievable autonomy to what I build (sometimes I confuse work with hobby) put all to one side. My functions often require toolbars with several buttons on them what I would like for one toolbar in particular is to make a most used function button. Better said a button at the beginning of my toolbar, which execute the most used button from within that entire toolbar.
 
The ideas so far is to add a write-line (append) function lisp for every button this would intern write a button codename/ reference example SNP for snap and SAV for save and so on. All easy I can do this.
 
What I’m having difficulty with is actually counting the instances of the most used button using lisp. At the moment I’m resorting to a vb.net program, which needs to be shelled first, to recalculate the whole list it works but is messy and quite patch worked. The highest instance would then be used to set a variable, which would be used as the command in the so-called “top 1 tool button”

View 4 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Loading Routine With Toolbar Button

Apr 19, 2012

I need to load a lisp routine by way of a toobar button. I do not want to use the appload dialog box.

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Delete Toolbar From Partial CUI Menu

Feb 15, 2013

I have a company .cuix menu that is loaded as a partial menu to the main acad.cuix file. I want to delete all the toolbars and pull down menus associated with it and leave the other stuff in place. This is in Autocad 2011 but should also translate to 2013. So far, I have tried opening the CUI menu, going to the company.cuix partial menu and deleting the toolbars. Then I hit save, then Apply. Toolbars disappear and pulldown menus go away. But when I reload AutoCAD they come back.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Get Data From MS Access?

Dec 19, 2011

I woluld like to use visual lisp to get data from ms access.

I know how to connect to Excel, but is there a similar connection possible for access ?

View 1 Replies View Related

AutoCAD LT :: Add Menu In Quick Access Toolbar?

Aug 21, 2013

I already add in the Quick Access Toolbar the "Layer Combo Control" and the "Ribbon Combo Box - Linetypes"

I would like to add also "Ribbon Combo Box - Object Color" BUT it seems impossible...

I copy it from Panels - Home - Properties and put it into Quick access Toolbar, but it never shows up and worse when I go back to CUI it has dissappeared...

The only things that works is the "color" function.

View 3 Replies View Related

AutoCad :: How To Get Back Quick Access Toolbar

Sep 2, 2011

Just had Mechanical 2011 installed on my comp replacing LT. I've lost my quick access toolbar buttons at the top and cant find how to get them back .

View 6 Replies View Related

AutoCad :: Create A New Quick Access Toolbar

Apr 22, 2013

Every time I try to use the CUI: create a new ribbon panel, create a new quick access toolbar, etc ACAD LT crashes and shuts down. When I reload ACAD LT the work spaces are gone.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Quick Select All Blocks From Specific Layer?

Mar 1, 2012

how to quick select all the blocks from a specific layer (for instance XPTO) and export them along with their attributes, exactly as we do by quick selecting them and then, through AutoCAD Express -> Attribute Export Info, but in a script...

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Determine Which Button On A Flyout Toolbar Is Currently Shown?

Feb 13, 2013

how can I determine which button on a flyout toolbar is currently shown?

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Routine To Create Quick Preset Views

Oct 3, 2011

I am looking for a lisp routine that, when activated, asks the user to select the "preset view" (similar to the preset view command found in the ribbon, but instead smaller and quicker), enter name for the view, end.

If possible, perhaps a command, relating to the routine above, that can be placed in the short-cut menu (right-click), which will list the preset views (made by the user), and be selectable.

The approach is instant view change, where it is possible to apply the command, then reapply to go to another view.

if possible, surely there'd be some people that may be interested in this capability.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Control UCS Without Using Command Line?

Nov 9, 2012

Is it possible to control the UCS without using the command line?  I'd like to access it and control it with vlisp much the same way I can access DXF groups and manipulate insertions.  Seems like it should be possible to play with it's definition inside the object model.

View 5 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Quick Properties Customization - Fatal Error Message

Nov 4, 2013

I am trying to customize my quick properties (acad.cuix), but i keep on receiving fatal error message. And when i click on quick properties it is all blank. Also, the Properties dialogue box is not working when i click on something, the properties do not appear on the Properties dialogue box.  Attached is the error message.

View 3 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Macro To Open Third Party Program From Toolbar Button

Feb 7, 2012

I'm trying to create a macro for a toolbar button to open a third party program. Basically we want to open a custom .exe application from a button on the ACAD toolbar.

View 5 Replies View Related

AutoCAD Inventor :: Quick Access Toolbar Display?

Jul 3, 2012

I have a user who's QA Toolbar is so light it is hard to see. I have tried to adjust all of his settings and it still looks washed out like it is faded back. Like it does for the inactive icons but with all of them yet lighter...

View 3 Replies View Related

AutoCAD 2013 :: Whitened Quick Access Toolbar

May 18, 2012

I made my first installation of Autocad 2013 on this computer. Unfortunately the quick access toolbar appears whitened as you can see in the attached picture.

View 8 Replies View Related

AutoCAD 2010 :: Quick Access Toolbar Customization

Feb 13, 2013

I added the Layer group (On / Off Freeze Lock / Unlock and Layer name) to the Quick Access Toolbar. I only see the first part name of the layer. Is there a way to stretch this part of the group in the QAT tool bar so I can see the more of the layer name? The partial name and layer color may be a sufficient clue as to the whole layer name over time. Would be nice to see the whole name until then.

View 1 Replies View Related

AutoCAD 2010 :: Quick Access Toolbar Color?

Jul 22, 2012

How to change the color of the quick access toolbar?  Mine is SO hard to see!  This is on a Windows 7 64-bit OS.

View 5 Replies View Related

AutoCAD Architecture :: Quick Access Toolbar Missing

Apr 8, 2011

I have downloaded ARCH 2011 (Student Version) several times and the Quick Access Toolbar does not appear above the ribbon. The ribbon tabs are also incomplete.

SHOWING ONLY - HOME, INSERT, ANNOTATE, VIEW and MANAGE.

How do I activate the Q. A. Toolbar? And why are my ribbon tabs incomplete?

View 1 Replies View Related

AutoCAD Architecture :: Quick Access Toolbar Invisible

Sep 24, 2013

Recently I installed ACA2013 on a new Windows 8 64 proffesional laptop.

Installed ACA 2013 and the SP2.

But my quick access toolbar is completly white. If I stay over the toolbar the tips show up and when I click them they function. But I cannot see what I click on!

I already tried reinstalling ACA2013, but nothing works.

View 1 Replies View Related

AutoCAD Inventor :: Add Macros To Quick Access Toolbar

Sep 21, 2012

We have a problem at work with buttons disappearing from the quick access toolbar.

I already looked around and it is being said that it is a bug, wich can be fixed with a service pack. I work in a big company, and they are refusing to do the service pack.

So the next best thing I can figure is to make a macro, wich will add all the macros I want to the quick access toolbar in assembly level, part level, sketch level and drawing level.

View 1 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Dotted Pairs Control Transparency

Oct 17, 2012

I am using entmake to create a line but I want the transparency to be a percentage.  I know that the (440 . xxxxxx) dotted pair controls transparency.  I don't understand the number that has to be used with 440. What numbers to put in for different transparencies?

View 9 Replies View Related

AutoCAD Visual LISP / AutoLISP :: Page UP/DN Control Key For Menu Accelerators?

Sep 18, 2001

I doubt there is since they aren't listed in the control keys list in the help file, but it doesn't hurt to ask. I'm trying to simulate the CTRL+PG UP/DN feature of Excel to switch between tabs. I'm might just have to 'up' and 'down' arrow keys.

View 8 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved