expressions execute
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 14/09/2004 at 16:52, xxxxxxxx wrote:
User Information:
Cinema 4D Version: 8.5
Platform: Windows ;
Language(s) : C.O.F.F.E.E ;---------
hallo SupportiesSeit C4d R8.5 werden Expressions oder auch Plugins nicht mehr ständig im Editor ausgeführt. Man braucht wohl einen nachdrücklichen Anstoß um die Expression zur Ausführung zubewegen.
Wie kann man ein ständiges Refreshen in C4d R8.5 erzwingen. Was muss ich in die Expression bzw. das Plugin mit hinein schreiben ?
Warum ist das nun in C4d R8.5 überhaupt notwendig;
was hat sich geändert ?
Manchmal hilft zwar die Mocca Funktion "Auto.Redraw" teilweise, aber Mocca besitzt ja nicht jeder.Since C4d R8.5 expressions or also Plugins are no longer constantly implemented in the editor. Expression cannot be released any longer so simply.
How can one force a constant Refreshen in C4d R8.5 ?
What have to also write in does I in the Expression and/or the Plugin ?
Why is now in C4d R8.5 at all necessary; what changed in C4d R8.5 ?
Sometimes the Mocca function "Auto.Redraw" partly helps, but Mocca does not possess everyone........
doc->Message (MSG_UPDATE);
GeEventAdd(REDRAW_ALL);
....
do not help therebyGruss
AGWer in deutsch helfen kann, der darf das gern
thx -
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 21/09/2004 at 12:42, xxxxxxxx wrote:
I don't know of any changes to the expression pipeline in 8.5, so it could be a bug. Could you post a small expression that shows the problem?
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 24/09/2004 at 11:20, xxxxxxxx wrote:
hallo
thx for Reply
This Refresh and/or Relaod problem concerns also Plugins.
for example Plugin UV2BMP 1.0
http://www.r-j.de/c4d/uv.htm
here sample expression
[url]http://www.ag-zone.de/service/uvw-texo5a.txt[/url]or even this Expression
-------------
main(doc,op)
{var obj= GetActiveObject(doc);
var ob = doc->FindObject("Kopf Ziel");
if (!ob) return 0;
if (op==obj)
{
doc->SetActiveObject(ob);
return;
}doc->Message(MSG_UPDATE);
}
---------------
actually one would have the Objecte this Expression possesses with a selection, which are passed on selection directly to the Zielobject. however nearly never functions. but why?Fundamentally however express ion like also Plugins any longer continuously in R8.5 are not implemented. Even with a simple print command comprehensibly.
is important this function mode for express ion and Plugins with the Modeling in the editor window to support is
thx for help
Gruss
AGsorry for my bad English
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/10/2004 at 10:09, xxxxxxxx wrote:
You are right that this script doesn't seem to work in 8.5. However, I tried it in 9.0 and it worked alright there. So any bug involved seems to have been fixed.
-
THE POST BELOW IS MORE THAN 5 YEARS OLD. RELATED SUPPORT INFORMATION MIGHT BE OUTDATED OR DEPRECATED
On 12/10/2004 at 15:01, xxxxxxxx wrote:
thanx for the Info,
is there an alternative except the Timer() function ?Gruss
AG