<div dir="ltr">Hi<div>I'm using the following lua script to add some users taken as argument to a conference:</div><div><br></div><div><div>session:execute('answer');</div><div>session:setVariable('api_hangup_hook','conference paging kick all');<span style="white-space:pre">   </span>--kick out all page devices on hangup</div><div>session:setVariable('conference_auto_outcall_timeout','5');<span style="white-space:pre">      </span>--??</div><div>session:setVariable('conference_auto_outcall_flags','none')<span style="white-space:pre">       </span>--you can mute page devices</div><div>session:setVariable('conference_auto_outcall_announce','tone_stream://%(500,200,800);loops=3')</div><div><br></div><div>for i,v in ipairs(argv) do</div><div><span style="white-space:pre">    </span>session:execute('conference_set_auto_outcall','user/'..v)</div><div>end</div><div>session:execute('conference','paging@default');</div></div><div><br></div><div>this is working fine and all members are connected to conference. now I need to start playing a file into conference. currently I'm using caller-controls part of conference.conf.xml to play the file when a caller presses the 0 key:</div><div><br></div><div>...</div><div><div><caller-controls></div><div>    <group name="default">     </div><div>      <control action="execute_application"  digits="0" data="playback applications/2/test.mp3"/>      </div><div>      ...</div><div>    </group></div><div>  </caller-controls></div></div><div>....</div><div>now when each member presses 0 the file is played but just to the member which pressed the 0 key. how can I make it to play the file for all conference members?</div></div>