Results 1 to 5 of 5

Thread: Stylization/LISP Error/Taskbar

  1. #1
    I could stop if I wanted to
    Join Date
    2003-03
    Location
    Alberta
    Posts
    260
    Login to Give a bone
    0

    Default Stylization/LISP Error/Taskbar

    1)
    Can any body tell me how to keep the Map 3D stylization while zooming unlinked? I can toggle it with the little lock icon on the task bar but when I start a new drawing or open an existing one it is turned back on. It seems to wreak havoc with my Undo when it is turned on.

    2)
    Also sometimes we've been getting this error:
    Assignment to protected symbol:
    C:AI_MOLC
    Enter break loop?

    How can I remedy this? I am assuming that we have a LISP function defined the same as an Autodesk function but have not been able to correct this yet. Can you tell me if I'm on the right track?

    3)
    How can I change my taskbar back to the old style. Seams people around here don't really like the Tool flyout, they would rather have the toggles listed across the bottom as in 2005. Also everytime we click it it toggles SNAP so you have to click it again to set the SNAP back.
    Attached Images Attached Images

  2. #2
    Certifiable AUGI Addict
    Join Date
    2001-03
    Location
    Tallahassee, FL USA
    Posts
    3,658
    Login to Give a bone
    0

    Default Re: Stylization/LISP Error/Taskbar

    Quote Originally Posted by bweir
    1)
    Can any body tell me how to keep the Map 3D stylization while zooming unlinked? I can toggle it with the little lock icon on the task bar but when I start a new drawing or open an existing one it is turned back on. It seems to wreak havoc with my Undo when it is turned on.
    Haven't a clue. Drives me nuts!
    2)
    Also sometimes we've been getting this error:
    Assignment to protected symbol:
    C:AI_MOLC
    Enter break loop?
    How can I remedy this? I am assuming that we have a LISP function defined the same as an Autodesk function but have not been able to correct this yet. Can you tell me if I'm on the right track?
    MOLC = Make Object Layer Current routine from Autocad = LAYMCUR in current version. Found oddly enough in acmap.mnl, but no longer needed since the Express Layer Tools are built into Autocad now. It must be defined somewhere else as well. Loading any old Bonus Tools?
    3)
    How can I change my taskbar back to the old style. Seams people around here don't really like the Tool flyout, they would rather have the toggles listed across the bottom as in 2005. Also everytime we click it it toggles SNAP so you have to click it again to set the SNAP back.
    Try this:
    Code:
    ; 2D / 3D Statusbar toggle for Autodesk Map 3D 2007
    ; BY: Tom Beauford - 7/11/2005
    ; Tombu@LeonCountyFL.gov
    ; LEON COUNTY PUBLIC WORKS SURVEY & R/W SECTION
    ;Menu item: ^P(or TabBar (load "Statusbar.lsp"));(Statusbar)
    ;=============================================================
    (defun Statusbar ( / pro vlt newlen strCaption)
      (setvar "cmdecho" 0)
      (setq pro (getvar "PRODUCT")
    		vlt (substr (getvar "_VERNUM") 1 1)
    		strCaption (vla-get-Caption (vlax-get-acad-object)); Thanks Matt
    		newlen (vl-string-search " - [" strCaption)
    		strCaption (substr strCaption 1 newlen)
      )
      (if(= strCaption "Autodesk Map 3D 2007")
    	(if(= 0(vl-registry-read (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Applications\\AcMap") "Statusbar"))
    	  (progn
    		(vl-registry-write (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Applications\\AcMap") "Statusbar" 1)
    		(alert "\nStatusbar option will be set to Map 3D 2007 on restart of Autocad.")
    	  );progn
    	  (progn
    		(vl-registry-write (strcat "HKEY_CURRENT_USER\\" (vlax-product-key) "\\Applications\\AcMap") "Statusbar" 0)
    		(alert "\nStatusbar option will be set to 2D Autocad 2007 on restart of Autocad.")
    	  );progn
    	);if
    	(alert "Will only work with \"Autodesk Map 3D 2007\".")
      );if
      (princ)
    )

  3. #3
    I could stop if I wanted to
    Join Date
    2003-03
    Location
    Alberta
    Posts
    260
    Login to Give a bone
    0

    Default Re: Stylization/LISP Error/Taskbar

    Thanks for the help.

    I don't think that we're loading any old Express Tools but there could be some sitting around (we've got oodles of LISP files no body knows what they do, delete them I say). Thanks for the LISP routine to change the Statusbar, I just used regedit and did it my self though.

    Still have to figure out that Stylization thingy :[

  4. #4
    Member Allen Quedawg392's Avatar
    Join Date
    2005-08
    Location
    Raleigh NC
    Posts
    34
    Login to Give a bone
    0

    Thumbs up Re: Stylization/LISP Error/Taskbar

    Quote Originally Posted by bweir View Post
    Thanks for the help.

    I don't think that we're loading any old Express Tools but there could be some sitting around (we've got oodles of LISP files no body knows what they do, delete them I say). Thanks for the LISP routine to change the Statusbar, I just used regedit and did it my self though.

    Still have to figure out that Stylization thingy :[

    I am having the same problem with stylization thingy.. I can not customize the zoom number manually with the viewport? I could do it before but now only with the scroll button???

  5. #5
    Member Allen Quedawg392's Avatar
    Join Date
    2005-08
    Location
    Raleigh NC
    Posts
    34
    Login to Give a bone
    0

    Default Re: Stylization/LISP Error/Taskbar

    I am using Map 3D 2013. I can not doing anything to the padlock whether in a dwg or dwt???stylization link problem.jpg

Similar Threads

  1. Windows 7 - Taskbar on the right
    By Wanderer in forum Operating Systems
    Replies: 9
    Last Post: 2013-07-18, 04:29 PM
  2. Taskbar problem
    By Gigliano70 in forum AutoCAD General
    Replies: 23
    Last Post: 2008-04-01, 09:37 PM
  3. Unlock Map Stylization / MAPUICMDPICKSET
    By bweir in forum AutoCAD Map 3D - General
    Replies: 2
    Last Post: 2006-11-01, 08:41 PM
  4. Opening drawings in windows taskbar
    By blanni in forum ACA General
    Replies: 9
    Last Post: 2006-06-05, 08:43 PM
  5. Multiple Taskbar Items
    By slayer913 in forum AutoCAD General
    Replies: 3
    Last Post: 2004-08-25, 01:15 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •