You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2012/07/20 07:51:15 UTC

svn commit: r1363658 - in /incubator/openmeetings/trunk/singlewebapp/WebContent: src/ src/base/auth/ src/base/components/explorer/ src/base/components/panel/ src/base/components/presenter/ src/base/components/upload/ src/modules/conference/browser/ src...

Author: solomax
Date: Fri Jul 20 05:51:14 2012
New Revision: 1363658

URL: http://svn.apache.org/viewvc?rev=1363658&view=rev
Log:
OPENMEETINGS-157 fixed. Deprecated attributes/methods of openlaszlo animation/animationgroup 'start' and 'doStart' were replaced with up-to-date attribute 'started'.

Modified:
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/checkLoginData.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/registerNewUser.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/explorer/explorerBox.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/panel/baseBoundingBorderView.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/boxInitEffect.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/guiPresenter.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/upload/uploadWindowExplorer.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/main.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/maindebug.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/browser/conferenceBrowser.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/activitylist/activityList.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/conferenceRoomSidebar.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/interviewRoomSidebar.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/restrictedRoomSidebar.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewListInner.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewUserListItem.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/whiteboard/helper/boundingBoxAll.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/lzrecordcontent/lzRecordNavigation.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/base/components/explorer/explorerBox.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/screenSharingDialog.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/videoObjectPlayScreenShare.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/baseVideoObject.lzx
    incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/editRecordStreamSWF10.lzx

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/checkLoginData.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/checkLoginData.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/checkLoginData.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/checkLoginData.lzx Fri Jul 20 05:51:14 2012
@@ -155,13 +155,14 @@
         <handler name="onclick">
 	        <![CDATA[
 	            this.parent._register.setAttribute('visible',false);
+	            if (this.parent.childObj != null) {
+	            	this.parent.childObj.destroy();
+	            }
 	            this.parent.childObj = new lz.registerNewUser(canvas,{
 	            									refObj:this.parent,
 	            									user_login_minimum_length:parent.user_login_minimum_length,
 	            									user_pass_minimum_length:parent.user_pass_minimum_length
-	            								});     
-	            lz.Keys.removeKeyComboCall(this.parent.pressEnter, ["enter"]);
-	            //parent.showRegForm.doStart();
+	            								});
             ]]>
         </handler>
     </simpleLabelButton>     
@@ -393,10 +394,10 @@
         <attribute name="showResetBox" value="false" type="boolean" />
         <handler name="onclick">
             if (!this.showResetBox){
-                this.parent.showResetForm.doStart();
+                this.parent.showResetForm.setAttribute('started', true);
                 this.showResetBox = true;
             } else {
-                this.parent.disableResetForm.doStart();
+                this.parent.disableResetForm.setAttribute('started', true);
                 this.showResetBox = false;
             }
         </handler>       
@@ -415,14 +416,13 @@
        lz.Keys.callOnKeyCombo(this.pressEnter, ["enter"]);
     </method>
 
-    <animator name="showRegForm" attribute="x" to="20" duration="1000" start="false" />
     <animator name="doreset" attribute="x" to="$once{ canvas.width/2 - parent.width/2 }" 
-              duration="1000" start="false" />
+              duration="1000" started="false" />
     
     <animator name="showResetForm" attribute="height" to="370" duration="1000" 
-        onstop="parent.createReset(parent)" start="false" />
+        onstop="parent.createReset(parent)" started="false" />
     <animator name="disableResetForm" attribute="height" to="230" duration="1000" 
-        onstart="parent.destroyReset(parent);" start="false" />    
+        onstart="parent.destroyReset(parent);" started="false" />    
 
 </class>
     

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/registerNewUser.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/registerNewUser.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/registerNewUser.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/auth/registerNewUser.lzx Fri Jul 20 05:51:14 2012
@@ -18,7 +18,6 @@
   under the License.
   
 -->
-<!DOCTYPE library SYSTEM "/project.dtd">
 <library>
 
 <class name="registerNewUser" extends="labelExplorerBox" labelid="113"
