As a software developer, my focus is on building Java Desktop applications for the Windows operating system. Therefore, most of the material I produce is centered around this. However, in this article, I am venturing into the world of Linux as I know there are many people who use Linux as their platform. Continue reading “Create a Linux Debian package from JavaFX 11 desktop application”
Making a Windows MSI from a Java 11 and JavaFX 11 Desktop application
Making a Windows MSI from a Java 11 and JavaFX 11 Desktop application
With the advent of Java 9 and the introduction of 6 monthly release cycles, the Java Desktop landscape has changed considerably. If you find yourself looking to build Desktop applications using JavaFX and present them as self-contained applications, then take note. Continue reading “Making a Windows MSI from a Java 11 and JavaFX 11 Desktop application”
Showcasing a deployable JavaFX application
What is the point of writing an application if no one is going to use it? We all want our applications out there in the hands of users.
So how can we achieve this if we are building JavaFX applications for the desktop? Continue reading “Showcasing a deployable JavaFX application”
Designing and Building JavaFX Text to Speech Tester
This is the last in the series about writing applications which convert text to speech. We started off the journey by introducing the final product, a Speech Tester JavaFX application.
It is this application that we are going to design and build here.
Continue reading “Designing and Building JavaFX Text to Speech Tester”
JavaFX and adding basic speech
In the last post we took a look at a small application to demonstrate making our program speak and the various voices and settings that can be used to alter the sound.
In this post, we are going to build a small proof of concept project to load the FreeTTS synthesiser and start to use it. Continue reading “JavaFX and adding basic speech”
JavaFX Text to Speech
Have you ever wondered how to make your application talk? Well, in this tutorial we take a look at a JavaFX application built to sample some voices. The application uses freely available tools such as FreeTTS and MBROLA to add speech into an application. Continue reading “JavaFX Text to Speech”
Making your program speak
I was working on a project the other day and it had a requirement for speech. Based on some pre-agreed text, the application needed to play back the text to the user. Now, these days this sort of thing is common place. Alexa and Siri are well known services based on this sort of technology.
So, what if you want to convert text to speech how can you do this.
JavaFX Alert information box demo
JavaFX provides a number of Alert dialog box templates to solve a range of requirements. Here we look at two of the options namely the information template and blank template. Continue reading “JavaFX Alert information box demo”
JavaFX Alert dialog example
Quite often when building desktop applications there is a need to present information to the user. A popular means of doing this is through the use of a popup dialog box. JavaFX provides us with a few ways of doing this using the Alert dialog box. In this tutorial we take a look at the various types of alert from error to confirmation. Continue reading “JavaFX Alert dialog example”