Page 1 of 1

Text Buffer Passed Event issue

Posted: 29 Apr 2015, 23:23
by arthamas
Hi guys,

I think the Text Buffer has an issue with his Passed event.
It should trigger each time after the value has been passed correct?
Right now it's only triggering that method when the value changes like the first method.

Am I missing something or this is a bug?

Re: Text Buffer Passed Event issue

Posted: 30 Apr 2015, 06:45
by lerou
Hi,

from the manual:
Whenever the value of Text changes, the Changed event is fired. In a similar fashion, the Passed event is fired whenever the output changes, either because Pass was triggered or Bypass is active and the value of Text changed.
The passed event fires whenever the output changes - if you have the same input and hit pass several times, the passed event will fire only once. It wouldn't really help if it fired more often because there is no change in the output. So you could just listen to whatever event actually triggers the pass method.

cheers,
rou

Re: Text Buffer Passed Event issue

Posted: 30 Apr 2015, 15:01
by arthamas
Hello lerou,

Thanks for the clarification! Make sense!

Cheers