THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 08/10/2009 at 12:49, xxxxxxxx wrote:
User Information:
Cinema 4D Version: r11
Platform: Windows ;
Language(s) : C++ ;
---------
Hi there,
i am struggling with the following code. I found that old thread by kuroyume and updated my code accordingly, but the link field still stays empty.
anyone?
thanks for any help.
cheers,
ello
first:
> `
\> BaseTag *tempTag = clone->MakeTag(Ttargetexpression);
\> tempTag->GetDataInstance()->SetLink(TARGETEXPRESSIONTAG_LINK,target);
\>
`
second:
> `
\> BaseTag *tempTag = clone->MakeTag(Ttargetexpression);
\> AutoAlloc<BaseLink> link;
\> link->SetLink(target);
\> tempTag->SetParameter(DescID(TARGETEXPRESSIONTAG_LINK), GeData(link), NULL);
\>
`