you are in: codestackercodes [RSS] → tag: flash [RSS]

valid Flash example for XHTML 1.0 Strict (XHTML 1.1) Delicious

show/hide lines
   1  <object type="application/x-shockwave-flash" data="images/banner.swf" width="288" height="128">
   2  <param name="movie" value="images/banner.swf" />
   3  <img src="banner.gif" width="288" height="128" alt="banner" />
   4  </object>
created by leozera — 21 July 2008 — get a short url — tags: embed flash xhtml embed

remove all movieclips Delicious

a simple sample

show/hide lines
   1  // 3 solutions
   2  
   3  for (var i in holder) {
   4      if(typeof(holder[i])=="movieclip" && holder[i]._name.substr(0,4)=="foo_") {
   5             holder[i].removeMovieClip();
   6      }
   7  }
   8  
   9  for (var i=0;i<noOfclips;i++) {
  10      var clip=_root["mc"+i];
  11      clip.removeMovieClip();
  12  }
  13  
  14  for (var n in this) { 
  15      removeMovieClip(this[n]); 
  16  }
created by anonymous — 04 July 2008 — get a short url — tags: actionscript flash movieclip embed