> I think you're assuming NoOp() prints something out, which it does not.
> In OpenPBX, use Verbose() instead.

Yes, NoOp prints things out with enough verbosity, but even without it
I expected Playback to play the file 3 times total, then quit. But
instead it went in a endless loop.

The problem was the extra space: it appears that the for loop syntax
doesn't like spaces.

Was: for(x=0; ${x} < 3; x=${x} + 1)
Should be: for(x=0;${x} < 3;x=${x} + 1)

Otherwise a variable named " x" is set and incremented, not "x".

--Luki
_______________________________________________
Openpbx-users mailing list
[email protected]
http://lists.openpbx.org/mailman/listinfo/openpbx-users

Reply via email to