You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by bi...@apache.org on 2012/07/13 21:37:46 UTC

svn commit: r1361346 - in /incubator/flex/utilities/InstallApacheFlex/src: InstallApacheFlex.mxml org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml

Author: bigosmallm
Date: Fri Jul 13 19:37:46 2012
New Revision: 1361346

URL: http://svn.apache.org/viewvc?rev=1361346&view=rev
Log:
Made text areas non-editable

Modified:
    incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml
    incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml
    incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml

Modified: incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml?rev=1361346&r1=1361345&r2=1361346&view=diff
==============================================================================
--- incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml (original)
+++ incubator/flex/utilities/InstallApacheFlex/src/InstallApacheFlex.mxml Fri Jul 13 19:37:46 2012
@@ -1718,7 +1718,8 @@ Command line usage: packageApacheFlexFor
 						fontSize="12" 
 						width="55%" 
 						height="100%" 
-						verticalScrollPolicy="off" />
+						verticalScrollPolicy="off" 
+						editable="false"/>
 		</s:HGroup>
 		<s:HGroup 
 			width="100%" 

Modified: incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml?rev=1361346&r1=1361345&r2=1361346&view=diff
==============================================================================
--- incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml (original)
+++ incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/AdobeLicense.mxml Fri Jul 13 19:37:46 2012
@@ -33,7 +33,13 @@
 	<s:layout>
 		<s:VerticalLayout />
 	</s:layout>
-	<s:TextArea width="100%" height="75" fontSize="12" text="{adobelicenseTextStr}" verticalScrollPolicy="off" />
+	<s:TextArea 
+		width="100%" 
+		height="75" 
+		fontSize="12" 
+		text="{adobelicenseTextStr}" 
+		verticalScrollPolicy="off" 
+		editable="false"/>
 	<s:TabBar change="tabbar1_changeHandler(event)">
 		<s:ArrayCollection>
 			<fx:String>Adobe Flex SDK License Agreement</fx:String>

Modified: incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml
URL: http://svn.apache.org/viewvc/incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml?rev=1361346&r1=1361345&r2=1361346&view=diff
==============================================================================
--- incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml (original)
+++ incubator/flex/utilities/InstallApacheFlex/src/org/apache/flex/packageflexsdk/view/components/MPLLicense.mxml Fri Jul 13 19:37:46 2012
@@ -35,7 +35,12 @@ limitations under the License.
 	<s:layout>
 		<s:VerticalLayout />
 	</s:layout>
-	<s:TextArea width="100%" height="100%" fontSize="14" text="{mplTextStr}" />
+	<s:TextArea 
+		width="100%" 
+		height="100%" 
+		fontSize="14" 
+		text="{mplTextStr}" 
+		editable="false"/>
 	<s:HGroup width="100%" height="50" verticalAlign="middle" paddingRight="15" >
 		<s:Spacer width="100%" />
 		<s:Button label="{ViewResourceConstants.getInstance().CLOSE_BTN_LABEL}" click="close()" styleName="genericBtnStyle"  />