Difference between revisions of "Logo.as"

From Organic Design wiki
(add some i ching insted of latin)
(Changed to yi text (and changed to more +ve hex ;-))
Line 1: Line 1:
 +
// Message
 +
msg = "THE JUDGMENT<br><br>";
 +
msg += "PEACE. The small departs,<br>";
 +
msg += "The great approaches.<br>";
 +
msg += "Good fortune. Success.<br><br>";
 +
msg += "THE IMAGE<br><br>";
 +
msg += "Heaven and earth unite:<br>";
 +
msg += "the image of PEACE.<br>";
 +
msg += "Thus the ruler divides and<br>";
 +
msg += "completes the course of";
 +
msg += "heaven and earth,<br>";
 +
msg += "And so aids the people.</font>";
 +
 
// Textbox
 
// Textbox
createTextField( 'rc', 1, 0, 0, 190, 120 );
+
createTextField( 'rc', 1, 0, 0, 190, 200 );
with ( fmt = new TextFormat() ) {
 
align = "left";
 
bold = true;
 
bullet = false;
 
color = 0x808099;
 
font = "Arial";
 
size = 12;
 
}
 
 
with ( rc ) {
 
with ( rc ) {
setNewTextFormat( fmt );
 
 
selectable = false;
 
selectable = false;
 
_quality = 'BEST';
 
_quality = 'BEST';
 
border = false;
 
border = false;
//multiline = true;
+
multiline = true;
 
wordWrap = false;
 
wordWrap = false;
 
html = true;
 
html = true;
htmlText = "<font face=\"arial\" color=\"#8080AA\">
+
htmlText = '<font face="arial" color="#8080AA">'+msg+'</font>';
THE JUDGMENT<br/>
 
<br/>
 
YOUTHFUL FOLLY has success.<br/>
 
It is not I who seek the young fool;<br/>
 
The young fool seeks me.<br/>
 
At the first oracle I inform him.<br/>
 
If he asks two or three times, it is importunity.<br/>
 
If he importunes, I give him no information.<br/>
 
Perseverance furthers.</font>";
 
 
}
 
}
 
// Logo
 
// Logo
 
attachMovie( 'logo', 'xmlwiki', 2 );
 
attachMovie( 'logo', 'xmlwiki', 2 );
 
//xmlwiki._alpha = 75;
 
//xmlwiki._alpha = 75;

Revision as of 10:11, 23 February 2006

// Message msg = "THE JUDGMENT

"; msg += "PEACE. The small departs,
"; msg += "The great approaches.
"; msg += "Good fortune. Success.

"; msg += "THE IMAGE

"; msg += "Heaven and earth unite:
"; msg += "the image of PEACE.
"; msg += "Thus the ruler divides and
"; msg += "completes the course of"; msg += "heaven and earth,
"; msg += "And so aids the people.";

// Textbox createTextField( 'rc', 1, 0, 0, 190, 200 ); with ( rc ) { selectable = false; _quality = 'BEST'; border = false; multiline = true; wordWrap = false; html = true; htmlText = ''+msg+''; } // Logo attachMovie( 'logo', 'xmlwiki', 2 ); //xmlwiki._alpha = 75;