Difference between revisions of "Logo.as"

From Organic Design wiki
m
m
Line 12: Line 12:
 
_root.myNewSymbol.attachMovie( 'xmlwiki', 'test', 0 );
 
_root.myNewSymbol.attachMovie( 'xmlwiki', 'test', 0 );
 
attachMovie( 'xmlwiki', 'test', 3 );
 
attachMovie( 'xmlwiki', 'test', 3 );
 +
attachMovie( 'ball', 'balltest', 4 );
 
test._y=50;
 
test._y=50;
  

Revision as of 06:59, 16 March 2006

createTextField( 'rc', 1, 0, 0, 50, 50 ); with (rc) {

   selectable = false;
   _quality = 'BEST';
   border = false;
   multiline = true;
   wordWrap = false;
   text = 'testing';
   }

_root.createEmptyMovieClip( 'myNewSymbol', 2 ); _root.myNewSymbol.attachMovie( 'xmlwiki', 'test', 0 ); attachMovie( 'xmlwiki', 'test', 3 ); attachMovie( 'ball', 'balltest', 4 ); test._y=50;

function reduce() { // stuff }