@@ -68,7 +67,7 @@
     <handler name="onclose">
     	this.refObj._register.setAttribute('visible',true);
         lz.Keys.callOnKeyCombo(refObj.pressEnter, ["enter"]);
-    	this.refObj.doreset.doStart();
+    	this.refObj.doreset.setAttribute('started', true);
     </handler>
     
 
@@ -218,7 +217,7 @@
      </netRemoteCallHib>	
      
      
-     <animator name="showRegForm" attribute="y" to="120" duration="1000" start="true" />
+     <animator name="showRegForm" attribute="y" to="120" duration="1000" started="true" />
 	
 </class>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/explorer/explorerBox.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/explorer/explorerBox.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/explorer/explorerBox.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/explorer/explorerBox.lzx Fri Jul 20 05:51:14 2012
@@ -142,7 +142,6 @@
 	
 	<method name="close">
 		if (this.onclose) this.onclose.sendEvent();
-		//this.doOut.doStart();
 		this.doDestroy();
 	</method>
 	
@@ -354,9 +353,9 @@
 	
 	<dragstate name="dragger" />
     
-    <animator attribute="y" to="20" duration="1000" start="false" />
+    <animator attribute="y" to="20" duration="1000" started="false" />
         
-    <animator name="doOut" attribute="y" to="-500" duration="1000" start="false" onstop="parent.doDestroy()" />    
+    <animator name="doOut" attribute="y" to="-500" duration="1000" started="false" onstop="parent.doDestroy()" />    
     
     <method name="doDestroy">
         this.destroy();

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/panel/baseBoundingBorderView.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/panel/baseBoundingBorderView.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/panel/baseBoundingBorderView.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/panel/baseBoundingBorderView.lzx Fri Jul 20 05:51:14 2012
@@ -105,7 +105,6 @@
 	
 	<method name="close">
 		if (this.onclose) this.onclose.sendEvent();
-		//this.doOut.doStart();
 		this.doDestroy();
 	</method>
 	
@@ -486,9 +485,9 @@
 	
 	<dragstate name="dragger" />
     
-    <animator attribute="y" to="20" duration="1000" start="false" />
+    <animator attribute="y" to="20" duration="1000" started="false" />
         
-    <animator name="doOut" attribute="y" to="-500" duration="1000" start="false" onstop="parent.doDestroy()" />    
+    <animator name="doOut" attribute="y" to="-500" duration="1000" started="false" onstop="parent.doDestroy()" />    
     
     <method name="doDestroy">
         this.destroy();

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/boxInitEffect.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/boxInitEffect.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/boxInitEffect.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/boxInitEffect.lzx Fri Jul 20 05:51:14 2012
@@ -32,8 +32,9 @@
     
     <handler name="oninit">
     	//It seems like you need additionally to start it oninit, the start = true works
-    	//only for the first initialization, sebawagner 19.03.2012 
-    	this.anm.doStart();
+    	//only for the first initialization, sebawagner 19.03.2012
+    	//the following call seems to be redundant after using non-deprecated attribute name -- solomax 2012.07.20 
+    	this.anm.setAttribute('started', true);
     </handler>
     
     <method name="sendStop">
@@ -41,7 +42,7 @@
         this.destroy();
     </method>
 
-    <animatorgroup name="anm" start="true" process="simultaneous" 
+    <animatorgroup name="anm" started="true" process="simultaneous" 
         		duration="500" onstop="this.parent.sendStop()" >
         <animator attribute="x" to="$once{ parent.parent.zielx }" />
         <animator attribute="y" to="$once{ parent.parent.ziely }" />

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/guiPresenter.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/guiPresenter.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/guiPresenter.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/presenter/guiPresenter.lzx Fri Jul 20 05:51:14 2012
@@ -177,7 +177,7 @@
 	        this.initialHeight = this.height;
 	        //this.setAttribute("height",20);
             this._minimizeZoom.setAttribute("to",20);
-            this._minimizeZoom.doStart();
+            this._minimizeZoom.setAttribute('started', true);
         ]]>
     </method>
     
