Marcos is Currently...
- "The day Before" is probably going to be my last "weekend photo" for a while: http://flic.kr/p/7Ja9iD | Yesterday
- @mariroom 今年中にグランドキャニョン絶対行こうよ!ギーク観光ツアーで!参加するメンバー募集頼む!ルート&企画は任せて。 | 3 days ago
- @sho_nishiyama ありがとう!がんばります! | 3 days ago
- @mariroom おっす。マリちゃんと絶対また会えるっしょ。SFいつくる? | 3 days ago
- @boku ありがとうございます。はい、新しい仕事の事、すごく考えました!今しかないです!頑張ります!!Ottikiのソーシャルアプリですか?!楽しみ! | 3 days ago
shared items in Google Reader
- What Do You Suggest? Exploring the Collective Lives of Google Users | 5 days ago
- Today's Extreme-er Font Dork Moment | 1 week ago
- REWARD | 6 days ago
- Where Bars Trump Grocery Stores | 1 week ago
- Daily Bunch: ‘Mad Libs’ Style Forms Increased Conversion Rates By 25 To 40 Percent | 2 weeks ago
recent photos on flickr
recent trips
- 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
- Started a trip to New York. | February 2009
- Returned from a trip to Rosario. | January 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);
}
}
}



















