Best way to package HTML5 on a thumb drive?

This forum is for all Flare issues related to the HTML5, WebHelp, WebHelp Plus, and Adobe Air Targets
Post Reply
delmarlinda
Jr. Propeller Head
Posts: 2
Joined: Fri Dec 11, 2015 7:18 pm

Best way to package HTML5 on a thumb drive?

Post by delmarlinda »

Hi,

My company has just adopted using HTML5 output for our manuals. Yeah!

We now need an easy way to package up the output on a thumb drive or CD for our customers. They are used to PDFs and the HTML5 output folder is going to be a bit confusing for them. I think we need a .bat file or shortcut to launch the entry file but I'm not sure how to create it in a staging area so that I don't have to build it on each thumb drive. Any ideas? Our IT resources are limited. Screen shot of my output directory attached.

Thanks,
Linda
You do not have the required permissions to view the files attached to this post.
sdcinvan
Propellus Maximus
Posts: 1260
Joined: Wed Aug 21, 2013 11:46 am
Location: Vancouver, Canada

Re: Best way to package HTML5 on a thumb drive?

Post by sdcinvan »

delmarlinda wrote:Hi,

My company has just adopted using HTML5 output for our manuals. Yeah!

We now need an easy way to package up the output on a thumb drive or CD for our customers. They are used to PDFs and the HTML5 output folder is going to be a bit confusing for them. I think we need a .bat file or shortcut to launch the entry file but I'm not sure how to create it in a staging area so that I don't have to build it on each thumb drive. Any ideas? Our IT resources are limited. Screen shot of my output directory attached.

Thanks,
Linda
Hi Linda,

Don't use a batch file because that would only function on a Windows platform. Create an HTML redirection file in the root of the thumb drive, like this:

MANUAL.HTM
[DOCS]
- place all your docs content in a folder.

That way, you have a less potentially confusing root folder with a single file that any computing platform can render correctly.

Some sample HTML:

Code: Select all

<HTML>
<HEAD>
<TITLE>Document Title</TITLE>
<META HTTP-EQUIV="refresh" CONTENT="10;URL=\DOCS\Default.htm">
</HEAD>

<BODY>
Some intro text...
Your browser should automatically open the user guide in 10 seconds. 
If it doesn't please click on <a href=\DOCS\Default.htm>Open User Guide</a>
</BODY>
</HTML>
You can fancy it up with better formatting and an appropriate path. :)
Shawn in Vancouver, Canada
Main tools used: Flare 11.x, InDesign, Google Docs, Lectora, Captivate.
Report bugs: https://www.madcapsoftware.com/feedback/bugs.aspx ▪ Feature requests: https://www.madcapsoftware.com/feedback ... quest.aspx[/i]
delmarlinda
Jr. Propeller Head
Posts: 2
Joined: Fri Dec 11, 2015 7:18 pm

Re: Best way to package HTML5 on a thumb drive?

Post by delmarlinda »

Shawn, this worked perfectly. Thank you so much!
sdcinvan
Propellus Maximus
Posts: 1260
Joined: Wed Aug 21, 2013 11:46 am
Location: Vancouver, Canada

Re: Best way to package HTML5 on a thumb drive?

Post by sdcinvan »

delmarlinda wrote:Shawn, this worked perfectly. Thank you so much!
You are welcome.
Shawn in Vancouver, Canada
Main tools used: Flare 11.x, InDesign, Google Docs, Lectora, Captivate.
Report bugs: https://www.madcapsoftware.com/feedback/bugs.aspx ▪ Feature requests: https://www.madcapsoftware.com/feedback ... quest.aspx[/i]
Post Reply