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
tooltips plugin in unicode NSIS?
8 posts
Maybe it is simpler to rebuild the plug-in into Unicode?
I have bad experiences with CallAnsiPlugin, it sometimes crashes or does nothing.
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
installoptionsex.dll has tooltips support
Stuff that subclasses windows or otherwise accesses NSIS internals are not going to work with that plugin...Originally Posted by T.Slappy View PostI have bad experiences with CallAnsiPlugin, it sometimes crashes or does nothing.
I'm trying to use HelpButton.dll via your CallAnsiPlugin, the plugin needs to be called HelpButton::end ( CallAnsiPlugin::Call "$PLUGINSDIR\HelpButton" end 0Originally Posted by Anders View PostStuff that subclasses windows or otherwise accesses NSIS internals are not going to work with that plugin...
) but this function does not work even though the main function is working.
Is this a bug of CallAnsiPlugin?
There is no news about unicode tooltip plugin ?
Maybe it is possible to implement tooltip work in unicode version of nsis using code? How can it be done in practice?
Maybe it is possible to implement tooltip work in unicode version of nsis using code? How can it be done in practice?
The easiest way is to rebuild the plugin (with appropriate change to Unicode in C/C++) and create separate .dll file for Unicode.Originally Posted by stass View PostThere is no news about unicode tooltip plugin ?
Maybe it is possible to implement tooltip work in unicode version of nsis using code? How can it be done in practice?
There are some APIs that needs to be changed and that cannot be achieved simply in NSIS script.