why there is no download?
Hello!
i've a textfield with an Mouse-Over - Listener because i want do download a file.
the code for downloading is this one
private function datei_laden(event:MouseEvent):void
{
trace(event.currentTarget.name);
var request:URLRequest = new URLRequest();
request.url = "http://sonok.lima-city.de/bg_bild_2.png"
var fr:FileReference = new FileReference();
fr.addEventListener(Event.OPEN, datei_laden_status);
fr.download(request);
//var laden_start:DateiDownload = new DateiDownload();
}