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
-~----------~----~----~----~------~----~------~--~---

Reply via email to