Aurigma Video Uploader 1.0
VideoUploader.UploadMovie1FitMode Property
Fit mode of the first movie.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var vu = new VideoUploaderWriter("VideoUploaderID", 610, 500); //...other params... vu.addParam("UploadMovie1FitMode", "Off"); //...other params... vu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getVideoUploader("VideoUploaderID").setUploadMovie1FitMode(value);
value = getVideoUploader("VideoUploaderID").getUploadMovie1FitMode();Property Value
A member of this enumeration that specifies a fit mode of the first movie:
| String value | Integer value | Description |
|---|---|---|
| Off | 0 | Do not send a movie of this size to the server. |
| Fit | 1 | Send a movie which is resized to fit the specified rectangle. |
| Width | 2 | Send a movie which is resized to have the width which is not larger than the specified one. |
| Height | 3 | Send a movie which is resized to have the height which is not larger than the specified one. |
| ActualSize | 4 | Send the movie with the original video file dimensions. |
If unsupported string value is passed, it is interpreted as Off.
Default value is "Off".