Author Topic: Pop-up chart/table lisp routine  (Read 6153 times)

0 Members and 1 Guest are viewing this topic.

CAB

  • Global Moderator
  • Seagull
  • Posts: 10401
Re: Slide routine
« Reply #15 on: October 25, 2004, 12:40:00 PM »
Quote from: cparnell
CAB:
I tried your routine and could not get it to work. I got "no function definition: SLIDEDISPLAY" at the command line.

Did you load the main routine I posted? The one I modified. This one:
http://theswamp.org/phpBB2/viewtopic.php?p=19342#19342

Make sure it is in the path and try this and see what you get.
Code: [Select]
(defun c:3slides()
  (if (not SlideDisplay) (load "SlideDisplay.lsp"))
  (SlideDisplay "Slide1")
  (SlideDisplay "Slide2")
  (SlideDisplay "Slide3")
  (princ)
)
I've reached the age where the happy hour is a nap. (°¿°)
Windows 10 core i7 4790k 4Ghz 32GB GTX 970
Please support this web site.

cparnell

  • Guest
Pop-up chart/table lisp routine
« Reply #16 on: October 26, 2004, 08:50:04 AM »
CAB:

I did not know that I needed to load the SlideDisplay.lsp routine. I have now loaded it and it works.

THANK YOU MUCH.

I appreciate your time.