3d Object
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-26 09:05 PM
‎2007-02-26
09:05 PM
7 REPLIES 7

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-26 10:41 PM
‎2007-02-26
10:41 PM
Give this a try:
For a one-off, explode the object, keep only symbol.
For many, delete the 3D script in the object.
For a one-off, explode the object, keep only symbol.
For many, delete the 3D script in the object.
Dwight Atkinson
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-26 11:07 PM
‎2007-02-26
11:07 PM
Thanks Dwight. Deleting the 3d script was the way to go.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-28 08:56 AM
‎2007-02-28
08:56 AM
Next time you need to do this, you might want to consider to place an END command at the very beginning of the 3D Script.
The END command simply finishes the execution of the script.
This way you will still have your 3D Scrip in case you need it in the future.
Another option is to select everything in the 3D Script and comment them all out.
Of course, if you are certain you will never need the 3D in the future, deletion is the best answer.
The END command simply finishes the execution of the script.
This way you will still have your 3D Scrip in case you need it in the future.
Another option is to select everything in the 3D Script and comment them all out.
Of course, if you are certain you will never need the 3D in the future, deletion is the best answer.
Loving Archicad since 1995 - Find Archicad Tips at x.com/laszlonagy
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-28 09:06 AM
‎2007-02-28
09:06 AM
Yes, but, for the beginner concerned with not messing up, it would be easier to duplicate the object and delete the 3D script, perhaps calling the new object "symbol only," rather than to start messing with the script as you suggest.
There's plenty of ways to make mistakes with your approach if the user, as our poster most certainly is, NOT an expert user.
There's plenty of ways to make mistakes with your approach if the user, as our poster most certainly is, NOT an expert user.
Dwight Atkinson

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-28 09:12 AM
‎2007-02-28
09:12 AM
Yes, your suggestion, too, is a viable option.
Loving Archicad since 1995 - Find Archicad Tips at x.com/laszlonagy
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28
AMD Ryzen9 5900X CPU, 64 GB RAM 3600 MHz, Nvidia GTX 1060 6GB, 500 GB NVMe SSD
2x28" (2560x1440), Windows 10 PRO ENG, Ac20-Ac28
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-02-28 02:31 PM
‎2007-02-28
02:31 PM
you could also open the library part, add a boolean parameter called "show3d" (or something), and nest all of the 3D script inside an IF/THEN statement:
IF show3d THEN
<enter 3d script here>
ENDIF
Then you have the option of turning the 3D on or off...
IF show3d THEN
<enter 3d script here>
ENDIF
Then you have the option of turning the 3D on or off...
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎2007-03-01 09:38 PM
‎2007-03-01
09:38 PM
All good ideas, thanks guys!!