Hi Seba

*File use for screen sharing is named*: screenSharingDialog.lzx

*Part of code from the above file is below:*

<animatorgroup name="_showScreenSharing" start="false"
process="simultaneous" duration="1000">
        <handler name="onstop">
            if ($debug) Debug.write("onstop this._y.to ",this._y.to);
            if (!parent.isStarted) {
                parent._initText.setAttribute("visibility","visible");
            } else {
                parent._zoombar.setAttribute("visibility","visible");
                parent._zoombar.setDefaultZoom();
                parent._close.setAttribute("visibility","hidden");
                parent._pause.setAttribute("visibility","visible");
            }
        </handler>

        <animator name="_x" attribute="x" to="5"/>
        <animator name="_y" attribute="y" />
        <animator name="_height" attribute="height"   />
        <animator name="_width" attribute="width"  />
    </animatorgroup

*It is called from the hibrtmpConnection.lzx* below is example:

<netRemoteCallHib name="newRed5ScreenCursor" funcname="newRed5ScreenCursor">
            <netparam>
                <method name="getValue">
                    return null;
                </method>
            </netparam>
            <handler name="ondata" args="value">
            <![CDATA[
                if (canvas.screenSharingDialogContainer != null) {
                    var obj = canvas.screenSharingDialogContainer
                            .searchForSession(value.streamPublishName);
                    obj.updateCursor(value.cursor_x, value.cursor_y);
                }
            ]]>
            </handler>
        </netRemoteCallHib>


        <!--
                Red5 Screen Sharing
                newRed5ScreenSharing
             -->
        <netRemoteCallHib name="newRed5ScreenSharing"
funcname="newRed5ScreenSharing">
            <netparam>
                <method name="getValue">
                    return null;
                </method>
            </netparam>
            <handler name="ondata" args="value">
            <![CDATA[
                if (value.streamPublishName != canvas.publicSID) {
                    if (canvas.screenSharingDialogContainer == null) {
                        canvas.screenSharingDialogContainer = new
lz.screenSharingDialogContainer(canvas);
                    }
                    canvas.presenterScreen = new lz.screenSharingDialog(
                            canvas.screenSharingDialogContainer, {
                                initObject : value
                            });
                } else {
                    if ($debug)
                        Debug.warn("@@@@@@@@@@@@@@@Self Screen Sharing@
@@@@@@@@@@@@@");
                }
            ]]>
            </handler>
        </netRemoteCallHib>

Kindly suggest and if you need any other file or part of example then please
let me know. I will wait for your reply

Thanks & Regards
Hitesh

On Wed, Sep 29, 2010 at 5:05 PM, [email protected] <
[email protected]> wrote:

> can you please post some sample code from the concerning part of the
> application? I think that would already resolve the problem for yourself too
> ^^
>
> Sebastian
>
> 2010/9/6 Hitesh <[email protected]>
>
> Hi Sebastian
>>
>> Animator use for screen sharing moves up and down when we move the
>> laszlo browser scroll
>>
>> Is there any process by which we can make the position of the animator
>> fix like other views
>>
>> Kindly suggest for the same
>>
>> Thanks & Regards
>> Hitesh
>>
>> --
>> 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]<openmeetings-user%[email protected]>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/openmeetings-user?hl=en.
>>
>>
>
>
> --
> Sebastian Wagner
> http://www.webbase-design.de
> http://openmeetings.googlecode.com
> http://www.wagner-sebastian.com
> [email protected]
>
>  --
> 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]<openmeetings-user%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/openmeetings-user?hl=en.
>

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