Sharing Ideas And Solutions <a href="index.cfm?fuseaction=idea.newsletter_subscribe">Our Newsletter</a> Downloadable Solutions PHP Classes For Small &amp; Medium Enterprise Free For Non-Profit Organization Customer Feedback Contact Us Featured Web Template View More Templates MasRizal In Numbers * 25 years in business. * 6856 corporations in 67 countries have chosen our products and service. * 73.20% are using more than one solutions from us. - MasRizal &amp; Partners -Enhancing Business With Trust CF_FlashUpload CF_FlashUpload is a complete solution to replace the old &lt;input type=&quot;File&quot;&gt; with additional functionalities:1. Filter file that can be uploaded. People can only upload files which you specify.2. Limit maximum file size. Keep your bandwidth and server resources to the optimum level. Don't let your competitor upload unecessary files to bring down your server.3. Progress bar. Let your user know how goes the upload. Don't let them wondering whether your website respon to their upload request or not. Why CF_FlashUpload? If you're the business owner, do you want your website uses the latest technology or the 10 years old one? CF_FlashUpload is a Flash based interactive file upload component. If you're a programmer, do you want to get into next level or stay like old HTML programmers do? Using CF_FlashUpload you just set yourself to a higher level than any rookies that only knows &lt;input type=&quot;file&quot;&gt; to upload a file. Join thousands of other programmers and businesses who have successfully offer a better way to upload file for their users. People will love you and your work. A true bargain! Why use a Java based upload component that's more expensive and harder to use? Less effort to deliver your project on time and on budget. Why spend lots of time and money learning Flash language if you can have all you needs with CF_FlashUpload? Using CF_FlashUpload you can devote your time focusing on other things more important for you. Spend more time on your business rather than writing codes (and debugging them) CF_FlashUpload is the right solution for you! Note: The original source code for FlashUpload.swf is not distributed and it's not intended for sale.Contact us if you want to customize this custom tag further. Features Requirements Usage Application Example <h1> Easy to use! Simple operation for user.</h1>[h1] Just like ordinary file upload field Multi-platform.[/h1][h1] Works on all Macromedia Flash Player 8 supported platform.[/h1][h1] No Java applet to install, no &quot;unknown&quot; ActiveX to install.[/h1][h1] Instead this tag uses a world-leading Flash Player 8 from Macromedia Small footprint.[/h1][h1] Only 36KB.[/h1][h1] Ability to filter allowed files to upload by extensions.[/h1][h1] Ability to limit maximum uploaded file size.[/h1][h1] .[/h1][h1] Progress bar.[/h1][h1] Show the progress of upload process in real-time, not just a simple animation.[/h1][h1] Event callback.[/h1][h1] Track the status of upload from JavaScript.[/h1][h1]Ability to trigger the upload process from JavaScript too.[/h1][h1] Plain CF custom tag.[/h1][h1] Shared hosting friendly.[/h1][h1]Just copy this custom tag in your ColdFusion working directory, and you're set [/h1]Supported ColdFusion Server: ColdFusion 5 ColdFusion MX 6, 6.1 ColdFusion 7 ColdFusion 8 on all operating systems Supported browsers:All browsers having Macromedia Flash Player 8.The custom tag will trigger the browser to download the player if it's not installed yet.Click here for more information to download Macromedia Flash Player Notes for MacOS and Opera user: Due to problem with Flash Player 8, both platform may not be able to utilize all functions in CF_FlashUpload. See limitation below. Limitation:Due to limitation in Flash, HTML, Webserver and Macromedia ColdFusion, below restrictions apply:1. FlashUpload CAN NOT be included in the &lt;form&gt;. Instead put this tag outside the form, and do the upload using JavaScript (if ShowUploadButton is set to false)Check this file: example_2.cfm on how to achieve this.2. The uploaded formfield always use the name: &quot;Filedata&quot;. So the &quot;Action&quot; URL must handle this &quot;form.Filedata&quot; variable.3. MaximumFileSize is also limited by Flash, ColdFusion and webserver configuration.Please consult ColdFusion and your webserver documentation to allow large file upload (Eg: 64MB or more)4. OS and browser issues- Opera 8 does not yet support Flash 8 ExternalInterface call. Therefor the upload process MUST be triggered inside cf_flashupload. It can't be called from Javascript function.- Macintosh. Flash Player 8 for Macintosh has a known IO error bug. The temporary workaround is to put a blank line after uploading files. We encourage downloading the evaluation version first, install and test it in your environment.Click here to download the free evaluation version &lt;cf_FlashUpload Name=&quot; The name of this object, required&quot; Action=&quot;URL of script that will handle the uploaded file, required&quot; Style=&quot;limited CSS-style to customize FlashUpload user interface. Optional&quot; RedirectTo=&quot;URL that will be redirected to upon upload completeion. Optional&quot; ShowUploadButton=&quot;true/false. Show the upload button in FlashUpload object. Optional, default=true&quot; MaxFileSize=&quot;Maximum file size allowed for upload in bytes. Optional, default=0=unlimited&quot; FileFilter=&quot;List of title and file extensions allowed for upload. Optional, default=all files&quot; OnProgress=&quot;Name of JavaScript function that will handle events send from FlashUpload. Optional&quot;&gt; Limitation:Due to limitation in Flash, HTML, Webserver and Macromedia ColdFusion, below restrictions apply:1. FlashUpload CAN NOT be included in the &lt;form&gt;. Instead put this tag outside the form, and do the upload using JavaScript (if ShowUploadButton is set to false)Check this file: example_2.cfm on how to achieve this.2. The uploaded formfield always use the name: &quot;Filedata&quot;. So the &quot;Action&quot; URL must handle this &quot;form.Filedata&quot; variable.3. MaximumFileSize is also limited by Flash, ColdFusion and webserver configuration.Please consult ColdFusion and your webserver documentation to allow large file upload (Eg: 64MB or more) We encourage downloading the evaluation version first, install and test it in your environment.Click here to download the free evaluation version Explanation:1. StyleCF_FlashUpload allow limited CSS-style to be applied to this tag.Those are: color and border-color. Other style will be ignored.For example: &lt;cf_flashupload style=&quot;color:#000000; border-color:#cc0000&quot;. Don't forget to use the &quot;#&quot;2. MaximumFileSizeThe maximum uploaded file size in bytes.See limitation #3 above3. FileFilterIs a comma delinmited list of title and file extensions allowed to be uploaded. Each extensions is separated by ;For example: To allow MS Word file -&gt; FileFilter=&quot;Microsoft Word Files,*.doc;*.rtf&quot;To allow Images -&gt; FileFilter=&quot;Images,*.jpg;*.gif;*.png;*.bmp&quot;To allow MS Word, MS Excel, and PDF upload -&gt; FileFilter=&quot;Word,*.doc;*.rtf,Excel,*.xls;*.csv,PDF,*.pdf&quot;(Note the &quot;,&quot; and &quot;;&quot;)4. OnProgressCF_FlashUpload allow JavaScript functions to handle event send by the object.For example:&lt;cf_FlashUpload OnProgess=&quot;WhatIsIt&quot;&gt;In the HTML, you will have to add a JavaScript function named &quot;WhatIsIt&quot; with one parameter&lt;script language=&quot;JavaScript&quot;&gt;function WhatIsIt(iFlashUploadStatus){if (iFlashUploadStatus==1) alert(&quot;Upload completed&quot;);else if (iFlashUploadStatus==-1) alert(&quot;Upload canceled&quot;);else if (iFlashUploadStatus==-2) alert(&quot;Upload Fail: IO error&quot;);else if (iFlashUploadStatus==-2) alert(&quot;Upload Fail: Security error&quot;);else if (iFlashUploadStatus==-4) alert(&quot;Upload Fail: HTTP Eeror&quot;);if (iFlashUploadStatus==2) document.body.style.cursor=&quot;wait&quot;; // uploadingelse document.body.style.cursor=&quot;&quot;;}&lt;/script&gt; 5. Triggering upload process from JavaScriptTo start uploading triggered by JavaScript, call this function: objFlash.FlashUpload_DoUpload()With objFlash is the FlashUpload object in your HTML.To get this objFlash, you can use this code snippet:if(navigator.appName.indexOf(&quot;Microsoft&quot;) != -1) objFlash = window.#form.FlashUploadName#;else objFlash = window.document.#form.FlashUploadName#;6. FlashUpload functions that can be called from JavaScript are:FlashUpload_DoUpload -&gt; to start file upload, as explained aboveFlashUpload_GetFileName -&gt; to get the uploaded filenameFlashUpload_GetStatus -&gt; to get the last status of FlashUpload1 = upload completed0 = upload hasn't been enabled. File not selected-1 = upload canceled-2 = upload fail because of IO error-3 = upload fail because of security error-4 = upload fail because of HTTP errorThis tag comes in handy when your website requires file upload from user.Some web applications that may benefit by using this tag are: e-Commerce websites Photography websites Blogs Backend application and all other applications which need file upload capability For a complete example please click this link (Open in new window) (Tabbed page powered by CF_Tab) Price License Purchase $49.99 1 Single developer $499.90 1 Site license $749.85 1 Corporate license Licensing Information Goods and services provided by MasRizal Sold by 2CheckOut.com Inc. (Ohio, USA). 2Checkout &amp; MasRizal accepts customer orders via online checks, Visa, MasterCard, Discover, American Express, Dinners, JCB and debit cards with the Visa and MasterCard logo. PayPal and purchasing using your existing bank account are limited to US currency. CF_FlashUpload is available for immediate download. After you complete the order, you will receive a confirmation email with your download link. Please ensure your email address is entered correctly during the order process. Customers Who Purchased CF_FlashUpload Usually Purchased These Products Too 1. CSV2Query 2. CF_Email_Validator 3. Query2CSV 4. CF_GUnzip 5. Related Select 6. Slidebar Menu 7. CF_Tab 8. Resize Image 9. Verify Image 10. ColdFusion Blogger - CF_Blogger Why Customers Choose Us Find out why our valued customers choose MasRizal &amp; Partners solutions. Click here to see their reasons Featured Customers More than 6850 companies rely on MasRizal &amp; Partners solutions. Click here to see our featured customers Free For Non-Profit Organization MasRizal Charity program allows eligible nonprofit organizations to get MasRizal's products at no cost. Click here for program detail Testimonials Take the word of our clients Top Selling Products See our top selling products Let Us Help You Can't find solution you need? Click here to get solution from MasRizal.
progress,cold,upload,tag,bar,flash,cf,applet,custom,fusion,coldfusion,javascriptSharing Ideas And Solutions

