Re: Euphoria.chm question

new topic     » goto parent     » topic index » view thread      » older message » newer message

Sorry, all butter-fingers here...

Kenneth Rhodes wrote:

> 
> I'm not sure about the correct terminology here... but, is
> it possible to pass a book mark or link 'tag' to Euphoria.chm?
> I am able to implement word specific html context sensitive 
> help very easily in my version of ed.ex like this:



if EU_HTML_CONTEXT_HELP then
   if find(word[1],{'a','b'}) then
	document = "lib_a_b.htm"
   elsif find(word[1],{'c','d'}) then
	document = "lib_c_d.htm"
   elsif find(word[1],{'e','f','g'}) then
	document = "lib_e_g.htm"
   elsif find(word[1],{'h','i','j','k','l','m','n','o'}) then
	document = "lib_h_o.htm"
   elsif find(word[1],{'p','q', 'r'}) then
	document = "lib_p_r.htm"
   elsif find(word[1],{'s','t'}) then
	document = "lib_s_t.htm"
   elsif find(word[1],{'u','v','w','x','y','z'}) then
	document = "lib_u_z.htm"
   end if
   
   run_file( HTML_HELP_DIR & document  & '#' & word, 0)
end if


Can Euphoria.chm be opened to a specific article in a similar
manner?  I suppose if someone can show me how its done in Windows
I can probably figure out how to do it under Linux, if possible.

Thanks,
 
Ken Rhodes
100% Microsoft Free!

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu