11-21-2008 06:38 AM
Hello,
I am using a for loop. I would like to have a trigger mechanism (brief delta pulse) when the loop iteration value changes.
Trigger should start as soon as change in value is detected and end when the change finishes.
Any ideas?
11-21-2008 06:52 AM
If you want something external to the loop to run on every iteration, you can use a queue, or you could use a user event. Just wire up the iteration value to a value-change of the event (to trigger it).
As for the second part, I don't know what you mean 'when the change finishes' it just changes, it doesn't start to change, wait for memory to work it's magic then complete changing. It's pretty instant.
11-21-2008 07:48 AM
Hi Britoa.
What I am trying to do is a trigger which finishes as soon as the next iteration starts to run.
So you can imagine a pretty small delta pulse . I will try the event trigger.