ajtruckle / meeting-schedule-assistant-support

Get support for Meeting Schedule Assistant.
https://www.publictalksoftware.co.uk/meeting-schedule-assistant/
5 stars 0 forks source link

Can the Script Editor incorporate a Tooltips feature? #77

Open ajtruckle opened 6 months ago

ajtruckle commented 6 months ago

Is your feature request related to a problem? Please describe. Visual Studio 2022 includes a tooltip feature that is extremely useful for coding.

For example:

image

Describe the solution you'd like Is it possible for the Script Editor to integrate a similar feature?

Additional context The tooltips display when you hover the mouse over keywords.

ajtruckle commented 6 months ago

This feature is called Call tips in the Scintilla control. To quote:

Call tips are small windows displaying the arguments to a function and are displayed after the user has typed the name of the function. They normally display characters using the font facename, size and character set defined by STYLE_DEFAULT. You can choose to use STYLE_CALLTIP to define the facename, size, foreground and background colours and character set with SCI_CALLTIPUSESTYLE. This also enables support for Tab characters. There is some interaction between call tips and autocompletion lists in that showing a call tip cancels any active autocompletion list, and vice versa.

So this looks like a big task to undertake.

cengizu commented 5 months ago

Yes, that would be great! This will certainly increase usability by reducing ambiguity and guiding users.

ajtruckle commented 5 months ago

@cengizu I agree it would be a nice feature to implement. Maybe one day!