hi rodion, thx i will do as you suggested another question is that i also want to hide "Send Invitation" button which is displayed below the video pod in the auditorium mode ( not in conferencing), where i should look for to hide that ?
On Fri, May 22, 2009 at 6:53 PM, Rodion Volkov <[email protected]> wrote: > > You should change the openmeetings/modules/conference/moderation/ > moderationPanel.lzx file, first record button is this piece of code: > <simpleLabelButton name="sta_btn" width="30" height="24" y="2" > style="itemStyle" > visibility="$once{ canvas.showRecording }"> > <handler name="oninit"> > if (canvas.showRecording == "hidden") { > this.destroy(); > } > </handler> > <handler name="onclick"> > this.parent.checkForRecording.doCall(); > </handler> > <view resource="start_recording_conf" x="3" y="1" /> > <labelTooltip labelid="415" /> > </simpleLabelButton> > > and second is this one: > <simpleLabelButton labelid="415" height="24" name="_doRecord" > style="itemStyle" > width="180" y="2" enabled="$ > { canvas.ismoderator }"> > <handler name="onclick"> > //Start Streen Grabbing Incl.-Recording > this.parent.checkForApplyScreen("yes"); > </handler> > <view resource="start_recording_conf" x="3" y="1" /> > </simpleLabelButton> > > to remove second button you should set its visibility to false or > remove the whole tag from source if you like > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "OpenMeetings User" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/openmeetings-user?hl=en -~----------~----~----~----~------~----~------~--~---