Our Newsletter
Downloadable Solutions
Free For Non-Profit Organization
Customer Feedback
Contact Us
Image Compressor 2008.
Batch recompress, resize, rotate and watermark your image.
Save up to 10x more in any storage.
Speed up upload, download, and e-mail transmission time.
Featured Web Template
MasRizal In Numbers

* 25 years in business.
* 6856 corporations in 67 countries have chosen our products and service.
* 73.20% are using more than one solutions from us.

- MasRizal & Partners -
Enhancing Business With Trust
CF_FlashUpload

CF_FlashUpload is a complete solution to replace the old <input type="File"> with additional functionalities:
1. Filter file that can be uploaded. People can only upload files which you specify.
2. Limit maximum file size. Keep your bandwidth and server resources to the optimum level. Don't let your competitor upload unecessary files to bring down your server.
3. Progress bar. Let your user know how goes the upload. Don't let them wondering whether your website respon to their upload request or not.

Why CF_FlashUpload?

  • If you're the business owner, do you want your website uses the latest technology or the 10 years old one? 
    CF_FlashUpload is a Flash based interactive file upload component.
  • If you're a programmer, do you want to get into next level or stay like old HTML programmers do?
    Using CF_FlashUpload you just set yourself to a higher level than any rookies that only knows <input type="file"> to upload a file.
  • Join thousands of other programmers and businesses who have successfully offer a better way to upload file for their users. People will love you and your work.
  • A true bargain! Why use a Java based upload component that's more expensive and harder to use?
  • Less effort to deliver your project on time and on budget. Why spend lots of time and money learning Flash language if you can have all you needs with CF_FlashUpload?
  • Using CF_FlashUpload you can devote your time focusing on other things more important for you. Spend more time on your business rather than writing codes (and debugging them)

