Difference between revisions of "Logo.as"

From Organic Design wiki
m
(try import from within script for PNG's)
Line 1: Line 1:
attachMovie( 'square', 'test', 1 );
+
createEmptyMovieClip( 'test', 2 );
test._x = test._y = 50;
+
test.loadMovie( '/wiki/images/6/6d/Xmlwiki.png' );
test._xscale = test._yscale = 500;
 
test._visible = true;
 
test._alpha = 100;
 
  
attachMovie( 'ball', 'ball', 2 );
+
attachMovie( 'ball', 'ball', 3 );
 
ball._x = ball._y = 50;
 
ball._x = ball._y = 50;
 
ball._xscale = ball._yscale = 50;
 
ball._xscale = ball._yscale = 50;

Revision as of 09:23, 16 March 2006

createEmptyMovieClip( 'test', 2 ); test.loadMovie( '/wiki/images/6/6d/Xmlwiki.png' );

attachMovie( 'ball', 'ball', 3 ); ball._x = ball._y = 50; ball._xscale = ball._yscale = 50;

function reduce() { test._x = ball._x = _root._xmouse; test._y = ball._y = _root._ymouse; }