Hallo Hitesh,

the html Tag doesn't work proper, but actually this has nothing to do with
OpenMeetings. Its an Issue with OpenLaszlo. The HTML Tag has some
limitations.
You should first try to downlaod the latest build/release of OpenLaszlo and
check out if it works in there.
If that is okay we can maybe update the Openlaszlo version to the latest one
in OpenMeetings (but I doubt that upgrading OpenLaszlo will solve your html
problems).

Sebastian

2010/9/29 Hitesh Choudhary <hitesh7...@gmail.com>

> Hi Seba
>
> Thanks a lot for the same as I will look after the same & will get back to
> you in any case
>
> One more thing I have posted that I am using <html> tag inside <view> and
> this html tag doesn't works in any browser except IE, so kindly suggest any
> way to resolve the same as this time its my major problem. For your
> easibility, I am sending the part of code, it would help you in finding the
> problem and its solution:
>
> *<?xml version="1.0" encoding="UTF-8" ?>
> <library>
>
> <class name="PopUp" extends="baseContentView" destroyByMethod="true"
> y="150" align="center">
>
>     <attribute name="sURL" value="" type="string"/>
>
>     <handler name="oninit">
>         var sURL = "http://www.google.com";;
>         this.setAttribute("sURL", sURL);
>     </handler>
>
>     <view name="ParentView" bgcolor="0x7C7D7F" width="820" height="380">
>
>             <view name="IncreaseSessionTimeView" x="15" y="40">
>
>                 <html name="PHPSourceURL" scrollbars="false"
> src="${this.parent.parent.parent.sURL}" width="785" height="325"    y="20"/>
>              </view>
>      </view>
> </class>
>
> </library>*
>
> Looking forward for an early reply
>
> Thanks & Regards
> HItesh
>
>
> On Wed, Sep 29, 2010 at 7:30 PM, seba.wag...@gmail.com <
> seba.wag...@gmail.com> wrote:
>
>> Have a look at those methods that set the values for the position:
>>
>>
>> <method name="startViewerSession">
>>         <![CDATA[
>>
>>             this.isStarted = true;
>>
>>             this._subcontent.setAttribute("visibility","visible");
>>
>>             this._initText.setAttribute("visibility","hidden");
>>
>>             this._showScreenSharing._y.setAttribute("to",0);
>>
>> this._showScreenSharing._height.setAttribute("to",canvas.height);
>>
>> this._showScreenSharing._width.setAttribute("to",canvas.width-260);
>>             this._showScreenSharing._x.setAttribute("to",260);
>>
>>             this._showScreenSharing.doStart();
>>
>>             if ($debug) Debug.write("this.initObject ",this.initObject);
>>
>>
>> this._subcontent._content._video.setAttribute("width",this.initObject.VWidth);
>>
>> this._subcontent._content._video.setAttribute("height",this.initObject.VHeight);
>>
>>
>> this._subcontent._content._video._videostream.playStream(this.initObject.streamPublishName,-1);
>>
>>         ]]>
>>     </method>
>>
>>     <method name="doMinimize">
>>         <![CDATA[
>>
>>            this.isStarted = false;
>>
>>            this._subcontent._content._video._videostream.stop();
>>
>>
>> this._showScreenSharing._y.setAttribute("to",((parent.subviews.length-1)*100)+40);
>>            this._showScreenSharing._x.setAttribute("to",canvas.width - 270
>> - 20);
>>            this._showScreenSharing._height.setAttribute("to",100);
>>            this._showScreenSharing._width.setAttribute("to",270);
>>
>>            this._showScreenSharing.doStart();
>>
>>            this._infoBox.setAttribute("visibility","hidden");
>>            this._zoombar.setAttribute("visibility","hidden");
>>            this._pause.setAttribute("visibility","hidden");
>>            this._close.setAttribute("visibility","hidden");
>>
>>            this._subcontent.setAttribute("visibility","hidden");
>>
>>         ]]>
>>     </method>
>>
>> Sebastian
>>
>> 2010/9/29 Hitesh Choudhary <hitesh7...@gmail.com>
>>
>>> 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, seba.wag...@gmail.com <
>>> seba.wag...@gmail.com> 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 <hitesh7...@gmail.com>
>>>>
>>>> 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
>>>>> openmeetings-u...@googlegroups.com.
>>>>> To unsubscribe from this group, send email to
>>>>> openmeetings-user+unsubscr...@googlegroups.com<openmeetings-user%2bunsubscr...@googlegroups.com>
>>>>> .
>>>>> 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
>>>> seba.wag...@gmail.com
>>>>
>>>>  --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "OpenMeetings User" group.
>>>> To post to this group, send email to openmeetings-user@googlegroups.com
>>>> .
>>>> To unsubscribe from this group, send email to
>>>> openmeetings-user+unsubscr...@googlegroups.com<openmeetings-user%2bunsubscr...@googlegroups.com>
>>>> .
>>>> 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 openmeetings-u...@googlegroups.com.
>>> To unsubscribe from this group, send email to
>>> openmeetings-user+unsubscr...@googlegroups.com<openmeetings-user%2bunsubscr...@googlegroups.com>
>>> .
>>> 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
>> seba.wag...@gmail.com
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "OpenMeetings User" group.
>> To post to this group, send email to openmeetings-u...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> openmeetings-user+unsubscr...@googlegroups.com<openmeetings-user%2bunsubscr...@googlegroups.com>
>> .
>> 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 openmeetings-u...@googlegroups.com.
> To unsubscribe from this group, send email to
> openmeetings-user+unsubscr...@googlegroups.com<openmeetings-user%2bunsubscr...@googlegroups.com>
> .
> 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
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-u...@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.

Reply via email to