Difference between revisions of "Logo.as"

From Organic Design wiki
m
m
Line 1: Line 1:
_root.createEmptyMovieClip( 'myNewSymbol', 0 );
+
createTextField( 'rc', 1, 0, 0, 50, 50 );
_root.myNewSymbol.createEmptyMovieClip( "swf", 0 );
 
_root.myNewSymbol.swf.attachMovie( 'ball', 'test', 0 );
 
_root.attachMovie( 'ball', 'test', 0 );
 
 
 
 
 
createTextField( 'rc', 1, 0, 0, 190, 200 );
 
 
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 }