Visual LISP, AutoLISP and General Customization
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

-DIMSTYLE opens also AutoCAD Text Window????

6 REPLIES 6
Reply
Message 1 of 7
Anonymous
322 Views, 6 Replies

-DIMSTYLE opens also AutoCAD Text Window????

Hi all,

We made a macro for a button in AutoCAD (LT) 2000i. The macro =

^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear

The macro works but the AutoCAD text window opens (same as pushing F2). It
appears with the -dimstyle command. This is very annoing because then you
can't easily place the dimlinear.

Does anybody out there know what I can do with the macro that the AutCAD
Text Window NOT appears?

Thanks in advance,

John van Eeten
6 REPLIES 6
Message 2 of 7
Anonymous
in reply to: Anonymous

I'm sure there is a way to keep it from popping up...
(Which I don't know of right now)

but until you figure it out...

add
(graphscr)
to the end of your macro to get back to the drawing.

Hope this helps...

Thomas Smith


"J. van Eeten" wrote in message
news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> Hi all,
>
> We made a macro for a button in AutoCAD (LT) 2000i. The macro =
>
> ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
>
> The macro works but the AutoCAD text window opens (same as pushing F2). It
> appears with the -dimstyle command. This is very annoing because then you
> can't easily place the dimlinear.
>
> Does anybody out there know what I can do with the macro that the AutCAD
> Text Window NOT appears?
>
> Thanks in advance,
>
> John van Eeten
>
>
Message 3 of 7
Anonymous
in reply to: Anonymous

Will that work with LT, since it has no lisp support?

-Jason

Thomas Smith wrote:
>
> I'm sure there is a way to keep it from popping up...
> (Which I don't know of right now)
>
> but until you figure it out...
>
> add
> (graphscr)
> to the end of your macro to get back to the drawing.
>
> Hope this helps...
>
> Thomas Smith
>
> "J. van Eeten" wrote in message
> news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> > Hi all,
> >
> > We made a macro for a button in AutoCAD (LT) 2000i. The macro =
> >
> > ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
> >
> > The macro works but the AutoCAD text window opens (same as pushing F2). It
> > appears with the -dimstyle command. This is very annoing because then you
> > can't easily place the dimlinear.
> >
> > Does anybody out there know what I can do with the macro that the AutCAD
> > Text Window NOT appears?
> >
> > Thanks in advance,
> >
> > John van Eeten
> >
> >
Message 4 of 7
Anonymous
in reply to: Anonymous

Add 'GRAPHSCR (note the ' to make the command transparent) to the macro:

^C^C-dimstyle;r;lpijl;'graphscr;-layer;s;010_maatvoering;;dimlinear



--
Dean Saadallah
www.pendean.com

--
"Jason Piercey" wrote in message
news:3B3B27CE.B22BE9C3@atreng.com...
> Will that work with LT, since it has no lisp support?
>
> -Jason
>
> Thomas Smith wrote:
> >
> > I'm sure there is a way to keep it from popping up...
> > (Which I don't know of right now)
> >
> > but until you figure it out...
> >
> > add
> > (graphscr)
> > to the end of your macro to get back to the drawing.
> >
> > Hope this helps...
> >
> > Thomas Smith
> >
> > "J. van Eeten" wrote in message
> > news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> > > Hi all,
> > >
> > > We made a macro for a button in AutoCAD (LT) 2000i. The macro =
> > >
> > > ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
> > >
> > > The macro works but the AutoCAD text window opens (same as pushing
F2). It
> > > appears with the -dimstyle command. This is very annoing because then
you
> > > can't easily place the dimlinear.
> > >
> > > Does anybody out there know what I can do with the macro that the
AutCAD
> > > Text Window NOT appears?
> > >
> > > Thanks in advance,
> > >
> > > John van Eeten
> > >
> > >
Message 5 of 7
Anonymous
in reply to: Anonymous

It's no lisp, but a macro, also customization, i think.

John

"Jason Piercey" wrote in message
news:3B3B27CE.B22BE9C3@atreng.com...
> Will that work with LT, since it has no lisp support?
>
> -Jason
>
> Thomas Smith wrote:
> >
> > I'm sure there is a way to keep it from popping up...
> > (Which I don't know of right now)
> >
> > but until you figure it out...
> >
> > add
> > (graphscr)
> > to the end of your macro to get back to the drawing.
> >
> > Hope this helps...
> >
> > Thomas Smith
> >
> > "J. van Eeten" wrote in message
> > news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> > > Hi all,
> > >
> > > We made a macro for a button in AutoCAD (LT) 2000i. The macro =
> > >
> > > ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
> > >
> > > The macro works but the AutoCAD text window opens (same as pushing
F2). It
> > > appears with the -dimstyle command. This is very annoing because then
you
> > > can't easily place the dimlinear.
> > >
> > > Does anybody out there know what I can do with the macro that the
AutCAD
> > > Text Window NOT appears?
> > >
> > > Thanks in advance,
> > >
> > > John van Eeten
> > >
> > >
Message 6 of 7
Anonymous
in reply to: Anonymous

Thanks, that's better!

John van Eeten


"Dean Saadallah" wrote in message
news:1A26570D299F13E2747A7FD6E85C1055@in.WebX.maYIadrTaRb...
> Add 'GRAPHSCR (note the ' to make the command transparent) to the macro:
>
> ^C^C-dimstyle;r;lpijl;'graphscr;-layer;s;010_maatvoering;;dimlinear
>
>
>
> --
> Dean Saadallah
> www.pendean.com
>
> --
> "Jason Piercey" wrote in message
> news:3B3B27CE.B22BE9C3@atreng.com...
> > Will that work with LT, since it has no lisp support?
> >
> > -Jason
> >
> > Thomas Smith wrote:
> > >
> > > I'm sure there is a way to keep it from popping up...
> > > (Which I don't know of right now)
> > >
> > > but until you figure it out...
> > >
> > > add
> > > (graphscr)
> > > to the end of your macro to get back to the drawing.
> > >
> > > Hope this helps...
> > >
> > > Thomas Smith
> > >
> > > "J. van Eeten" wrote in message
> > > news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> > > > Hi all,
> > > >
> > > > We made a macro for a button in AutoCAD (LT) 2000i. The macro =
> > > >
> > > > ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
> > > >
> > > > The macro works but the AutoCAD text window opens (same as pushing
> F2). It
> > > > appears with the -dimstyle command. This is very annoing because
then
> you
> > > > can't easily place the dimlinear.
> > > >
> > > > Does anybody out there know what I can do with the macro that the
> AutCAD
> > > > Text Window NOT appears?
> > > >
> > > > Thanks in advance,
> > > >
> > > > John van Eeten
> > > >
> > > >
>
>
Message 7 of 7
Anonymous
in reply to: Anonymous

(graphscr) is a lisp function.

-Jason

"J. van Eeten" wrote:
>
> It's no lisp, but a macro, also customization, i think.
>
> John
>
> "Jason Piercey" wrote in message
> news:3B3B27CE.B22BE9C3@atreng.com...
> > Will that work with LT, since it has no lisp support?
> >
> > -Jason
> >
> > Thomas Smith wrote:
> > >
> > > I'm sure there is a way to keep it from popping up...
> > > (Which I don't know of right now)
> > >
> > > but until you figure it out...
> > >
> > > add
> > > (graphscr)
> > > to the end of your macro to get back to the drawing.
> > >
> > > Hope this helps...
> > >
> > > Thomas Smith
> > >
> > > "J. van Eeten" wrote in message
> > > news:E8EE320FE89E83BA5CD0A00B1E7A12CD@in.WebX.maYIadrTaRb...
> > > > Hi all,
> > > >
> > > > We made a macro for a button in AutoCAD (LT) 2000i. The macro =
> > > >
> > > > ^C^C-dimstyle;r;lpijl;-layer;s;010_maatvoering;;dimlinear
> > > >
> > > > The macro works but the AutoCAD text window opens (same as pushing
> F2). It
> > > > appears with the -dimstyle command. This is very annoing because then
> you
> > > > can't easily place the dimlinear.
> > > >
> > > > Does anybody out there know what I can do with the macro that the
> AutCAD
> > > > Text Window NOT appears?
> > > >
> > > > Thanks in advance,
> > > >
> > > > John van Eeten
> > > >
> > > >

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report

”Boost