Author Topic: Slides. What a ride.  (Read 2231 times)

0 Members and 1 Guest are viewing this topic.

daron

  • Guest
Slides. What a ride.
« on: September 09, 2004, 10:39:21 AM »
Okay, They use slide libraries here and they've modified the acad menu to do it. I'd like to separate these into a custom menu. Without using add-on's, I need someone to explain the ropes of how to get a slide library into a pull-down and to show up correctly. Sorry, don't have much more info than that, except the start of the image menu on it:
Code: [Select]
***IMAGE
**IMAGE_MOBJECTS
[Select Object]
[info here]

When I load that with its appended menu code, there is no pull-down or anything that invoke the slides with. I haven't worked with slides since school.

M-dub

  • Guest
Slides. What a ride.
« Reply #1 on: September 09, 2004, 10:51:38 AM »
Here are some chunks of our menu.  I created it a long time ago, so if I were to do it again, I'd likely do it a little differently.  This works though.

Code: [Select]
***MENUGROUP=TerraACAD

Code: [Select]
***POP1
**[&Terra Blocks]
//[&Borders...]^c^c$I=TerraACAD.image_BORDERS $I=*
[&Controllers...]^c^c$I=TerraACAD.image_CONTROLLERS $I=*
[&Electrical...]^c^c$I=TerraACAD.image_ELEC $I=*
[&Instrument Bubbles...]^c^c$I=TerraACAD.image_Bubbles $I=*


Code: [Select]
***IMAGE
**IMAGE_CONTROLLERS
[TERRA - Controllers...]
[TERRA(12,12)]^C^C-INSERT O:/DRAWINGS/Menus-Blocks/CONTROLLERS/12 \DRAG ;;;
[TERRA(14,14)]^C^C-INSERT O:/DRAWINGS/Menus-Blocks/CONTROLLERS/14 \DRAG ;;;
[TERRA(16,16)]^C^C-INSERT O:/DRAWINGS/Menus-Blocks/CONTROLLERS/16 \DRAG ;;;


What I did was to first create a script file to create the slides...

open C:\directory\drawing.dwg zoom e mslide close
open C:\directory\drawin2.dwg zoom e mslide close
etc...

Once the slides are created, you need to make sure that slidelib.exe is in C:\directory (the directory your slides are in)
As seen in the AutoCAD help file, go to dos prompt, and while in the directory, type:

dir *.sld /b > slidelist

Then, with that list in the same directory, type:

slidelib libraryname < slidelist

You then need to put 'libraryname.slb' in your AutoCAD Support directory and add the definition to your menu.

Being an advanced user, I probably don't need to go into a whole lot of detail, but if you need any more help, by all means, let me know.

Hope that helps!
Mike

M-dub

  • Guest
Slides. What a ride.
« Reply #2 on: September 09, 2004, 10:53:42 AM »
You also have to add your mnl file in the support directory and make sure you haven't duplicated a Menugroup name....

M-dub

  • Guest
Slides. What a ride.
« Reply #3 on: September 09, 2004, 11:27:08 AM »

daron

  • Guest
Slides. What a ride.
« Reply #4 on: September 10, 2004, 08:24:21 AM »
Yes, you have. I'd love to use it. Maybe I'll have to pull up some info and ship it to our IT guy. BTW, is there a reason I don't see images? You might try changing those to url's instead.

P.S. Thanks. I'll try to work this out.

M-dub

  • Guest
Slides. What a ride.
« Reply #5 on: September 10, 2004, 08:27:33 AM »
>BTW, is there a reason I don't see images? You might try changing those to url's instead.

I was wondering about that as well...What's going on?  What do I have to put in there as a url now that the lily pond is password protected?