Hi thanks for this awesome tutorial. Now I need some of your support..
                              I try to do make external swfs to call in to master flash movie but I dont figure it out.
                              Can you help me?
                              I just want to call swf, videos, or jpgs ect. into my movie not a “_blank” browser window
                              I try change this——->
                              function itemClicked(e:Event):void {
                                  //Get the item that dispatched the event
                                  var item:MenuItem = e.target as MenuItem;
                                  //Navigate to the URL that's assigned to the menu item
                                  var urlRequest:URLRequest = new URLRequest(item.linkTo);
                                  navigateToURL(urlRequest);
                              }
                              into this—->
                              function itemClicked(e:Event):void {
                                  //Get the item that dispatched the event
                                  var item:MenuItem = e.target as MenuItem;
                                  //Navigate to the URL that's assigned to the menu item
                                  var urlRequest:URLRequest = new URLRequest(item.linkTo);
                                  loader.load(urlRequest);
                                  addChild(loader);
                              }
                              but sure it dosnt working, then I get this massage
                              TypeError: Error #1034: Tür Dayatması başarısız oldu: flash.net::URLLoader@25b0eb81, flash.display.DisplayObject öğesine dönüştürülemiyor.
                                  at Vertical_fla::MainTimeline/itemClicked()
                               yes its turkish language but output panel gave me this
yes its turkish language but output panel gave me this
                              I hope you can help me 
                              Thanks….