Handle OpenOffice Files + TXT files
git-svn-id: http://bigbluebutton.googlecode.com/svn/trunk@3096 af16638f-c34d-0410-8cfa-b39d5352b314
This commit is contained in:
parent
d1b8867019
commit
498ddbb370
@ -117,10 +117,13 @@
|
||||
|
||||
private function selectFile():void{
|
||||
fileToUpload.addEventListener(Event.SELECT, onSelectFile);
|
||||
fileToUpload.browse([new FileFilter("Presentation file", "*.pdf;*.doc;*.docx;*.xls;*.xlsx;*.ppt;*.pptx"),
|
||||
new FileFilter("PDF", "*.pdf"), new FileFilter("WORD", "*.doc;*.docx"),
|
||||
new FileFilter("EXCEL", "*.xls;*.xlsx"),
|
||||
new FileFilter("POWERPOINT", "*.ppt;*.pptx")]);
|
||||
fileToUpload.browse([
|
||||
new FileFilter("Presentation file", "*.pdf;*.doc;*.docx;*.xls;*.xlsx;*.ppt;*.pptx;*.txt;*.rtf;*.odt;*.ods;*.odp;*.odg;*.odc;*.odi;*.jpg;*.png"),
|
||||
new FileFilter("PDF", "*.pdf"),
|
||||
new FileFilter("WORD", "*.doc;*.docx;*.odt;*.rtf;*.txt"),
|
||||
new FileFilter("EXCEL", "*.xls;*.xlsx;*.ods"),
|
||||
new FileFilter("POWERPOINT", "*.ppt;*.pptx;*.odp"),
|
||||
new FileFilter("IMAGE", "*.jpg;*.jpeg;*.png")]);
|
||||
}
|
||||
|
||||
private function onSelectFile(e:Event):void{
|
||||
|
Loading…
Reference in New Issue
Block a user