TechWhirl (TECHWR-L) is a resource for technical writing and technical communications professionals of all experience levels and in all industries to share their experiences and acquire information.
For two decades, technical communicators have turned to TechWhirl to ask and answer questions about the always-changing world of technical communications, such as tools, skills, career paths, methodologies, and emerging industries. The TechWhirl Archives and magazine, created for, by and about technical writers, offer a wealth of knowledge to everyone with an interest in any aspect of technical communications.
Re: How does Microsoft create the help files for Microsoft Word?
Subject:Re: How does Microsoft create the help files for Microsoft Word? From:Dave Brown <david -dot- brown -at- tait -dot- co -dot- nz> To:techwr-l Date:Fri, 08 Aug 2003 14:43:27 +1200
Amanda,
I have done a little with this when setting up templates.
In my case, all prompts were hardcoded within visual basic scripts. I am
guessing that you can also access external help files somehow.
In the VB help, look up 'Office Assistant'
Below is an example from the VB help.
The following example creates a balloon that contains tips for saving entered
data.
With Assistant.NewBalloon
.BalloonType = msoBalloonTypeBullets
.Icon = msoIconTip
.Button = msoButtonSetOkCancel
.Heading = "Tips for Saving Information."
.Labels(1).Text = "Save your work often."
.Labels(2).Text = "Install a surge protector."
.Labels(3).Text = "Exit your application properly."
.Show
End With
--
Regards,
Dave Brown d8¬)»
--
Eschew Obfuscation!
Blonde Writer wrote:
> Thanks everyone! I know how much everyone hates that paper clip :) They
> are looking for the prompting of help with the features and search
> functionality... It is big complex package and the new product offering is
> for users who may have only used products like Word and Excel :)
>
> --Amanda