B4J Code Snippet [B4j] [DSE] SetTooltipTextSize - stevel05    Jul 27, 2023   (6 reactions) Just a quick designer script extension to change the tooltip text size from the designer...}.SetTooltipTextSize(14,btn1,btn2) Public Sub SetTooltipTextSize(DesignerArgs As DesignerArgs) If DesignerArgs...(i) Dim TT As JavaObject = V.As(JavaObject).RunMethod("getTooltip",Null) TT... that you put the code into. It can be any class. You can pass any node that supports tooltip. It uses... tooltip text size... B4J Code Snippet [B4j] [DSE] Add a pane with layout to a tooltip. - stevel05    Sep 11, 2023   (4 reactions) A designer script extension to add a pane with a layout to a Nodes tooltip:
145745..., PaneHeight as Double
'DesignerScript: {Classname}.SetPaneOnTooltip(Button1,"layoutname"..., WINDOW_TOP_LEFT, WINDOW_TOP_RIGHT or empty string for default
Public Sub SetPaneOnTooltip(DesignerArgs... B4A Code Snippet [DSE] [B4A] Standard Tooltips for Android 8+ - stevel05    Oct 13, 2022   (11 reactions) tooltips for Android 8+ 'Parameters: Text As String, 1 view 'Code in DesignerScript:{class}.SetTooltip("Tooltip", Button1) Public Sub SetTooltip(DesignerArgs As DesignerArgs) Dim... viewJO.RunMethod("setTooltip", Array As Object(Text)) End If End Sub Then just add the code to the designer script for your layout. Code in DesignerScript: {class}.SetTooltip("Tooltip", Button1) {class} is wherever you put the sub, it can go in any class you like... B4J Code Snippet Add a ToolTip to an ImageView - rwblinn    Apr 5, 2016   (7 reactions) .
'Add a tooltip to an ImageView
'JavaFX API Reference: http://download.java.net/jdk8/jfxdocs/javafx/scene/control/Tooltip.html
Sub ToolTipToImageView(iv As ImageView, msg As String)
Dim... Wish Module tooltip to show path - tchart    Sep 1, 2024   (4 reactions) It would be really handy if module tabs could have a tooltip to show the path of the module. I know the modules pane shows the path if its relative (you can also right click and open in explorer) but it would be great to see the path on the module tab for quick reference. 156534... B4J Code Snippet Consistent Tooltips - keirS    Dec 15, 2018   (7 reactions)   tags: Code, B4J Tooltips Font the tooltip inherits it's font settings from the control. They can look very inconsistent if using FontAwesome or Material Icons.
https://i.ibb.co/cDXVr5z/ToolTip1.png
https://i.ibb.co/Wz3JxMn/ToolTip2.png
https://i.ibb.co/7NGHPpL/tooltip3.png
So to make them consistent:
Sub SetToolTipFont(N... Bug? [SOLVED] Text size of a ToolTip on a Label matches the font size chose for the label' - MrKim    Jun 19, 2022 Perhaps a java thing? I have some labels with FontAwesome icons so I am using a very large font. The tooltip also displays that font.... B4A Code Snippet standard tooltips for Android 8+ - Dave O    Oct 10, 2022   (6 reactions) For tooltips (press-and-hold on a view to show some explanatory text), in the past I used a hack in....
It turns out that Android 8 added a proper way to define tooltips (with Android 8+ currently covering... Wish Tooltip on variables - LucaMs    Dec 8, 2020 104146 Public or Private "global variable"? Show me it too. (ops, I know if it is private: usually I use a very short prefix, "m", for Private (module) global variables :)) ... B4J Question [SOLVED] Tooltips - lower case letters not showing, only Upper being shown. - Jmu5667    Sep 3, 2021 Hello
I use the following code to set tooltips on swift buttons:
#Region TOOLTIPS
Sub set_tooltips
ToolTipOnNode(sbActivityDateRange.mBase,"Date Range Filter"... Page: 1   2   3   4   5   6   7   |