What's the correct way to determine if there is a job active?
-
state.status
returnschangingTool
during a tool change, regardless if there is an active print. what model object should I use to be sure there is a print active or not? -
@gnydick
That would be expected whilst there is a tool change in progress.
If you need to check if there's an active job within your tool change files then maybeif job.file.fileName!=null echo "Print job loaded" ; do whatever here
-
@gnydick There is another posssibility with:
if job.duration = null
-
Thanks. Crazy that there isn't a blessed way to do it.