Results 1 to 9 of 9

Thread: ucsfollow not sticking in modelspace

  1. #1
    Active Member cblackford's Avatar
    Join Date
    2004-08
    Posts
    83
    Login to Give a bone
    0

    Default ucsfollow not sticking in modelspace

    Has anyone else had a problem with ucsfollow not sticking in modelspace since upgrading to 2008? IE: Set ucsfollow to 1, save and exit, go back in and it's reverted back to zero. We don't have any startup rotines running that would cause this so I am a bit of a loss.

    Chuck

  2. #2
    100 Club jbayne's Avatar
    Join Date
    2015-12
    Location
    Standing in the corner just listening
    Posts
    165
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    Chuck,
    Just off the top of my head it sounds as though it is changing with a profile load. The icon on the desktop has a profile that it loads when you start software. The default is /p "AutoCAD" . If you create a different profile with the change already made then make sure icon properties is set to load that profile.
    I am not sure this is the culprit just one of the things you can check.
    Jim

  3. #3
    Active Member cblackford's Avatar
    Join Date
    2004-08
    Posts
    83
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    Quote Originally Posted by jbayne View Post
    Chuck,
    Just off the top of my head it sounds as though it is changing with a profile load. The icon on the desktop has a profile that it loads when you start software. The default is /p "AutoCAD" . If you create a different profile with the change already made then make sure icon properties is set to load that profile.
    I am not sure this is the culprit just one of the things you can check.
    Jim
    Thanks for the reply Jim. Unfortunately we're not loading any profiles. Also, the UCSfollow variable is susposed to be save in the file. I can't figure it out.

  4. #4
    Active Member cblackford's Avatar
    Join Date
    2004-08
    Posts
    83
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    For the benefit of anyone doing a future search on this issue. Here is the reply from Autodesk support on this issue:

    Chuck,

    I can confirm that this is a known issue in our 2008 software. The problem is scheduled to fixed in the next major release of AutoCAD.
    Unfortunately, I do not have a workaround that will maintain the UCSFOLLOW value in model space between drawing sessions.
    Please let me know if you have any questions.

    Best Regards,


    Autodesk Support Team

  5. #5
    Certifiable AUGI Addict ccowgill's Avatar
    Join Date
    2004-08
    Location
    Iron Station, NC
    Posts
    3,198
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    Quote Originally Posted by cblackford View Post
    For the benefit of anyone doing a future search on this issue. Here is the reply from Autodesk support on this issue:

    Chuck,

    I can confirm that this is a known issue in our 2008 software. The problem is scheduled to fixed in the next major release of AutoCAD.
    Unfortunately, I do not have a workaround that will maintain the UCSFOLLOW value in model space between drawing sessions.
    Please let me know if you have any questions.

    Best Regards,


    Autodesk Support Team
    that sounds alot like the reply we got in regards to rotating blocks with attributes using the properties palette

  6. #6
    Member
    Join Date
    2007-10
    Posts
    2
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    I have the same problem.
    When i change ucsfollow setting from 0 to 1. And i leave modelspace to paperspace, when i come back in model. The setting is back on 0! Very frustreating. I have tride to change the acadvar.ini file. I can change this but, in the first drawing it is 1. But when i change model/paper again its back to 0.

    Is this a bug? Or a setting in cad?

  7. #7
    Active Member cblackford's Avatar
    Join Date
    2004-08
    Posts
    83
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    It's a known bug in 2008 that did not get fixed with SP1.

  8. #8
    I could stop if I wanted to CadDog's Avatar
    Join Date
    2005-06
    Location
    So Ca
    Posts
    439
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    For now I have my AcadDoc.lsp run and change it to "1" when a drawing is open...

    Fixed...



    Thanks because I did not notice it and
    no user told me they were having any problems with it...

    (setvar "ucsfollow" 1)

    Also, i have used a program
    which along with changing space
    also resets ltscale along with a few other things
    that AutoCAD have always forgot to do...

    We don't use those s2s tabs at the bottom of views. We use this TT for years.
    Here is a look.

    (defun c:TT ()(Setvar "cmdecho" 0);1=arch 2=Eng 4=MM 6=Meters
    ;(if (=(getvar "userr3")0)(progn(Alert "\nYou Need to run DDS\n")(exit)))
    (if (=(getvar "userr3")0)(progn (load "DH-dds2") (c:dds2) ))
    (if (= (getvar "tilemode") 1) ;if your in Model Space
    (progn
    (cond
    ;((and (= (getvar "USERR3") 0))(progn (command "userr3" "1")))
    ((and (= (getvar "USERI1") 0)) ; imperial
    (progn
    (command "ltscale" "1")
    (command "setvar" "psltscale" "1")
    (command "textsize" ddsth)
    (command "DIMSCALE" "1")
    (command "DimAssoc" "1")
    (if (=(getvar "userr5")1)(progn (command "insunits" "1")))
    (if (=(getvar "userr5")2)(progn (command "insunits" "1")))
    (if (=(getvar "userr5")4)(progn (command "insunits" "4")))
    (if (=(getvar "userr5")6)(progn (command "insunits" "4"))); Added for 2006 insertion blocks

    ))
    ((and (= (getvar "USERI1") 2)) ; metric Milli
    (progn
    (command "ltscale" "25.4")
    (command "setvar" "psltscale" "1")
    (command "textsize" "3")
    (command "DimAssoc" "1")
    (command "dimscale" "1")))
    );end first cond
    (command "tilemode" "0" "DimAssoc" "1" )(setvar "ucsfollow" 1) ; Switch to Paper Space
    );end first progn
    (progn
    (cond
    ((/= (getvar "USERR2") 0)(command "textsize"(getvar "USERR2") "dimscale"(getvar "USERR4")))
    ((and (= (getvar "USERR1") 0))(progn (command "userr1" "1"))))
    (command "ltscale" (getvar "USERR1")"dimlfac" "1" "tilemode" "1" "DimAssoc" "1")(setvar "ucsfollow" 1)
    (if (=(getvar "userr5")2)(progn (command "insunits" "1")))
    (if (=(getvar "userr5")4)(progn (command "insunits" "4")))
    (if (=(getvar "userr5")6)(progn (command "insunits" "4"))); Switch to Model Space
    );end second cond
    )(Setvar "cmdecho" 1)(princ))
    *****
    BTW: the DH-DDS2 is another program which set all the user vers on the drawing which this program uses to reset each and everytime a user open and/or moves from s2s...

  9. #9
    I could stop if I wanted to
    Join Date
    2004-11
    Location
    Altoona,PA
    Posts
    301
    Login to Give a bone
    0

    Default Re: ucsfollow not sticking in modelspace

    I modified the 'Z axis' button to look like this:

    ^C^Cucsfollow;1;_ucs _z

    Terry

Similar Threads

  1. mleader ucsfollow (multiple rotated ucs)
    By Hammer.John.J in forum AutoCAD Annotation
    Replies: 4
    Last Post: 2010-01-15, 08:26 PM
  2. UCSFollow & BlockEdit bug
    By irneb in forum AutoCAD General
    Replies: 1
    Last Post: 2009-05-20, 05:30 AM
  3. UCSFOLLOW and edit in section
    By kevin.bell.72378 in forum ACA Wish List
    Replies: 3
    Last Post: 2007-12-19, 10:05 AM
  4. UCSFollow variable not saved within drawing
    By nathanh in forum AutoCAD General
    Replies: 6
    Last Post: 2007-09-28, 11:29 AM
  5. Replies: 9
    Last Post: 2007-01-10, 09:28 AM

Posting Permissions

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