Marcos is Currently...
- @kskszk ありがとうございます。フォントの件はすぐにでも直したいです。次のアップデートでは対応できると思います。 | 7 hours ago
- @kskszk どうもありがとう!ご意見をぜひ聞かせてください。cc/@flipboard_jp | 8 hours ago
- Flipboard sketch time machine http://t.co/A29L2m3q | 2 days ago
- @aaizemberg me encantaría. Este año por ahí lo veo muy difícil, pero estemos en contacto. | 2 weeks ago
- @raphaelschaad erstaunlich! | 2 weeks ago
shared items in Google Reader
- Dune House by Jarmund/Vigsnæs AS Architects | October 2011
- Barcode House by David Jameson | October 2011
- On the Corner | October 2011
- Looks Cool, But What Does It Actually Shelter? | October 2011
- Wall Photos | Facebook | October 2011
- La Fontaine Apartment \ Esrawe Studio | October 2011
- The HI-MACS® House in Bavaria, Germany | October 2011
- Ravenscroft Desk by Leonhard Pfeifer | October 2011
- Coldwater Studio by Casey Hughes Architects | September 2011
- A Unique LA Home With Arcade Wall Graphics | September 2011
recent photos on flickr
recent trips
- Returned from a trip to Prescott. | February 2010
- Started a trip to Prescott. | February 2010
- Returned from a trip to Los Angeles. | October 2009
- Started a trip to Los Angeles. | October 2009
- Returned from a trip to New York. | February 2009
news / AS3: attachMovieClip() no more!
October 29, 2005
AS3: attachMovieClip() no more!
aaah, "attachMovieClip"... just the sound of it sounds so retro already. plus... the library?! who the heck needs a library anymore? kiss the library bye-bye!! I'm sure we are going to remember these days with a lot of nostalgia.
package {
import flash.display.MovieClip;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
public class Test extends MovieClip {
// be sure this is pointing to an image in your hardrive
[Embed(source='c:\images\whatsup.jpg')] public var MyImage:Class;
public function Test() {
stage.align = StageAlign.TOP_LEFT;
stage.scaleMode = StageScaleMode.NO_SCALE;
var img:MyImage = new MyImage();
addChild(img);
}
}
}



















