darrell
About
- Username
- darrell
- Joined
- Visits
- 7
- Last Active
- Roles
- Member
Comments
-
Thank you for your explanations!! The event registration perfectly works. -- I wrote the following registration in an initialization method. host.RegisterNamedEvent("core:printjobStarted", JobStartedEvent);host.RegisterNamedEvent("core:printjobPau…
-
Oh, could you add an event at the moment Pause print is pressed too? Because (at)pause command doesn't seem to generate any log, it is helpful if I can get that. Thank you again.
-
> I added event FunctionVoid JobStartedEvent; Awesome!! I am looking forward to the release.
-
oops, I could solve it. I set the associated 3D view to a property in IHostComponent as follows; public ThreeDView Associated3DView { get { return host.GCodePreviewView; } }
-
Thank you! Repetier, I found GcodeAnalyzer can be used to calculate the time. After instatiating a GcodeAnalyzer object, I experimentally send all Gcodes in GcodeEditor to there using analyzeShort(). Anyway, I try IPrintJob, too. Thanks!
-
I currently add a button to User control. when it is pressed, host.RunCurrentJob() is called in a function. It seems to be okay; the contents in Gcode editor are sent step by step.