InfoOverlay Implemenation in Fxml project | JavaFX

Hello Friends, In this video tutorial you will learn to implement ‘InfoOverlay’ in an FXML-based project in JavaFX. This is a very nice control provided by ControlsFX API. To implement this control in your project, you have to download ControlsFX jar. Please see the below image of InfoOverlay used in an FXML-based project in Net … Read more

JavaFX | Redirect console output to TextArea

In this tutorial, you will learn to redirect console output to textarea in JavaFX application. This is a very useful implementation for most of the applications. I have explained the whole implementation step by step with the help of a diagram. See the below diagram, this is showing the core logic to redirect console output to … Read more

Fmpeg | Horizontal text scrolling with looping

Here I am sharing very useful command for horizontal text scrolling on video. We can easily do it in a single command. This is a really a very nice command to do looping of scrolling text. Scrolling from left to right: (at Bottom) ffmpeg -i input.mp4 -vf drawtext=”fontfile=C\:/Windows/Fonts/arial.ttf:text=’This is Cool IT Help’ : y=h-line_h-10:x=(mod(5*n,w+tw)-tw):fontcolor=white:fontsize=30″ output1.mp4 … Read more

FFmpeg | Vertical Text Scrolling with loop

Here i am sharing very useful command for vertical text scrolling on video. We can do it in a single command. This is really very nice command to do looping of scrolling text. Scrolling from bottom to top: ffmpeg -i input.mp4 -vf drawtext=”fontfile=C\:/Windows/Fonts/arial.ttf:textfile=info.txt : x=(w-tw)/2 : y=((h+th)- mod(4*n,h+th+100)):fontcolor=white:fontsize=30″ output8.mp4 Offset calculation: y = ((h+th) – … Read more

ControlsFX’s CheckComboBox | How to use CheckComboBox in JavaFX?

In this blog you will learn how to use ControlsFX api based CheckComboBox. It is very useful control, here we have items with checkbox in ComboBox. I have explained the use of CheckComboBox and implementation step by step.Prerequisite: 1) Need to download controlsfx.jar from below link :     http://fxexperience.com/downloads/controlsfx-8-40-142) Download link for Gluon Scene builder: … Read more

How to create circular stage in JavaFX?

In this tutorial, you will learn how to create a Circular Stage in JavaFX. In this tutorial, I have explained the implementation with the help of an example project. I have described each step and use of that. A method is used to create a circular stage in this video tutorial. I am sharing the … Read more

How to use Rating Star in JavaFX Application?

In this tutorial blog, you will learn how to use ‘Rating star’ in the JavaFX application. I have explained the concept by using a simple Fxml-based project. Here is a sample screenshot of Rating stars created with the help of ControlsFX API. Prerequisite: 1) Need to download contorlsfx.jar from the below link.    https://github.com/controlsfx/controlsfx 2) … Read more