I've been able to successfully implement zoom support in my B4J application for both ImageView and WebView controls, using this code:
When trying to similarly utilize for the HTMEditor and TextArea controls, this type exception results:
java.lang.RuntimeException: Method: setZoom not found in: javafx.scene.control.TextArea
Is there another [Java object] RunMethod param* that can be passed/used instead to add zoom functionality to these 2 additional controls? *Maybe there is documentation somewhere that has ALL the valid RunMethod params that each JavaFX control supports?
B4X:
Dim jo As JavaObject = webvFrame
jo.RunMethod("setZoom", Array (dblZoomScale))
When trying to similarly utilize for the HTMEditor and TextArea controls, this type exception results:
java.lang.RuntimeException: Method: setZoom not found in: javafx.scene.control.TextArea
Is there another [Java object] RunMethod param* that can be passed/used instead to add zoom functionality to these 2 additional controls? *Maybe there is documentation somewhere that has ALL the valid RunMethod params that each JavaFX control supports?