FileDownloader.MessageMaxFileCountExceededText Property

Supported browsers: Internet Explorer

Text of the message box which states that a limit on maximum number of files allowed for download in Internet Explorer 7 Protected Mode is exceeded.

Syntax

Initialize

JavaScript
<script type="text/javascript" src="iuembed.js">  </script>
<script type="text/javascript">
var fd = new FileDownloaderWriter("FileDownloaderID", 610, 500);
//...other params...
fd.addParam("MessageMaxFileCountExceededText", "Sorry, but you cannot download more than [count] files in IE Protected Mode. Please contact web site administrator for more information.");
//...other params...
fd.writeHtml();
</script>

Get/Set Value in Runtime

JavaScript
getFileDownloader("FileDownloaderID").setMessageMaxFileCountExceededText(value);
value = getFileDownloader("FileDownloaderID").getMessageMaxFileCountExceededText();

Property Value

A string value that specifies a text of the message box which states that a limit on maximum number of files allowed for download in Internet Explorer 7 Protected Mode is exceeded.

A special keyword is used in this text label:

[count]

Replaced with the limit for a number of files allowed for download.

Default value is "Sorry, but you cannot download more than [count] files in IE Protected Mode. Please contact web site administrator for more information.".

Remarks

This message may appear in Windows Vista only. It is used to notify Vista users about restrictions of the API which saves downloaded files. See the Using File Downloader in Windows Vista and 7 topic for details.

Note

You cannot change the limit for a number of files allowed for download in Internet Explorer 7 Protected Mode.

This property is necessary for localization of File Downloader.

See Also

Manual