Marcos is Currently...
- San Fran to Yellowstone overland on a front cover "assignment" for Flipboard ;) http://post.ly/uRDH | 3 days ago
- @jackiefree hiii! | 5 days ago
- @kkfactory 久しぶり!ありがとう! | 6 days ago
- @MCHammer btw, this is the App I was telling you about today: it's called iRhyme, and done by @charlietuna http://j.mp/9aoc9u | 1 week ago
shared items in Google Reader
- Cat-trashing lady outed by internet in less than 24 hours | 2 weeks ago
- Fuck You by Cee-Lo | 2 weeks ago
- The timeless design of National Geographic | 2 weeks ago
- Pancake flipping robot | last month
- Ugur Derinogullu | last month
- 5 Porcelain Table Pieces By Aldo Bakker | last month
- Victorian Star Wars portraits | June 2010
- Place, Space and the Mobile Interface | June 2010
- Apple, AT&T sued over iPad data plan change | June 2010
- Alexis Marcou | June 2010
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);
}
}
}



















