Jump to content

Show PDF in browser window to take digital signatures


Recommended Posts

Hi all,

I'm new to AutoIT but have a project in mind that I'd like to get some feedback on.  I'm looking to print contracts and have them signed digitally but none of the current services I've found can do as I'd like so I want to automate it myself.  I don't need to know anything on the legal/business side (already determined via attorney that this is ok to do), I'm just wondering if this is the best way to go about it pragmatically:

I can print a PDF of the contract through my management software to a folder.  What I'm envisioning is for AutoIT to see that new PDF and open an HTML file with that PDF in a browser window with some basic controls (Save, Edit, etc).  Using JQuery Signature Pad ( http://thomasjbradley.ca/lab/signature-pad/ ), I'd like to be able to have someone - not me - sign on the dottted line and either insert the PDF/signature into my MySQL database or place them in a folder for later archiving.

I'm very interested in learning AutoIT to do this and more, but I want to bounce it off some experienced people to make sure I'm not wasting time persuing this if there's a different way to go about it.  If anyone has a better method via AutoIT or otherwise, I'd like to hear suggestions.  It seems like a pefect project to get to know AutoIT.

Link to comment
Share on other sites

Umm, ok.  So has anyone implemented iTextSharp with AutoIT?  Just wondering if this is even possible? 

The amazingly underwhelming response makes me think I'm in the wrong place. Is there a better place to ask about planning an AutoIT project and exploring the possible methods to implement what I need?  I've searched for different terms and haven't found anything on electronic signatures, so maybe this is too advanced for AutoIT?

Edited by benzoD
Link to comment
Share on other sites

You need to wait more than a couple of hours for this type of request. This isn't a 24/7 support forum, it's a bunch of people that use the language helping out where and when we can. You'll have to be patient until someone comes on that's familiar with what you're trying to do and is willing to help.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Well I would suggest looking at the IE.Au3 and File.Au3 UDFs (Should be included in your autoit).  Basically you can open up a PDF in a brouser by simply directing to it like a website say with a

Func FunOpenPDF($filename)

 $oIE = _IECreate (@ScriptDir & "\" & $filename & ".pdf")

EndFunc

This will open up any PDF file you want by simply calling the function with the PDF that was recently added.  So bascially you will just need to make a loop that checks for new files, if it finds one just simply call the FunOpenPDF($filename) with the delta.  You may want to use something like

 _FileListToArray(@ScriptDir)

Off the top of my head here is a sample format (doesn't actually work, but hopefully you get the idea).

#include <IE.au3>
#Include <File.au3>
 $OldList = _FileListToArray(@ScriptDir)

While 1
 
 Sleep(5000)
 $CurrentList = _FileListToArray(@ScriptDir)
 
;;;;compare CurrentList and OldList
;;;;;fire off FunOpenPDF
 
WEnd

Func FunOpenPDF($filename)
 $oIE = _IECreate (@ScriptDir & $filename & ".pdf")
EndFunc
 
 

This checks the folder that the script is running from every 5 seconds and opens up whatever files were not there 5 seconds ago... that is assuming I'm not missing something in your question.

If so sorry for missing the mark ;-)

Edited by boogieoompa
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...