THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/03/2008 at 06:12, xxxxxxxx wrote:
User Information:
Cinema 4D Version:
Platform:
Language(s) : C.O.F.F.E.E ;
---------
The code below worked in my plugin when I was using DOCUMENT_CHANGED, but it was continually being called even when I wasn't changing anything in my scene. Why? Then I tried ACTIVE_OBJECT_CHANGED and that doesn't do anything, is this still a flag?
MyDialog::CoreMessage(id,msg)
{
switch (id)
{
case ACTIVE_OBJECT_CHANGED:
//case DOCUMENT_CHANGED:
println("ACT OBJECTIVELY");
pPoints->MovePoints();
break;
}
}