actionscript 3 - Embedded Image not Adding to Stage -


so have image i'm trying embed use sprite sheet. problem receiving no errors @ all, image can't added stage. it's nothing being loaded @ all.

i using flash cs 5.5 compiler. here code:

public class game extends movieclip {     [embed(source='../assets/images/sprite_sheet_1.png')]     private var sheetclass:class;     private var sheet:bitmap = new sheetclass();      public function game() {         addchild (sheet);     } } 

i've tried fiddling x , y values make sure nothing covering , can't see problems that, either. it's not showing up. don't understand why it's not working intended. aid fantastic. thanks!

p.s. - i'm trying embed sprite sheet because recommended better route using urlloaders, true? true because talking sprite sheets smallish flash game?

you need check checkbox called "export swc" under publish settings. i'm not sure of exact phrasing because don't have same version of flash have.

see this page , this page


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -