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