[asterisk-users] simultaneous dial macro

2008-07-28 Thread ronald ramos
Hi, Would just like to know if it's possible to be able to call a macro at the same time. i use a macro to dial local extension to another extension. exten = 100,Macro(dial-ext|SIP/100) exten = 101,Macro(dial-ext|SIP/101) but now i would like to use it on a simple ringgroup where it will

Re: [asterisk-users] simultaneous dial macro

2008-07-28 Thread Pavel Jezek
you can try to place your macro extensions into single dialgroup using DIALGROUP() function and then reference that dialgroup in dial aplication, eg. Set(DIALGROUP(test,add)=Local/100) Set(DIALGROUP(test,add)=Local/101) Dial(${DIALGROUP(test)}) ronald ramos wrote: Hi, Would just like to know

Re: [asterisk-users] simultaneous dial macro

2008-07-28 Thread ronald ramos
hi, thanksĀ  for your reply. is dialgroup already available in asterisk 1.4? i'm currently using 1.4.21. regards, ron --- On Mon, 7/28/08, Pavel Jezek [EMAIL PROTECTED] wrote: From: Pavel Jezek [EMAIL PROTECTED] Subject: Re: [asterisk-users] simultaneous dial macro To: [EMAIL PROTECTED

Re: [asterisk-users] simultaneous dial macro

2008-07-28 Thread Pavel Jezek
] simultaneous dial macro To: [EMAIL PROTECTED], Asterisk Users Mailing List - Non-Commercial Discussion asterisk-users@lists.digium.com Date: Monday, July 28, 2008, 7:52 PM you can try to place your macro extensions into single dialgroup using DIALGROUP() function and then reference