Hello folks,
I have recently had to recreate a merged help project (the previous project became corrupt) and added two new Map IDs to two new topics. I added them to the AutomationServer and DomainManager child projects. When I go into the the master project and generate this error appears in the output view:
HHC3015: Warning:
An alias has been created to "#BMS_Command_Preview_Fields" but the file does not exist
This is one of the two new Map IDs I created. It pertains to the AutomationServer child project. I guess the DomainManager child project didn't cause an issue and is working properly. I have looked at the AutomationServer *.h file and the (Master directory) redirect file to see if I put a typo in the line or the wrong path..but it seems ok. The only difference about this child project that is different from the other child projects is that is using the default BSSCDefault.h filename. The other children projects *.h files are uniquely named. I thought maybe the # symbol was a "space" so I re-checked my syntax in the *.h, master.ali and redirect.html file and there is no space. I am not an expert on merged help systems. I am stumped. Here are my entries:
BSSCDefault.h :
#define Connecting_to_the_Server1 100
#define Client_Preferences_Fields 102
#define Stored_Batches_Overview 105
#define Starting_Services 106
#define GPI_Triggered_Batches_Overview 110
#define Managing_Custom_Timeline_Views 101
#define Managing_Timeline_Objects 104
#define Resume_Batch 107
#define Batch_Properties 108
#define BatchSchedule 111
#define ServerPreferences 103
#define GPISNMPPrefs 112
#define SystemServicePrefs 113
#define EISPrefs 114
#define DPIPrefs 115
#define StoredBatch 109
#define SCGProps 116
#define ACGProps 117
#define BMS_Command_Preview_Fields 118
Master.ali :
PSI_Generator_Properties=redirect.xhtm#PSI_Generator_Properties
PSIG_Configuration_Fields=redirect.xhtm#PSIG_Configuration_Fields
Program_Video_Decoding_Fields=redirect.xhtm#Program_Video_Decoding_Fields
BMS_Command_Preview_Fields=redirect.xhtm#BMS_Command_Preview_Fields
Manage_Alarm_Configuration_Fields=redirect.xhtm#Manage_Alarm_Configuration_Fields
redirect.xhtm:
else if (Code == "BMS_Command_Preview_Fields")
URL = "AutomationServer.chm::/BMS_Command_Preview_Fields.htm";
else if (Code == "Manage_Alarm_Configuration_Fields")
URL = "DomainManager.chm::/Manage_Alarm_Configuration_Fields.htm";
- end