ah that's a bit of a downer then.
okay final question because i cant see the forum post about this; but as with a normal requirement element where if i have tags selected, any and all tags that are added will be shown on the element. how do i execute this in shape script?
e.g. the base tag commonly used is id, but the tag area / the tag itself is invisible until it has a value. and if i add any new tags using the button on top of the tag interface, it will do the same. is there a command that i am missing for shape script that is in effect "if(hasproperty("istagged")){ print("#allTAG#");
so far my script is this:
shape main{
setfillcolor(255,180,70);
setfontcolor(50,50,50);
roundrect(0,0,100,100,20,20);
addsubshape("stereotype",100,10,0,0);
addsubshape("namezone",100,10,0,10);
DefSize(100,80);
addsubshape("tagzone",100,50,0,30);
shape stereotype{
h_align = "center";
print("<<#stereotype#>>");
}
shape namezone{
h_align = "center";
editablefield = "name";
bold = "true";
print("#name#");
}
shape tagzone{
h_align = "left";
if (hastag("id"))
{
moveto(0,0);
lineto(100,0);
print("#TAG#");
}
}
}
but i don't know how to get the tagzone to behave the same as a requirement element would if that makes sense? surely there is a command as i've suggested above otherwise regular requirements elements wouldn't print new custom made tags that were added on. (i would show a picture but i have no idea how to add jpeg attachments to this forum interface because the attachments + doesn't give me the option.......