Difference between revisions of "Logo.as"
From Organic Design wiki
m |
m |
||
| Line 1: | Line 1: | ||
| − | + | createTextField( 'rc', 1, 0, 0, 50, 50 ); | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | createTextField( 'rc', 1, 0, 0, | ||
with (rc) { | with (rc) { | ||
selectable = false; | selectable = false; | ||
| Line 14: | Line 8: | ||
text = 'hello world'; | text = 'hello world'; | ||
} | } | ||
| + | |||
| + | attachMovie( 'ball', 'test', 2 ); | ||
function reduce() { | function reduce() { | ||
// stuff | // stuff | ||
} | } | ||
Revision as of 06:46, 16 March 2006
createTextField( 'rc', 1, 0, 0, 50, 50 ); with (rc) {
selectable = false; _quality = 'BEST'; border = false; multiline = true; wordWrap = false; text = 'hello world'; }
attachMovie( 'ball', 'test', 2 );
function reduce() { // stuff }



