// paths[0] is section, paths[1] is title function printPage() { var spath = SWFAddress.getPath(); trace("print "+spath); var paths = spath.substr(1,spath.length-2).split("/"); // no printing homepage if (paths[0] eq "" and paths[1] eq undefined) { trace("Sorry, can't print this page."); return; } var my_lv:LoadVars = new LoadVars(); my_lv.url_title = (paths[1] eq undefined) ? "" : paths[1]; my_lv.section = paths[0]; my_lv.send("http://www.allflashwebsite.com/demo3/print/", "_afwprint", "GET"); }