-
5
- #1
I thought this thread might be of interest in this forum.
thread216-668888
Clive
thread216-668888
Clive
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
require "win32ole"
ie = WIN32OLE.new("InternetExplorer.Application")
ARGV.each do |file|
ie.navigate(file)
sleep 3
ie.execWB(6, 2) # OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER
sleep 3
end