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

Notification

Icon
Error

Options
Go to last post Go to first unread
PhilippFeigl  
#1 Posted : Thursday, January 19, 2006 1:54:35 AM(UTC)
PhilippFeigl

Rank: Member

Groups: Member
Joined: 10/20/2005(UTC)
Posts: 12

Hi Everyone,

I have some questions regarding the ImageUploader - respectivly the ActiveX Version.
I'm using Version 3,5,157,0
  • FolderPaneHeight seems to be not setable through the addParam method. I fixed this by using setFolderPaneHeight in the InitComplete Event.
  • AddField is only useable once while Uploading. This is a serious problem for me :( I'm using FilesPerOnePackageCount = 1 and I'm adding a incrementing number to every upload. That's done with AddField, everytime I receive a UPLOAD Event for a File, which has not yet been reported Progress Event.
    Using PackageIndex is no solution for me, because sometimes the ID has to start with something else than 0.
    The Javabased Uploader seems to work the appendix way, meaning I have a HTTP Request with X times the same variable name - which is not a problem for me, but ActiveX seems to simply skip AddField for Variables, which have already been set :(
    Is there another solution for my problem ?
  • The ActiveX Uploader seems to call the BeforeUpload Event twice ? Is this a Bug, or am I doing something wrong ? I fixed this for me using a some boolean switch, if it was already called ...
  • What are the Language Labels for the "Sort by" strings in the new Contextmenu of the ActiveX Version ?
Any Help on this would be very much appreciated.

Best regards,
Philipp Feigl
Alex Makhov  
#2 Posted : Sunday, January 22, 2006 3:36:47 PM(UTC)
Alex Makhov

Rank: Advanced Member

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

Hello Philipp,

It’s a great pleasure to read such posts ;)

Quote:
FolderPaneHeight seems to be not setable through the addParam method


I have tested the following code with both uploaders. This code works fine.
iu.addParam("FolderPaneHeight", "100");

Quote:
AddField is only useable once while Uploading


There will be an event called BeforePackageUpload in Image Uploader for ActiveX version 4.0 which will be called before every package upload.

Quote:
The ActiveX Uploader seems to call the BeforeUpload Event twice ?


We will fix it in the version 4.0

Quote:
What are the Language Labels for the "Sort by" strings in the new Contextmenu of the ActiveX Version


We have added Sort feature to some Image Uploader releases in testing purposes only. We will update Image Uploader help right before release.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
PhilippFeigl  
#3 Posted : Sunday, January 22, 2006 4:37:33 PM(UTC)
PhilippFeigl

Rank: Member

Groups: Member
Joined: 10/20/2005(UTC)
Posts: 12

Quote:

Quote:
FolderPaneHeight seems to be not setable through the addParam method


I have tested the following code with both uploaders. This code works fine.
iu.addParam("FolderPaneHeight", "100");

I will give this additional testing. At happened for me and also my colleague, that the Top Panel had always 90% of the height, while the lower panel was as small as possible (minsize). The Height of the Uploader itself was set to 380px.

Quote:

Quote:
AddField is only useable once while Uploading


There will be an event called BeforePackageUpload in Image Uploader for ActiveX version 4.0 which will be called before every package upload.

That is very great news ! Will there be only this event, or also possibilities to change values for the upcoming package upload ?

Quote:

Quote:
The ActiveX Uploader seems to call the BeforeUpload Event twice ?


We will fix it in the version 4.0

Nice to hear :)

Quote:

Quote:
What are the Language Labels for the "Sort by" strings in the new Contextmenu of the ActiveX Version


We have added Sort feature to some Image Uploader releases in testing purposes only. We will update Image Uploader help right before release.

Ok, so I will just disable this feature right now.

So, as you will assume, there is one open question :) What is the estimated release Date for 4.0 Version ? (and will this be considered a major Upgrad, which has to be purchased as an update ?)

Thanks for all your answers. Best regards and have a nice week,
Philipp
Alex Makhov  
#4 Posted : Monday, January 23, 2006 12:54:28 PM(UTC)
Alex Makhov

Rank: Advanced Member

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

Hello Philipp,

Quote:
The Height of the Uploader itself was set to 380px.


No error with such height too.

Quote:
Will there be only this event, or also possibilities to change values for the upcoming package upload ?


Yes. We will add the possibility to change some parameters of upload request from this event.

Quote:
What is the estimated release Date for 4.0 Version ?


I think we will release the Image Uploader version 4.0 at the end of February.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
PhilippFeigl  
#5 Posted : Monday, January 23, 2006 4:46:56 PM(UTC)
PhilippFeigl

Rank: Member

Groups: Member
Joined: 10/20/2005(UTC)
Posts: 12

Thanks for all your help. That is very much appreciated.

I will look forward to the release of the 4.0 Version.

Best regards,
Philipp
PhilippFeigl  
#6 Posted : Wednesday, January 25, 2006 1:04:22 AM(UTC)
PhilippFeigl

Rank: Member

Groups: Member
Joined: 10/20/2005(UTC)
Posts: 12

Hi Alex,

I'm still not able to resolve my problem with the FolderPaneHeight thing. I have created a small example, which you can find here:
http://develupload.silverwire.com/upload/activex.html (This uploader is not supposed to upload anything, even the ActionUrl is missing. But it shows my problem).

Here is a small snapshot of the Sourcecode in this example:
Code:
	// Initiate the Uploader Object
	var iu = new ImageUploaderWriter("ImageUploader", 600, 350);

	// Enable Active-X and Java
	iu.activeXControlEnabled = true;
	
	// For ActiveX control we specify full path for CAB file
	iu.activeXControlCodeBase = "JavaActiveX/ImageUploader3.cab";
	iu.activeXControlVersion  = "3,5,157,0";
	
	// Setup
	iu.addParam("Layout", "ThreePanes");
	iu.addParam("ShowButtons", "False");
	iu.addParam("ShowUploadListButtons", "True");
	iu.addParam("FolderPaneHeight", "100");
	
	// Print the Uploader
	iu.writeHtml();


In my mind, this should create a ThreePane Uploader with a Height of 350px, with the TopFrame beeing 100px of height.
I tested this on different workstations and even one of our customers had the same problem with the demo link I sent him.

Is it me, or am I just having a bad "build" of the ActiveX Uploader or do you perhaps not have the problem ?

Thanks for any help again,
Cu around,
Philipp

Edited by user Sunday, February 17, 2008 7:38:08 PM(UTC)  | Reason: Not specified

Alex Makhov  
#7 Posted : Wednesday, January 25, 2006 3:38:44 PM(UTC)
Alex Makhov

Rank: Advanced Member

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

Hello,

I have tested your link with our last version of ImageUploader. It works fine. Try to download ImageUploader version 3.5.180.0 from our site.
Sincerely yours,
Alex Makhov

UserPostedImage Follow Aurigma on Twitter!
Users browsing this topic
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.