Difference between revisions of "Logo.as"
From Organic Design wiki
m |
(try import from within script for PNG's) |
||
Line 1: | Line 1: | ||
− | + | createEmptyMovieClip( 'test', 2 ); | |
− | test. | + | test.loadMovie( '/wiki/images/6/6d/Xmlwiki.png' ); |
− | |||
− | |||
− | |||
− | attachMovie( 'ball', 'ball', | + | 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; }