Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 07/04/2008 at 10:01, xxxxxxxx wrote:
User Information: Cinema 4D Version: 10.5 Platform: Language(s) : C.O.F.F.E.E ;
---------I see that there is a function GetFirstTag() but how can I search through the other tags on an object?
On 07/04/2008 at 10:05, xxxxxxxx wrote:
tag->GetPrev() and tag->GetNext().
var tag; for (tag = op->GetFirstTag(); tag; tag = tag->GetNext()) {...}
On 07/04/2008 at 10:46, xxxxxxxx wrote:
ok that makes sense, so it's like another 2D list. Thanks Robert