world80
25th October 2013 11:26 UTC
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
T.Slappy
28th October 2013 09:23 UTC
Maybe it is simpler to rebuild the plug-in into Unicode?
I have bad experiences with CallAnsiPlugin, it sometimes crashes or does nothing.
world80
28th October 2013 09:47 UTC
I think that nsDialogs.dll needs to be added tooltips support ;)
installoptionsex.dll has tooltips support
Anders
28th October 2013 18:36 UTC
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...
world80
14th November 2013 12:20 UTC
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?