AutoCAD Express Tools
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
*Dave Drahn
2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
2063 Views, 7 Replies
03-10-2010 02:17 PM
TFRAMES command in 2010 doesn't seem to toggle
image frames. It just continuously turns them off. Anyone else
notice this or is it just me?
image frames. It just continuously turns them off. Anyone else
notice this or is it just me?
*Dean Saadallah
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-11-2010 05:59 AM in reply to:
*Dave Drahn
It's old and no longer useful: FRAME system variable, usage explained in
HELP in 2010. A little lisp and you can get it to toggle as you wish.
If you want to use this with Wipeouts, lisp is your friend too.
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
HELP in 2010. A little lisp and you can get it to toggle as you wish.
If you want to use this with Wipeouts, lisp is your friend too.
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
*Dave Drahn
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-11-2010 02:07 PM in reply to:
*Dave Drahn
Thanks Dean.
Problem is we've temporarily got people on 2008 and 2010 and one of our
shortcuts simply runs TFRAMES toggle (in 08). That's still available in
2010 but apparently doesn't work right so I modofied the macro to
(if (= (getvar IMAGEFRAME) 0)
(setvar IMAGEFRAME 1)
(setvar IMAGEFRAME 0)
)
as a toggle. But that doesn't work in 08 because IMAGEFRAME is a command in
08 but not a variable. Now looks like IMAGEFRAME (and as you point out,
also FRAME) is a var in 10 but not 08. So I may be able to use a command
toggle for both but can't simply test for the current var value the same way
in both anymore....
Not a huge deal, just have 2 macros now for it in the transition. An
inconvenient bug I think.
"Dean Saadallah" wrote in message
news:6352902@discussion.autodesk.com...
> It's old and no longer useful: FRAME system variable, usage explained in
> HELP in 2010. A little lisp and you can get it to toggle as you wish.
>
> If you want to use this with Wipeouts, lisp is your friend too.
>
> --
> Dean Saadallah
> http://LTisACAD.blogspot.com
> --
Problem is we've temporarily got people on 2008 and 2010 and one of our
shortcuts simply runs TFRAMES toggle (in 08). That's still available in
2010 but apparently doesn't work right so I modofied the macro to
(if (= (getvar IMAGEFRAME) 0)
(setvar IMAGEFRAME 1)
(setvar IMAGEFRAME 0)
)
as a toggle. But that doesn't work in 08 because IMAGEFRAME is a command in
08 but not a variable. Now looks like IMAGEFRAME (and as you point out,
also FRAME) is a var in 10 but not 08. So I may be able to use a command
toggle for both but can't simply test for the current var value the same way
in both anymore....
Not a huge deal, just have 2 macros now for it in the transition. An
inconvenient bug I think.
"Dean Saadallah"
news:6352902@discussion.autodesk.com...
> It's old and no longer useful: FRAME system variable, usage explained in
> HELP in 2010. A little lisp and you can get it to toggle as you wish.
>
> If you want to use this with Wipeouts, lisp is your friend too.
>
> --
> Dean Saadallah
> http://LTisACAD.blogspot.com
> --
*Dean Saadallah
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-12-2010 05:53 AM in reply to:
*Dave Drahn
You can lisp "something new" called TFRAMES if that makes everyone happy, in
both programs.
Don't let a command name be the only thing holding you back from using the
program the way you want: it's the reason you dropped a ton of money on it.
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
both programs.
Don't let a command name be the only thing holding you back from using the
program the way you want: it's the reason you dropped a ton of money on it.
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
*Dave Drahn
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-12-2010 03:33 PM in reply to:
*Dave Drahn
no duh.
just trying to easily get the same thing to work in both versions. TFRAMES
is apparently still a command in 2010, it just doesn't work correctly.
"Dean Saadallah" wrote in message
news:6353755@discussion.autodesk.com...
> You can lisp "something new" called TFRAMES if that makes everyone happy,
> in both programs.
>
> Don't let a command name be the only thing holding you back from using the
> program the way you want: it's the reason you dropped a ton of money on
> it.
>
> --
> Dean Saadallah
> http://LTisACAD.blogspot.com
> --
just trying to easily get the same thing to work in both versions. TFRAMES
is apparently still a command in 2010, it just doesn't work correctly.
"Dean Saadallah"
news:6353755@discussion.autodesk.com...
> You can lisp "something new" called TFRAMES if that makes everyone happy,
> in both programs.
>
> Don't let a command name be the only thing holding you back from using the
> program the way you want: it's the reason you dropped a ton of money on
> it.
>
> --
> Dean Saadallah
> http://LTisACAD.blogspot.com
> --
*Dave Drahn
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-18-2010 01:15 PM in reply to:
*Dave Drahn
Great. Now it seems that the IMAGEFRAME var
in 2010 (not a var in 08) does not control wipeout frames...
in 2010 (not a var in 08) does not control wipeout frames...
style="BORDER-LEFT: #000000 2px solid; PADDING-LEFT: 5px; PADDING-RIGHT: 0px; MARGIN-LEFT: 5px; MARGIN-RIGHT: 0px"
dir=ltr>
"Dave Drahn" <ddrahnATpacewaterDAHTcom> wrote in message
href="news:6352569@discussion.autodesk.com">news:6352569@discussion.autodesk.com...
TFRAMES command in 2010 doesn't seem to toggle
image frames. It just continuously turns them off. Anyone else
notice this or is it just me?
*Dean Saadallah
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
03-22-2010 02:33 PM in reply to:
*Dave Drahn
ET development stopped a while back.
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
--
Dean Saadallah
http://LTisACAD.blogspot.com
--
Re: 2010 ET Tframes not toggling
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
06-07-2011 11:42 AM in reply to:
*Dean Saadallah
Restarting AutoCAD seems to bring the TFRAMES toggle back to life.
-Sona
Allisona Greenberg | SAIC Energy, Environment & Infrastructure, LLC
Landscape Architect & CAD Manager | Water, Environment & Transportation
Landscape Architect & CAD Manager | Water, Environment & Transportation
