This isn't working and I am not sure why

This isn't working and I am not sure why

Anonymous
Not applicable
189 Views
1 Reply
Message 1 of 2

This isn't working and I am not sure why

Anonymous
Not applicable
Just creating some shortcuts for LDD.

Editing the routines to remove the menu marcos, but still not working at all. I should have known to remove those macro features. Anyhow, when I
try a command, what I get is:

Command: 3s
Loading AecCivilVol...

Command:
Command: 3c
Command:

Here is what things currently look like:

(DEFUN C:zt ()
(cr_mnl)(zz_sdsk '(progn (cg_zoompt)(princ)));LDD
(PRINC))
(DEFUN C:3e ()
(er_mnl)(zz_sdsk '(er_grdplnelev));LDD
(PRINC))
(DEFUN C:3s ()
(er_mnl)(zz_sdsk '(er_grdplnslp));LDD
(PRINC))
(DEFUN C:3c ()
(er_mnl)(zz_sdsk '(er_grdcurb));LDD
(PRINC))
(DEFUN C:3a ()
(er_mnl)(zz_sdsk '(er_grdaddvert));LDD
(PRINC))

Not sure what could be the problem.

Thanks much for any help you can provide.
0 Likes
190 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
(DEFUN C:zt ()
(cr_mnl)
(zz_sdsk '(progn (cg_zoompt)(princ)))
(c:LDD);;note that the menu use of LDD must be revised like so
(PRINC)
)

wrote in message news:5082030@discussion.autodesk.com...
Just creating some shortcuts for LDD.

Editing the routines to remove the menu marcos, but still not working at
all. I should have known to remove those macro features. Anyhow, when I
try a command, what I get is:

Command: 3s
Loading AecCivilVol...

Command:
Command: 3c
Command:

Here is what things currently look like:

(DEFUN C:zt ()
(cr_mnl)(zz_sdsk '(progn (cg_zoompt)(princ)));LDD
(PRINC))
(DEFUN C:3e ()
(er_mnl)(zz_sdsk '(er_grdplnelev));LDD
(PRINC))
(DEFUN C:3s ()
(er_mnl)(zz_sdsk '(er_grdplnslp));LDD
(PRINC))
(DEFUN C:3c ()
(er_mnl)(zz_sdsk '(er_grdcurb));LDD
(PRINC))
(DEFUN C:3a ()
(er_mnl)(zz_sdsk '(er_grdaddvert));LDD
(PRINC))

Not sure what could be the problem.

Thanks much for any help you can provide.
0 Likes