Archive: tooltips plugin in unicode NSIS?


tooltips plugin in unicode NSIS?
Hello,

Is there a way to use tooltips plugin with Unicode nsDialogs.dll

Note that i can't use it via CallAnsiPlugin with the following examples:
for old tooltips version
CallAnsiPlugin::Call "$PLUGINSDIR\ToolTips.dll" classic 2 $hwnd "info"
for last tooltips version
CallAnsiPlugin::Call "$PLUGINSDIR\ToolTips.dll" classic 6 $hwnd "info" 0x00FF0000 0x00FFFFFF "Comic Sans Ms" 10


Maybe it is simpler to rebuild the plug-in into Unicode?
I have bad experiences with CallAnsiPlugin, it sometimes crashes or does nothing.


I think that nsDialogs.dll needs to be added tooltips support ;)

installoptionsex.dll has tooltips support


Originally posted by T.Slappy
I have bad experiences with CallAnsiPlugin, it sometimes crashes or does nothing.
Stuff that subclasses windows or otherwise accesses NSIS internals are not going to work with that plugin...

Originally posted by Anders
Stuff that subclasses windows or otherwise accesses NSIS internals are not going to work with that plugin...
I'm trying to use HelpButton.dll via your CallAnsiPlugin, the plugin needs to be called HelpButton::end ( CallAnsiPlugin::Call "$PLUGINSDIR\HelpButton" end 0
) but this function does not work even though the main function is working.

Is this a bug of CallAnsiPlugin?