Aloaha PDF Signator Usage
Stand Alone Application
The Aloaha PDF Signator is the ideal application to deploy to every enterprise desktop. With the Signator installed users can quickly open PDF documents, sign and timestamp them and even upload them to a webserver. PDF Form filing is also supported by this application.
Web Integration
One great feature of the Aloaha PDF Signator is the capability to open and post PDF documents directly from/to websites.
When the Signator is called and the first command line parameter is an URL it automatically loads the document from that URL. As soon the document is signed or saved it will be posted back to the original location.
Just configure your web based document library to call the PDF Signator with the URL as parameter so that user can quickly sign a remote document with just one mouse click!
Browser Integration
It is also possible to integrate the Signator directly into the browser window. The normal installation package also includes the PDF Signator OCX. The OCX exists also as a MSI package to be distributed as runtime engine.
Sample (0,96 KB)
Sample HTML:
<HTML>
<HEAD>
<SCRIPT type="text/vbscript">
function clsid()
'this function reads the CLSID of the Aloaha PDF Saver OCX
on error resume next
dim permwshshell
dim saver
dim bkey
Set permwshshell = CreateObject("WScript.Shell")
bKey = permwshshell.RegRead("HKCR\aloaha.editor\Clsid\")
bkey=trim(replace(bkey,"{",""))
bkey=trim(replace(bkey,"}",""))
if bkey<>"" then
clsid=bkey
else
clsid=""
end if
Set permwshshell = nothing
end function
</SCRIPT>
</HEAD>
<BODY>
<CENTER>
<SCRIPT type="text/vbscript">
on error resume next
dim bkey
bkey = clsid()
if bkey<>"" then
'Load Aloaha PDF Saver OCX
document.write("<OBJECT classid="&chr(34)&"clsid:"&bkey&chr(34)&" width=100% ID="&chr(34)&"aloaha"&chr(34)&" NAME="&chr(34)&"aloaha"&chr(34)&">")
document.write("</OBJECT>")
'set anti-aliasing offset
call aloaha.set_offset(255)
call aloaha.set_dpi(300)
call aloaha.set_factor(1)
call aloaha.set_bestsize(false)
'load PDF from URL
call aloaha.load_URL("http://www.aloaha.com/download/aloaha_testform.pdf")
else
document.write("Aloaha PDF Saver not installed<br>")
document.write("Please install <a href="&chr(34)&"http://www.aloaha.com/download/aloaha_saver.zip"&chr(34)&">http://www.aloaha.com/download/aloaha_saver.zip</a><br>")
document.write("and visit this site again<br><br>")
document.write("Please make sure to allow www.aloaha.com to execute ActiveX in your Browser<br>")
end if
</SCRIPT>
</CENTER>
</BODY>
</HTML>
Aloaha Software / Products / Aloaha PDF Signator / Usage