@@ -194,7 +194,7 @@
 	        
 	        //this.setAttribute("height",this.initialHeight); 
             this._minimizeZoom.setAttribute("to",this.initialHeight);
-            this._minimizeZoom.doStart();
+            this._minimizeZoom.setAttribute('started', true);
         ]]>
     </method>
     
@@ -502,7 +502,7 @@
     <resizestate name="rs"/>
     
     <animator name="_minimizeZoom" attribute="height" 
-              duration="750" to="20" start="false">
+              duration="750" to="20" started="false">
         <handler name="onstop" args="s">
             parent.reminimizeComplete();
         </handler>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/upload/uploadWindowExplorer.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/upload/uploadWindowExplorer.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/upload/uploadWindowExplorer.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/base/components/upload/uploadWindowExplorer.lzx Fri Jul 20 05:51:14 2012
@@ -238,7 +238,7 @@
         <method name="startShowing">
         	if (!this.isStarted) {
         		this.isStarted = true;
-        		this.status._hide.doStart();
+        		this.status._hide.setAttribute('started', true);
         		this.setAttribute("visibility","visible");
         	} else {
         		return;
@@ -247,17 +247,17 @@
         <view x="1" y="1" width="248" height="8" bgcolor="#FFFFFF"/>
         <view name="status" x="1" y="1" height="8" width="248" bgcolor="#D6DEEF">
         	
-        	<animator name="_hide" attribute="opacity" to="0" from="1" duration="1000" start="false">
+        	<animator name="_hide" attribute="opacity" to="0" from="1" duration="1000" started="false">
         		<handler name="onstop">
         			if (parent["_show"]) {
-        				parent._show.doStart();
+        				parent._show.setAttribute('started', true);
         			}
         		</handler>
         	</animator>
-        	<animator name="_show" attribute="opacity" to="1" from="0" duration="1000" start="false">
+        	<animator name="_show" attribute="opacity" to="1" from="0" duration="1000" started="false">
                 <handler name="onstop">
                 	if (parent["_show"]) {
-                    	parent._show.doStart();
+                    	parent._show.setAttribute('started', true);
                     }
                 </handler>
             </animator>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/main.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/main.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/main.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/main.lzx Fri Jul 20 05:51:14 2012
@@ -145,12 +145,12 @@
     width="${ canvas.width }" height="${ canvas.height }" 
     bgcolor="0xFFFFFF" clickable="true" showhandcursor="false">
     <method name="hideContentOnly">
-    	this.showLoadingAnni.doStart();
+    	this.showLoadingAnni.setAttribute('started', true);
         this.setAttribute("visibility","visible");
         this._text.setAttribute("visibility","hidden");
     </method>
     <method name="showLoading">
-    	this.showLoadingAnni.doStart();
+    	this.showLoadingAnni.setAttribute('started', true);
         this.setAttribute("visibility","visible");
         this._text.setAttribute("visibility","visible");
     </method>
@@ -158,7 +158,7 @@
         this.setAttribute("visibility","hidden");
     </method>
     <animator name="showLoadingAnni" attribute="opacity" 
-    		from="0" to="0.7" start="false" duration="250" />
+    		from="0" to="0.7" started="false" duration="250" />
     <text name="_text" align="right" y="56" fontsize="14" fgcolor="red">Loading...</text>
 </view>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/maindebug.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/maindebug.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/maindebug.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/maindebug.lzx Fri Jul 20 05:51:14 2012
@@ -145,12 +145,12 @@
     width="${ canvas.width }" height="${ canvas.height }" 
     bgcolor="0xFFFFFF" clickable="true" showhandcursor="false">
     <method name="hideContentOnly">
-    	this.showLoadingAnni.doStart();
+    	this.showLoadingAnni.setAttribute('started', true);
         this.setAttribute("visibility","visible");
         this._text.setAttribute("visibility","hidden");
     </method>
     <method name="showLoading">
-    	this.showLoadingAnni.doStart();
+    	this.showLoadingAnni.setAttribute('started', true);
         this.setAttribute("visibility","visible");
         this._text.setAttribute("visibility","visible");
     </method>
@@ -158,7 +158,7 @@
         this.setAttribute("visibility","hidden");
     </method>
     <animator name="showLoadingAnni" attribute="opacity" 
-    		from="0" to="0.7" start="false" duration="250" />
+    		from="0" to="0.7" started="false" duration="250" />
     <text name="_text" align="right" y="56" fontsize="14" fgcolor="red">Loading...</text>
 </view>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/browser/conferenceBrowser.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/browser/conferenceBrowser.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/browser/conferenceBrowser.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/browser/conferenceBrowser.lzx Fri Jul 20 05:51:14 2012
@@ -90,7 +90,7 @@
                 
                 if (canvas.ismoderator) {
                 	
-                    this._navigation._inner._showBar.doStart();
+                    this._navigation._inner._showBar.setAttribute('started', true);
                     
                 }
                 
@@ -177,7 +177,7 @@
             <![CDATA[
                 //this.isMod = canvas.getIsModeratorByPublicSID(this.refObj.publicSID);
                 if (m) {
-                    this._navigation._inner._showBar.doStart();
+                    this._navigation._inner._showBar.setAttribute('started', true);
                 } else {
                 	this._navigation._inner.setAttribute("y",-40);
                 }
@@ -280,7 +280,7 @@
         <view name="_navigation" clip="true" y="22" height="38" width="${ parent.width }" >
     		<view name="_inner" y="-40">
     			
-    			<animator name="_showBar" attribute="y" to="0" duration="750" start="false">
+    			<animator name="_showBar" attribute="y" to="0" duration="750" started="false">
     				<handler name="onstop">
     					lz.Focus.setFocus(parent.browser.navigation.url,true);
     				</handler>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/activitylist/activityList.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/activitylist/activityList.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/activitylist/activityList.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/activitylist/activityList.lzx Fri Jul 20 05:51:14 2012
@@ -33,7 +33,7 @@
     </method>
     
     <method name="closeItem">
-        this._doHide.doStart();
+        this._doHide.setAttribute('started', true);
     </method>
     
     <method name="destroyItem">
@@ -53,7 +53,7 @@
         <labelTooltip labelid="154" />
     </miniIcons>   
     
-    <animator name="_doHide" attribute="opacity" duration="1250" to="0" start="false">
+    <animator name="_doHide" attribute="opacity" duration="1250" to="0" started="false">
         <handler name="onstop">
             parent.destroyItem();
         </handler>
@@ -77,7 +77,7 @@
     </method>
     
     <method name="closeItem">
-    	this._doHide.doStart();
+    	this._doHide.setAttribute('started', true);
     </method>
     
     <method name="destroyItem">
@@ -105,7 +105,7 @@
         <labelTooltip labelid="$once{ parent.parent.labelidToolTipDenyButton }" />
     </miniIcons>   
     
-    <animator name="_doHide" attribute="opacity" duration="1250" to="0" start="false">
+    <animator name="_doHide" attribute="opacity" duration="1250" to="0" started="false">
         <handler name="onstop">
             parent.destroyItem();
         </handler>
@@ -120,7 +120,6 @@
         canvas.thishib.setBroadCastingFlag.isAllowedToBroadCastAV = true;
         canvas.thishib.setBroadCastingFlag.avsettings = "av";
         canvas.thishib.setBroadCastingFlag.doCall(); 
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -136,7 +135,6 @@
     
     <method name="applyObject">
         canvas.thishib.switchMicMuted.setMute(this.rcl.publicSID,true);
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -167,7 +165,6 @@
 	
     <method name="applyObject">
     	canvas.thishib.switchMicMuted.setMute(this.rcl.publicSID,false);
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>	
 	
@@ -185,7 +182,6 @@
         canvas.thishib.setBroadCastingFlag.isAllowedToBroadCastAV = true;
         canvas.thishib.setBroadCastingFlag.avsettings = "a";
         canvas.thishib.setBroadCastingFlag.doCall(); 
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -203,7 +199,6 @@
         canvas.thishib.setBroadCastingFlag.isAllowedToBroadCastAV = true;
         canvas.thishib.setBroadCastingFlag.avsettings = "v";
         canvas.thishib.setBroadCastingFlag.doCall(); 
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -220,7 +215,6 @@
         canvas.thishib.setCanDraw.publicSID = this.rcl.publicSID;
         canvas.thishib.setCanDraw.canDraw = true;
         canvas.thishib.setCanDraw.doCall();
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -239,7 +233,6 @@
         canvas.thishib.setCanShare.canShare = true;
         canvas.thishib.setCanShare.doCall();
         
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -258,7 +251,6 @@
         canvas.thishib.setCanRemote.canRemote = true;
         canvas.thishib.setCanRemote.doCall();
 
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     
@@ -287,7 +279,6 @@
     <method name="applyObject">
         canvas.thishib.addModerator.publicSIDOfNewModerator = this.rcl.publicSID;
         canvas.thishib.addModerator.doCall();
-        //this._doHide.doStart();
         this.sendClearMessage(true);
     </method>   
     

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/conferenceRoomSidebar.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/conferenceRoomSidebar.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/conferenceRoomSidebar.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/conferenceRoomSidebar.lzx Fri Jul 20 05:51:14 2012
@@ -54,12 +54,12 @@
     
     <method name="toggleStatus">
         if (this.isOpen) {
-            this._doClose.doStart();
+            this._doClose.setAttribute('started', true);
             this.isOpen = false;
             this._minimizeSidebar._icon.setAttribute("frame",2);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",857);
         } else {
-            this._doOpen.doStart();
+            this._doOpen.setAttribute('started', true);
             this.isOpen = true;
             this._minimizeSidebar._icon.setAttribute("frame",1);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",856);
@@ -120,10 +120,10 @@
     </view>
     
     <animator name="_doOpen" attribute="width" to="$once{ parent.width }" 
-              duration="750" start="false" />
+              duration="750" started="false" />
               
     <animator name="_doClose" attribute="width" to="10" 
-              duration="750" start="false" />
+              duration="750" started="false" />
     
 </class>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/interviewRoomSidebar.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/interviewRoomSidebar.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/interviewRoomSidebar.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/interviewRoomSidebar.lzx Fri Jul 20 05:51:14 2012
@@ -45,12 +45,12 @@
     
     <method name="toggleStatus">
         if (this.isOpen) {
-            this._doClose.doStart();
+            this._doClose.setAttribute('started', true);
             this.isOpen = false;
             this._minimizeSidebar._icon.setAttribute("frame",2);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",857);
         } else {
-            this._doOpen.doStart();
+            this._doOpen.setAttribute('started', true);
             this.isOpen = true;
             this._minimizeSidebar._icon.setAttribute("frame",1);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",856);
@@ -104,10 +104,10 @@
     </view>
     
     <animator name="_doOpen" attribute="width" to="$once{ parent.width }" 
-              duration="750" start="false" />
+              duration="750" started="false" />
               
     <animator name="_doClose" attribute="width" to="10" 
-              duration="750" start="false" />
+              duration="750" started="false" />
     
 </class>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/restrictedRoomSidebar.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/restrictedRoomSidebar.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/restrictedRoomSidebar.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/flexibleConferenceRoom/roomSidebar/restrictedRoomSidebar.lzx Fri Jul 20 05:51:14 2012
@@ -66,12 +66,12 @@
     
     <method name="toggleStatus">
         if (this.isOpen) {
-            this._doClose.doStart();
+            this._doClose.setAttribute('started', true);
             this.isOpen = false;
             this._minimizeSidebar._icon.setAttribute("frame",2);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",857);
         } else {
-            this._doOpen.doStart();
+            this._doOpen.setAttribute('started', true);
             this.isOpen = true;
             this._minimizeSidebar._icon.setAttribute("frame",1);
             this._minimizeSidebar._icon._labelTooltip.setAttribute("labelid",856);
@@ -132,10 +132,10 @@
     </view>
     
     <animator name="_doOpen" attribute="width" to="$once{ parent.width }" 
-              duration="750" start="false" />
+              duration="750" started="false" />
               
     <animator name="_doClose" attribute="width" to="10" 
-              duration="750" start="false" />
+              duration="750" started="false" />
     
 </class>
 

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewListInner.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewListInner.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewListInner.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewListInner.lzx Fri Jul 20 05:51:14 2012
@@ -233,7 +233,7 @@
         <method name="updateIcons">
             <![CDATA[
                 if (canvas.ismoderator) {
-                    this.showItem.doStart();
+                    this.showItem.setAttribute('started', true);
                 } else {
                     this.setAttribute("height",0);
                 }
@@ -249,7 +249,7 @@
         <labelText labelid="912" width="270" x="0" multiline="true" y="0" />
         
         <animator name="showItem" attribute="height" 
-                  to="60" duration="1000" start="false" />
+                  to="60" duration="1000" started="false" />
     </view>
 
 </class>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewUserListItem.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewUserListItem.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewUserListItem.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/interviewuserlist/interviewUserListItem.lzx Fri Jul 20 05:51:14 2012
@@ -111,7 +111,7 @@
                 isSuperModerator:this.isSuperModerator});
 	    	this.isSelected = true;
 	    	this._userName.text = "";
-	    	this.showItem.doStart();
+	    	this.showItem.setAttribute('started', true);
     	}
     </method>
     
@@ -120,7 +120,7 @@
 	    	this._miniIcons.destroy();
 	    	this.isSelected = false;
 	    	this._userName.text = this.firstname+' '+this.lastname;
-	    	this.closeItem.doStart();
+	    	this.closeItem.setAttribute('started', true);
     	}
     </method>
      
@@ -147,12 +147,12 @@
     <labelTooltip name="_userName" text="$once{ parent.firstname+' '+parent.lastname }" />
      -->
      
-    <animatorgroup name="showItem" start="false" process="simultaneous">
+    <animatorgroup name="showItem" started="false" process="simultaneous">
     	<animator attribute="height" to="62" duration="750" />
     	<animator attribute="width" to="252" duration="750" />
     </animatorgroup>
     
-    <animatorgroup name="closeItem" start="false" process="simultaneous">
+    <animatorgroup name="closeItem" started="false" process="simultaneous">
         <animator attribute="height" to="42" duration="750" />
         <animator attribute="width" to="252" duration="750" />
     </animatorgroup>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/whiteboard/helper/boundingBoxAll.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/whiteboard/helper/boundingBoxAll.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/whiteboard/helper/boundingBoxAll.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/conference/whiteboard/helper/boundingBoxAll.lzx Fri Jul 20 05:51:14 2012
@@ -233,14 +233,6 @@
 		this.setStartValues();	
 	</method>
 
-	<!-- 
-    <animatorgroup start="false" process="simultaneous" duration="100" onstop="parent.doUpdateAction()">
-      <animator attribute="x" to="${ parent.parent.ex }" />
-      <animator attribute="y" to="${ parent.parent.ey }" />
-      <animator attribute="width" to="${ parent.parent.ewidth }" />
-      <animator attribute="height" to="${ parent.parent.eheight }" />            
-    </animatorgroup>	
-     -->
     <method name="doUpdateAction" >
     	this.setAttribute('doHandlerUpdates',true);
     	if (this.boundingDoUpdateOnInit) {

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/lzrecordcontent/lzRecordNavigation.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/lzrecordcontent/lzRecordNavigation.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/lzrecordcontent/lzRecordNavigation.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/src/modules/lzrecordcontent/lzRecordNavigation.lzx Fri Jul 20 05:51:14 2012
@@ -44,7 +44,7 @@
             canvas.setAttribute('naviHeightDelta',0);
             this.parentFolderId = canvas.roomRecordingId;
             this.getFlvRecordingWithMetaData.doCall();
-            this._doClose.doStart();
+            this._doClose.setAttribute('started', true);
             this.isOpen = false;
             this._minimizeSidebar._icon.setAttribute("frame",2);
         } else {
@@ -58,11 +58,11 @@
     		return;
     	}
         if (this.isOpen) {
-            this._doClose.doStart();
+            this._doClose.setAttribute('started', true);
             this.isOpen = false;
             this._minimizeSidebar._icon.setAttribute("frame",2);
         } else {
-            this._doOpen.doStart();
+            this._doOpen.setAttribute('started', true);
             this.isOpen = true;
             this._minimizeSidebar._icon.setAttribute("frame",1);
         }
@@ -537,10 +537,10 @@
     </view>
         
     <animator name="_doOpen" attribute="x" to="0" 
-              duration="750" start="false" />
+              duration="750" started="false" />
               
     <animator name="_doClose" attribute="x" to="-270" 
-              duration="750" start="false">
+              duration="750" started="false">
     </animator>
     
 </class>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/base/components/explorer/explorerBox.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/base/components/explorer/explorerBox.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/base/components/explorer/explorerBox.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/base/components/explorer/explorerBox.lzx Fri Jul 20 05:51:14 2012
@@ -110,7 +110,6 @@
 	
 	<method name="close">
 		if (this.onclose) this.onclose.sendEvent();
-		//this.doOut.doStart();
 		this.doDestroy();
 	</method>
 	
@@ -316,9 +315,9 @@
 	
 	<dragstate name="dragger" />
     
-    <animator attribute="y" to="20" duration="1000" start="false" />
+    <animator attribute="y" to="20" duration="1000" started="false" />
         
-    <animator name="doOut" attribute="y" to="-500" duration="1000" start="false" onstop="parent.doDestroy()" />    
+    <animator name="doOut" attribute="y" to="-500" duration="1000" started="false" onstop="parent.doDestroy()" />    
     
     <method name="doDestroy">
         this.destroy();

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/screenSharingDialog.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/screenSharingDialog.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/screenSharingDialog.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/screenSharingDialog.lzx Fri Jul 20 05:51:14 2012
@@ -100,7 +100,7 @@
             this._showScreenSharing._width.setAttribute("to",canvas.width-260);
             this._showScreenSharing._x.setAttribute("to",260);
         
-            this._showScreenSharing.doStart();
+            this._showScreenSharing.setAttribute('started', true);
             
             if ($debug) Debug.write("this.initObject ",this.initObject);
             
@@ -124,7 +124,7 @@
            this._showScreenSharing._height.setAttribute("to",100);
            this._showScreenSharing._width.setAttribute("to",270);
            
-           this._showScreenSharing.doStart();
+           this._showScreenSharing.setAttribute('started', true);
            
            this._infoBox.setAttribute("visibility","hidden");
            this._zoombar.setAttribute("visibility","hidden");
@@ -1097,7 +1097,7 @@
         labelid="851" width="100" x="${ parent.width-102 }" 
         y="${ parent.height-22 }" onclick="this.parent.doClose();" />
         
-    <animatorgroup name="_showScreenSharing" start="false" 
+    <animatorgroup name="_showScreenSharing" started="false" 
                    process="simultaneous" duration="1000" >
         <handler name="onstop">
             if ($debug) Debug.write("onstop this._y.to ",this._y.to);

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/videoObjectPlayScreenShare.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/videoObjectPlayScreenShare.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/videoObjectPlayScreenShare.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/screensharing/videoObjectPlayScreenShare.lzx Fri Jul 20 05:51:14 2012
@@ -37,11 +37,11 @@
     </handler>
     
     <method name="removeThis" args="refObj">
-        this._out.doStart();
+        this._out.setAttribute('started', true);
     </method>
     
     <animator name="_out" attribute="opacity" to="0" 
-    		  duration="750" start="false">
+    		  duration="750" started="false">
     	<handler name="onstop">
     		if (parent.isStopped) {
     			return;
@@ -57,26 +57,26 @@
 	<view name="_bg" bgcolor="0x7fff00" width="$once{ parent.width }"
 		  height="$once{ parent.height }">
 		<handler name="oninit">
-			this._in.doStart();
+			this._in.setAttribute('started', true);
 		</handler>
 		
 		<animator name="_out" attribute="opacity" to="0.3" 
-              duration="250" start="false">
+              duration="250" started="false">
             <handler name="onstop">
             	if (parent.parent.isStopped) {
                     return;
                 }
-                parent._in.doStart();
+                parent._in.setAttribute('started', true);
             </handler>
         </animator>
         
         <animator name="_in" attribute="opacity" to="1" 
-              duration="250" start="false">
+              duration="250" started="false">
             <handler name="onstop">
             	if (parent.parent.isStopped) {
             		return;
             	}
-                parent._out.doStart();
+                parent._out.setAttribute('started', true);
             </handler>
         </animator>
 		
@@ -91,7 +91,7 @@
 		<handler name="ontext" args="txt">
 			if ($debug) Debug.warn("ontext ",txt);
 			parent.parent.doBroadcastText(txt);
-			parent._out.doStart();
+			parent._out.setAttribute('started', true);
 		</handler>
 	</inputtext>
 	

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/baseVideoObject.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/baseVideoObject.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/baseVideoObject.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/baseVideoObject.lzx Fri Jul 20 05:51:14 2012
@@ -359,7 +359,7 @@
             this.initialHeight = this.height;
             //this.setAttribute("height",20);
             this._minimizeZoom.setAttribute("to",20);
-            this._minimizeZoom.doStart();
+            this._minimizeZoom.setAttribute('started', true);
         ]]>
     </method>
     
@@ -375,7 +375,7 @@
             //this.setAttribute("height",this.initialHeight); 
             if ($debug) Debug.write("this.initialHeight ",this.initialHeight);
             this._minimizeZoom.setAttribute("to",this.initialHeight);
-            this._minimizeZoom.doStart();
+            this._minimizeZoom.setAttribute('started', true);
         ]]>
     </method>    
     
@@ -576,7 +576,7 @@
     <dragHelper name="dragHelper"/>
     
     <animator name="_minimizeZoom" attribute="height" 
-              duration="750" to="20" start="false">
+              duration="750" to="20" started="false">
         <handler name="onstop" args="s">
             parent.reminimizeComplete();
         </handler>

Modified: incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/editRecordStreamSWF10.lzx
URL: http://svn.apache.org/viewvc/incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/editRecordStreamSWF10.lzx?rev=1363658&r1=1363657&r2=1363658&view=diff
==============================================================================
--- incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/editRecordStreamSWF10.lzx (original)
+++ incubator/openmeetings/trunk/singlewebapp/WebContent/swf10/video/editRecordStreamSWF10.lzx Fri Jul 20 05:51:14 2012
@@ -124,7 +124,7 @@
             if ($debug) Debug.write("canvas.currentRoomObject: ", canvas.currentRoomObject);
 
 	        if (false) { // canvas.currentRoomObject.isAudioOnly
-	        	this._chooseDeviceAnimation.doStart();
+	        	this._chooseDeviceAnimation.setAttribute('started', true);
 	        } else {
 	        	//In case the user presses the Sync Button this box should
                 //not close automatically and do the user-prefered values
@@ -140,7 +140,7 @@
                     this.getBroadCastId.doCall();
                 } else {
                     if (this.doDefaultAnimation && !canvas.isInterview) {
-                        this._chooseDeviceAnimation.doStart();
+                        this._chooseDeviceAnimation.setAttribute('started', true);
                     }
                 }
 	        }
@@ -441,7 +441,7 @@
         videoviewViewer._stop();
     </method>
 
-    <animator name="_chooseDeviceAnimation" start="false" attribute="y" to="40" duration="750" />
+    <animator name="_chooseDeviceAnimation" started="false" attribute="y" to="40" duration="750" />
     
     
     <labelText fontstyle="bold" labelid="758"