I made a custom Kofax (v. 7.5) custom module that rotate every page in the documents, I have used VB6 and it works! But now there is a new version of Kofax (v. 10) that use VS10, my module doesn't work, I have isolated the problem is the rotation function, here how I use it.
Private acmApp As AscentCaptureModule.Application
....
acmApp.SelectMenuItem KfxScanMenuPageRotateAndSaveLeft, True
I repeat on Kofax 7.5 it works but on Kofax 10 no. This is the error message:
Error: 2104 Parameter out of bounds. scan 0
I've already check the function is supported on the new version it is the same.
Someone can help me? Thank you!
Regards.
What exactly is your requirement let me know. Because recently I faced issues related to Page rotation and I resolved it.. I Think I might help you. Note: In Kofax the Page gets automatically rotated whenever it is introduce into OCR and incase you rotate the image manually the data will get lost at the validation stage.
you should always check the latest documentation
http://services.kofax.com/support/products/capture/10.1/documentation.php
There is an API guide in there for your reference.
It was a bug of Kofax, the id of the KfxScanMenuPageRotateAndSaveLeft function (in v. 10) isn't the same than the older version (v. 7.5) so I don't know which function i was calling! They told me that will fix this issue.
Related
I am trying to figure out how to force the user to use the app only if he has the last update of it( So the app should check if the local and store version are the same). I've seen this feature in some apps. Found this plugin : https://www.npmjs.com/package/nativescript-store-update. It works great on iOS but it does not work at all on Android, so I am clueless right now on how to do this. Any help would be much appreaciated. Thanks
While not sure about forcing to update the store version, you can use the newly introduced AppSync functionality to create mandatory updates for your codebase. See this blog post for details or just search for nativescript-app-sync
Please help, I can't seem to get an answer for this anywhere.
If I use the Cordova file plugin to try and access the application directory on Windows 8, it always fails! Here is the basic code I am using:
window.resolveLocalFileSystemURL(cordova.file.dataDirectory + 'www/assets/images/image.png', gotFile, fail);
I have been using the same basic code on the Android and iOS versions of the app for some time now with no problem so I don't understand why the Windows 8 version doesn't like it.
Through console logs I can see that the link generated is in fact correct and it's actually exactly the same as one used to append the same image to the page (which works fine):
<img src="ms-appx:///www/assets/images/image.png">.
Can anyone please tell me why I can't use cordova.file.applicationDirectory with Windows? I know that folder is read only, I am just trying to read from it.
Note: I can use window.resolveLocalFileSystemURL with the cordova.file.applicationDirectory no problem at all, it works as expected. Its only the cordova.file.dataDirectory that always fails for me. The closest answer I could find was some people having trouble with the image paths of images saved from the camera plugin but that seems to have been a bug that was fixed by Cordova. If this is not a bug also then I'm assuming there is something really simple I can do to make the resolveLocalFileSystemURL work?
Thanks.
I found a solution to my problem by using 'windows.storage.storagefile', I had success with the following code:
Windows.Storage.StorageFile.getFileFromApplicationUriAsync(new Windows.Foundation.Uri('ms-appx:///www/test.html')).done(win, fail);
More info can be found here: msdn.microsoft.com/library/windows/apps/… I hope this helps some other people struggling with Windows 8 as I spent quite a time scratching my head about it and trying lots of different ways.
Cheers,
Stuart
We are using the following code to download image from our server and display it with a label:
ImageDownloadService.createImageToStorage(IconSrc, label, IconSrc,
new Dimension(width,height), ImageDownloadService.PRIORITY_NORMAL);
After upgrading to the latest library 3.3, theimages are no longer scaled properly. It either only shows one corner of the image or scales the image up to fill the entire space.
This issue does not occur once I fall back to the older library 3.2.
Looking at the code of ImageDownloadService I don't quite understand how this functionality worked in the past.
We don't really use that class internally and have recommended that developers migrate to the far superior URLImage class. I'll have a look at trying to fix that regression but I'd strongly suggest you migrate your code to the newer API.
i am new programmer using sonarcube.
i have corrected the critical issues that were highlighted in sonarcube. so now the problem is even though after updating , sonarcube show the older code, not the one that i changed. What cud b the reason. thanks in advance.
Does SonarQube (not cube) still show critical issues that you have corrected or does it show only the previous version of the code ?
You should check that you have put the new version of the code in the right place, this is most probably where is the problem.
Regards.
I have a class that inherits from TTTableViewController, and overwrites the "createDelegate" method to use the TTTableViewDragRefreshDelegate instead of the default Delegate.
The problem that I am seeing right now is that there is some header space that appears before my table content (supplied by data source, of course) for iOS 5, but this isn't there on pre-iOS 5 versions.
I searched around and found this article (http://stackoverflow.com/questions/6651367/how-to-make-the-blue-bar-on-the-top-disappear-for-tttableview-with-list-datasourc), but it doesn't quite help me as I did not overwrite tableView:viewForHeaderInSection: method.
What I have noticed is that for all my TableViewControllers that have this problem, they all seem to overwrite the "createDelegate" method and return TTTableViewDragRefreshDelegate, as mentioned above.
My question is: anyone ran into the same issue? How can I fix this problem?
Okay, figured it out. The problem is with an old three20 library that I was using. Once I upgraded to the latest, it was fixed.