Author: hqm
Date: 2008-03-02 18:36:22 -0800 (Sun, 02 Mar 2008)
New Revision: 8152

Added:
   openlaszlo/branches/devildog/test/swf9/multiline-text.lzx
Modified:
   openlaszlo/branches/devildog/WEB-INF/lps/lfc/views/LzText.js
   openlaszlo/branches/devildog/test/swf9/hello-font.lzx
   openlaszlo/branches/devildog/test/swf9/hello.lzx
Log:
Change 20080302-hqm-4 by [EMAIL PROTECTED] on 2008-03-02 21:35:10 EST
    in /Users/hqm/openlaszlo/devildog
    for http://svn.openlaszlo.org/openlaszlo/branches/devildog

Summary: multiline text support for swf9

New Features:

Bugs Fixed:

Technical Reviewer: hqm
QA Reviewer: (pending)
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:

uncomment the line which sets the multiline text flag for swf9 version of LzText

Tests:

A      test/swf9/multiline-text.lzx



Modified: openlaszlo/branches/devildog/WEB-INF/lps/lfc/views/LzText.js
===================================================================
--- openlaszlo/branches/devildog/WEB-INF/lps/lfc/views/LzText.js        
2008-03-02 04:57:50 UTC (rev 8151)
+++ openlaszlo/branches/devildog/WEB-INF/lps/lfc/views/LzText.js        
2008-03-03 02:36:22 UTC (rev 8152)
@@ -245,8 +245,8 @@
   */
 override function construct ( parent, args ) {
 
-    //    this.password = ('password' in args && args.password)  ? true : 
false;
-    //    this.multiline = ('multiline' in args) ? args.multiline : null;
+    this.password = ('password' in args && args.password)  ? true : false;
+    this.multiline = ('multiline' in args) ? args.multiline : null;
 
     super.construct(parent, args);
 

Modified: openlaszlo/branches/devildog/test/swf9/hello-font.lzx
===================================================================
--- openlaszlo/branches/devildog/test/swf9/hello-font.lzx       2008-03-02 
04:57:50 UTC (rev 8151)
+++ openlaszlo/branches/devildog/test/swf9/hello-font.lzx       2008-03-03 
02:36:22 UTC (rev 8152)
@@ -16,11 +16,11 @@
           fontsize="18" font="xxArioso">Arioso aaa bbb ccc ddd eee fff ggg hhh 
iii jjj kkk lll mmm nnn ooo ppp qqq</text>
 
 
-    <text y="100"
+    <text y="100" name="f1"
           fontsize="36" font="xxArioso">Arioso aaa bbb ccc ddd eee fff ggg hhh 
iii jjj kkk lll mmm nnn ooo ppp qqq</text>
 
 
-    <text y="150"
+    <text y="150" name="f2"
           fontsize="36" font="chev">Chevaraor aaa bbb ccc ddd eee fff ggg hhh 
iii jjj kkk lll mmm nnn ooo ppp qqq</text>
 
 

Modified: openlaszlo/branches/devildog/test/swf9/hello.lzx
===================================================================
--- openlaszlo/branches/devildog/test/swf9/hello.lzx    2008-03-02 04:57:50 UTC 
(rev 8151)
+++ openlaszlo/branches/devildog/test/swf9/hello.lzx    2008-03-03 02:36:22 UTC 
(rev 8152)
@@ -1,5 +1,5 @@
 <canvas width="1000" height="600" bgcolor="#eeeeff"> 
-    <font name="chev" src="chevaraor.ttf"/>
+  <font name="chev" src="chevaraor.ttf"/> 
 
   <!--    <text bgcolor="#ccffcc">Hello OpenLaszlo!</text> -->
   <text oninit="this.setText('runtime='+canvas.runtime)"/>
@@ -51,6 +51,7 @@
     <view id="foo" bgcolor="0xcccccc" x="-100" y="-100"  height="200" 
width="200"
           onclick="this.parent.animate('rotation', 90, 1000, true)" >
 
+
       <text font="chev" embedfonts="true">This is <b><i>some</i></b> 
text</text>
 
     <view bgcolor="blue" width="40" height="40" 

Added: openlaszlo/branches/devildog/test/swf9/multiline-text.lzx


Property changes on: openlaszlo/branches/devildog/test/swf9/multiline-text.lzx
___________________________________________________________________
Name: svn:mime-type
   + text/plain
Name: svn:eol-style
   + native


_______________________________________________
Laszlo-checkins mailing list
[email protected]
http://www.openlaszlo.org/mailman/listinfo/laszlo-checkins

Reply via email to