We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2005-10-08 04:55 AM
2005-10-10 10:28 AM
2005-10-10 02:04 PM
Scott wrote:i think you can just open the object and resave as a label.
I have a simple keynote symbol object I use where the keynote number is the object ID, making it very easy to adjust from the info box. I then just use a polyline for the arrow. I am wondering if I can turn this into a label so that the leader line and the keynote symbol are one entity, and if so is there a way to still change the keynote # from the info box.
If this has already been address, please direct me to the correct thread!
2006-07-11 04:12 AM
I have a simple keynote symbol object I use where the keynote number is the object ID, making it very easy to adjust from the info box. I then just use a polyline for the arrow. I am wondering if I can turn this into a label so that the leader line and the keynote symbol are one entity, and if so is there a way to still change the keynote # from the info box.I am having the same question now. Does anyone have the answer to this? I have downloaded several keynote labels and I also have the STS keynotes, but none of them are editable from the Info Box as they are suggested possible. If I change the text to "ID", nothing shows, and the INFO box does not have an ID field for me to edit.
2006-07-11 04:37 AM
Dennis wrote:The ID field may be hidden or toward the bottom (or right) of the info box. Check your work environment settings. The ID should work in most parts of this type.
If I change the text to "ID", nothing shows, and the INFO box does not have an ID field for me to edit.
Text2 0, 0, GLOB_IDYou will also need DEFINE STYLE and SET STYLE statements. The box can be a simple Rect2 or Circle2. Other polygons are a bit trickier (as far as the maths go). The leader can also be tricky if you want something fancy, but once you've got the first bit you should be able to figure it out.
2006-07-11 09:03 AM
The ID field may be hidden or toward the bottom (or right) of the info box. Check your work environment settings. The ID should work in most parts of this type.I checked the work environment settings, and although I found out a new way to customize the info box, it's not there. Actually, the ID field is not even in the Label settings dialog.
If you feel slightly adventurous this is a very easy symbol to script. The key bit is:Although I have almost no idea on how to write a GDL script, what I did do is compare "Shape Label JM9.gsm" and "Shape Tag JM9.gsm" side by side. The label object does not have the ID field to control the value of the text, whereas the tag object does. As far as I could tell, the two objects have identical code lines and seems identical in all aspects, except for the "subtype" designation. I even tried saving the Tag object as a label object after changing this subtype, and the ID field disappears. Therefore, I'm suspecting that this "subtype" has something to do with it, but can't quite figure it out...
Code:
Text2 0, 0, GLOB_ID
You will also need DEFINE STYLE and SET STYLE statements. The box can be a simple Rect2 or Circle2. Other polygons are a bit trickier (as far as the maths go). The leader can also be tricky if you want something fancy, but once you've got the first bit you should be able to figure it out.
2006-07-11 09:15 AM
Dennis wrote:Sorry, I was thinking of a simple symbol part. The label tool has no ID of its own. It uses the ID of the associated element.
I checked the work environment settings, and although I found out a new way to customize the info box, it's not there. Actually, the ID field is not even in the Label settings dialog.