CF_FlashUpload is the right solution for you!

Note:
The original source code for FlashUpload.swf is not distributed and it's not intended for sale.
Contact us if you want to customize this custom tag further.

(Tabbed page powered by CF_Tab)   

Price License Purchase
$49.99 1 Single developer
$499.90 1 Site license
$749.85 1 Corporate license
Licensing Information

2Checkout.com accepts PayPal 2Checkout.com accepts PayPal Pay Later 2Checkout.com accepts these debit and credit cards

Goods and services provided by MasRizal
Sold by 2CheckOut.com Inc. (Ohio, USA).
2Checkout & MasRizal accepts customer orders via online checks, Visa, MasterCard, Discover, American Express, Dinners, JCB and debit cards with the Visa and MasterCard logo. PayPal and purchasing using your existing bank account are limited to US currency.

CF_FlashUpload is available for immediate download.
After you complete the order, you will receive a confirmation email with your download link.
Please ensure your email address is entered correctly during the order process.



Customers Who Purchased CF_FlashUpload Usually Purchased These Products Too
1. CSV2Query 2. CF_Email_Validator 3. Query2CSV
4. CF_GUnzip 5. Related Select 6. Slidebar Menu
7. CF_Tab 8. Resize Image 9. Verify Image
10. ColdFusion Blogger - CF_Blogger

Why Customers Choose Us
Find out why our valued customers choose MasRizal & Partners solutions.
Click here to see their reasons

Featured Customers
More than 6850 companies rely on MasRizal & Partners solutions.
Click here to see our featured customers

Free For Non-Profit Organization
MasRizal Charity program allows eligible nonprofit organizations to get MasRizal's products at no cost.
Click here for program detail
Testimonials
Take the word of our clients

Top Selling Products
See our top selling products

Let Us Help You
Can't find solution you need?
Click here to get solution from MasRizal.
© Copyright 1999-2024 MasRizal & Partners
All Rights Reserved.
OISV - Organization of Independent Software Vendors - Contributing Member    Solutions for designers provided by TemplateMonster.com    Payment processing by 2Checkout    2Checkout.com supports Master Card Secure Code    2Checkout.com is verified by Visa
HALF PRICE SLASH TODAY!
Get 50% Discount
on Premium Component Collection

+ FREE Lifetime Upgrade.
Best Investment.


Offer valid until March 31, 2024

Use Coupon: HALFPRICE3
(Copy this coupon and use it during checkout)

Buy Premium Component Collection With 50% Discount

[ X Close This Window ]