Ideally I would like to import a blog from typepad.com into my flash website and have tried copying the CSS from typepad (http://typepad.com/.shared/themes/walt/theme-vicksburg_red.css) into the same folder as my .swf and using
var css = new TextField.StyleSheet();
css.load(“http://typepad.com/.shared/themes/walt/theme-vicksburg_red.css”);
myText.styleSheet = css;
but all that imports is the plain text. I also tried adding a crossdomain.xml file to the root folder but still no luck. Is there something I’m missing in the CSS that flash cant read or load or is it a different problem entirely?