Re: [asterisk-users] Reasons to use AEL (was: Re: Goto from a feature macro is not working?)

2009-07-27 Thread Tzafrir Cohen
On Sat, Jul 25, 2009 at 01:03:27PM +0200, Philipp Kempgen wrote: > == extensions.conf: > > exten => 30,1,Set(x=5) > exten => 30,n,While($[${x} <= 9]) > exten => 30,n,NoOp(x ist ${x}) > exten => 30,n,ExecIf($[${x} > 5],ExitWhile) > exten => 30,n,Playback(beep) > exten => 30,n,Set(x=$[${x} + 1]) >

[asterisk-users] Reasons to use AEL (was: Re: Goto from a feature macro is not working?)

2009-07-25 Thread Philipp Kempgen
Miguel Molina schrieb: > Philipp Kempgen escribió: >> Use macros in AEL so you don't have to care about the underlying >> implementation. :-) scnr > Right now for every implementation I made, I didn't have the need to > program in AEL, only plain extensions, some AMI and AGI. But well, it > see