I am not sure what had happened, but the command sensitive help is no longer working on my XP.
I highlight the command 'setq' and hit F1.
In the past the browser opens with:
C:\Programme\newlisp\newlisp_manual.html#setq
Now it is only:
C:\Programme\newlisp\newlisp_manual.html
and it does no more jump to the command-doc.
I do not know if it is related with the IE7 update.
But it is also not working from the newLISP-plugin command wizard where I had used the same technic for command-help.
Strange?
command help no longer jumps to command
command help no longer jumps to command
Hans-Peter
Finally I got a workround for my newLISP-plugin for neobook:
http://www.neosoftware.com/forum/viewto ... &start=150
A delphi fellow gave the tip to dynamicly create a URL-file which contains the internetlink with the URL with an anchor.
So the plugin now detects the browser version and when a IE7 is found the URL-file is created in [Temp]. Then the browser is launched with this URL-file.
For the newLISP-TK.tcl we could consider a similar approach.
Add a config-switch to the config file.
When set a URL-file is created in [Temp] and launched similar to the current call.
URL-File-Example:
Edit: I do not know if TCL can detect the browser version, so I had thought of a manual switch in the config to make a easy workaround.
http://www.neosoftware.com/forum/viewto ... &start=150
A delphi fellow gave the tip to dynamicly create a URL-file which contains the internetlink with the URL with an anchor.
So the plugin now detects the browser version and when a IE7 is found the URL-file is created in [Temp]. Then the browser is launched with this URL-file.
For the newLISP-TK.tcl we could consider a similar approach.
Add a config-switch to the config file.
When set a URL-file is created in [Temp] and launched similar to the current call.
URL-File-Example:
Code: Select all
[InternetShortcut]
URL=file:///c:/Programme/newLISP/newlisp_manual.html#setq
Hans-Peter