Welcome Guest! You need to login or register to make posts.

Notification

Icon
Error

Options
Go to last post Go to first unread
akak1701  
#1 Posted : Tuesday, October 25, 2005 3:56:21 PM(UTC)
akak1701

Rank: Member

Groups: Member
Joined: 10/25/2005(UTC)
Posts: 10

When I set the bottom pane text it works as intended in Java, but it does not show in ActiveX. However, the documentation states that it does work. I am on the latest downloadable build (3.5.120.0).

Also, can you enable line breaks in the display window via something like \n? This would be helpful for formatting. When you have too long of a sentence it goes outside the area and is unviewable.

Greg
Fedor  
#2 Posted : Sunday, October 30, 2005 1:25:15 PM(UTC)
Fedor

Rank: Advanced Member

Groups: Member, Administration, Moderator
Joined: 7/28/2003(UTC)
Posts: 1,660

Thanks: 5 times
Was thanked: 76 time(s) in 74 post(s)
Hello Greg,

Quote:
akak1701 (10/25/2005)
When I set the bottom pane text it works as intended in Java, but it does not show in ActiveX. However, the documentation states that it does work. I am on the latest downloadable build (3.5.120.0).

Also, can you enable line breaks in the display window via something like \n? This would be helpful for formatting. When you have too long of a sentence it goes outside the area and is unviewable.


Could you post or email us the code you use?
Best regards,
Fedor Skvortsov
akak1701  
#3 Posted : Monday, November 14, 2005 4:48:49 AM(UTC)
akak1701

Rank: Member

Groups: Member
Joined: 10/25/2005(UTC)
Posts: 10

Code:
<script language="javascript">

					function ImageUploader_InitComplete()
					{
						document.getElementById("installmsg").style.display="none";
					}

					var iu = new ImageUploaderWriter("ImageUploader", 770, 550);

					//For ActiveX control we specify full path for CAB file
					iu.activeXControlCodeBase = "Aurigma/ImageUploader3.cab";
					iu.activeXControlVersion = "3,5,124,0";

					//For Java applet we specify only directory with JAR files
					iu.javaAppletCodeBase = "Aurigma/";
					iu.javaAppletCached = true;
					iu.javaAppletVersion = "1.1.02.0";

					iu.addParam("Layout", "ThreePanes");
					iu.addParam("FolderView", "Thumbnails");
					iu.addParam("UploadView", "List");


					iu.addParam("DropFilesHereText", "Drag files from above, then click send. For more detailed help, see the information on the page below this window.");

					// Disable the source file.
					iu.addParam("UploadSourceFile", "False");

					iu.addParam("UploadThumbnail1FitMode", "fit");
					iu.addParam("UploadThumbnail1Width", "800");
					iu.addParam("UploadThumbnail1Height", "800");
					iu.addParam("UploadThumbnail1JpegQuality", "90");

					iu.addParam("UploadThumbnail2FitMode", "off");
					iu.addParam("UploadThumbnail3FitMode", "off");

					iu.addParam("BackgroundColor", "#FFFFFF");
					iu.addParam("PaneBackgroundColor", "#FFFFFF");

					iu.addParam("ShowButtons", "True");
					iu.addParam("ShowStatusPane", "True");
					iu.addParam("ShowDescriptions", "False");


					iu.addParam("ShowDebugWindow", "True");
					iu.addParam("AdditionalFormName", "Form1");
					iu.addParam("Action", "UploadCapture.asp?ClientSite=<%=Server.URLEncode(strClientSite)%>&amp;JobID=<%=intJobID%>");
					iu.addParam("RedirectUrl", "uploadcomplete.asp?JobID=<%=intJobID%>&amp;JobName=<%=Server.URLEncode(strJobName)%>");

					iu.addParam("LicenseKey", "xxxxxxxxxxxxxxxxxxx");

					//iu.addParam("MaxFileCount", "1000");
					//iu.addParam("MaxFileSize", "5000000");
					//iu.addParam("MaxTotalFileSize", "10485760");

					iu.addParam("TreePaneWidth", "170");
					iu.addParam("PreviewThumbnailSize", "65");
					iu.addParam("FolderPaneHeight", "400");

					iu.addParam("FileMask", "*.jpg;*.jpeg;*.jpe;*.gif;*.png;");

					iu.addEventListener("UploadFileCountChange", "ImageUploader_UploadFileCountChange");

					iu.addEventListener("InitComplete", "ImageUploader_InitComplete");

					iu.addParam("AutoRecoverMaxTriesCount", "5");
					iu.addParam("AutoRecoverTimeOut", "60000");
					iu.addParam("FilesPerOnePackageCount", "1");

					iu.writeHtml();


					document.getElementById('installmsg').style.visibility="visible";

				</script>

Edited by user Sunday, February 17, 2008 4:16:39 PM(UTC)  | Reason: Not specified

Alex Makhov  
#4 Posted : Friday, November 18, 2005 11:43:00 AM(UTC)
Alex Makhov

Rank: Advanced Member

Groups:
Joined: 8/3/2003(UTC)
Posts: 998

Hello,

We have just implemented the multi line text support in DropFilesHereText property. Download the last version and use the following code:
Code:
iu.addParam("DropFilesHereText","Drop\nFiles\nHere");

Edited by user Sunday, February 17, 2008 4:17:24 PM(UTC)  | Reason: Not specified

Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
Guest
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.