Recent Posts
- (02/24) Calling an Element from a Helper TAGS:CakephpWeb ProgrammingUsageTutorialExample
- (10/14) Forcing A Single Join in CakePHP PaginationTAGS:CakephpCakephp 13DatabaseErrorsHabtmMysqlMssqlWeb ProgrammingUsage
- (08/11) Inserting NOW() into MySQL Using CakePHPTAGS:CakephpDatabaseMysqlMssqlWeb ProgrammingUsage
- (08/07) Best PaginateCount for CakePHP - with Group By SupportTAGS:CakephpBehaviorsWeb ProgrammingUsageDatabaseExampleMysqlHabtmHack
- (04/03) CakePHP Error Messages Not Showing on FormTAGS:CakephpCakephp 13Web ProgrammingErrorsUsage
- (02/06) Sorting Paginated Results Using a Related Model Field in CakePHPTAGS:CakephpWeb ProgrammingUsageExample
- (11/02) Changing CakePHP's Model useTable on the FlyTAGS:CakephpWeb ProgrammingMysqlDatabaseExampleTutorial
- (10/18) The Funniest Error Message Ever - Thank You EclipseTAGS:EclipseWeb ProgrammingErrorsHumorWindowsUsageSoftwarePhpCakephp
Subscribe to my feed
MainelyDesign.com Blog
Changing Filetypes Shown in SWF Upload File Browser
Posted on 08/25/2009 at 04:17 pm by Kevin Wentworth
Viewed 2,265 times | 0 comments
It's easy to change which file types are allowed to show up (and are displayed) when you browse for files to upload through SWF Upload. SWF Upload makes it easy to upload multiple files in PHP.
I just had to hunt through some source files until I found this in my SWF Upload config. (goes in the new SWFUpload() function)
- <script type="text/javascript">
- var swfu;
- window.onload = function () {
- swfu = new SWFUpload({// File Upload Settings
- file_size_limit : "8 MB", // 2MB
- file_types : "*.jpg; *.gif",
- file_types_description : "Image Files (JPG, GIF)",
- file_upload_limit : "0",
- });
- };
- </script>
The options for 'file_types:' and 'file_types_desciption:' will do it. Note the semi colon that seperates the *.jpg; *.gif; *.any_extension
Cheers,
-Kevin Wentworth
Tags for Changing Filetypes Shown in SWF Upload File Browser
Jquery | Swfupload | Vendors | Gear | Web Design | Web Programming | Site Avenger | Php
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!
