by Aurigma - Product Type: Component / ActiveX OCX
I am trying to embed the uploader onto a frontpage website and I am following the getting started help topic. I have uploaded the relevant files to the server and I am in the process of adding the code to the page. When I try to preview the page in Frontpage it says that "ImageUploaderWriter is undefined". I have copied all the code that the help file asked me to and all three files are in the same directory of my website.
Reply
In my asp.net appln I am defining ImageLoader as
<OBJECT id="ImageUploader" codeBase="file:///C:\Program Files\Aurigma\Image Uploader 3.5 for ActiveX\Samples (ActiveX Only Compatible)\ASPNET\ImageUploader3.cab"
height="490" width="540" classid="clsid:A18962F6-E6ED-40B1-97C9-1FB36F38BFA8" name="ImageUploader" viewastext>
<PARAM NAME="AdditionalFolderNavigator" VALUE="ImageUploader1">
<PARAM NAME="LicenseKey" VALUE="4878-1335-7610-8870">
<PARAM NAME="Action" VALUE=".">
<PARAM NAME="PaneBackgroundColor" VALUE="#ffffff">
<PARAM NAME="BackgroundColor" VALUE="#ffffff">
<PARAM NAME="PreviewThumbnailActiveColor" VALUE="#f8b330">
<PARAM NAME="PreviewThumbnailInactiveColor" VALUE="#eeeeee">
<PARAM NAME="FolderView" VALUE="Thumbnails">
<PARAM NAME="UploadView" VALUE="Details">
<PARAM NAME="Layout" VALUE="TwoPanes">
<PARAM NAME="PreviewThumbnailSize" VALUE="100">
<PARAM NAME="TreePaneWidth" VALUE="-1">
<PARAM NAME="Padding" VALUE="0">
<PARAM NAME="SignatureFilter" VALUE="Images">
<PARAM NAME="ShowDebugWindow" VALUE="true">
<PARAM NAME="ShowButtons" VALUE="false">
<PARAM NAME="UploadSourceFile" VALUE="true">
<PARAM NAME="ShowSubfolders" VALUE="true">
<PARAM NAME="ShowContextMenu" VALUE="false">
<PARAM NAME="ShowStatusPane" VALUE="false">
</OBJECT>
But when i try to run
document.getElementById("ImageUploader").CanGoToFolder(1)
its throws error that "Object doesn't support this property or method."
Any idea wgy this exception is getting thrown?
Reply