Top "Stage" questions

In case of ActionScript terminology, stage is used as a parent Display Object of all assets like images, text, videos, swf, etc.

Login Application with 1 stage and multiple scene in JavaFX

I am doing a timeline project. I have successfully created a login system and menus for everything, but when I …

java javafx fxml stage scenebuilder
Moving an undecorated stage in javafx 2

I've been trying to move an undecorated stage around the screen, by using the following mouse listeners: onPressed onReleased onDragged …

javafx-2 stage
What is SEDA (Staged Event Driven Architecture)?

SEDA: An Architecture for Well-Conditioned, Scalable Internet Services "SEDA is an acronym for staged event-driven architecture, and decomposes a complex, …

architecture stage event-driven eda
how to make transparent scene and stage in javafx?

I want to have transparent progressindicator, which is indefinite. here is the code, it shows grey background state/scene. i …

javafx transparent scene stage
Why disabling of stage resizable dont work in javafx?

When I try to setResizable for my scene in javaFX application it doesn't work. I still can change window size. …

javafx resizable stage
Javafx: Change scene in setOnAction

I'm building a JavaFX application with multiple Scenes. I have a problem with scope of variable when changing scenes within …

javafx stage scene
Center stage on parent stage

I am creating an application in JavaFx, In which I want to do that if any child stage is getting …

java javafx-2 javafx stage
How to access the stage from an AS3 class in Adobe Flash

The problem I've encountered is that I am using a keyboardEventListener to make a movieclip run around. As I'm a …

flash actionscript-3 class keyboard stage
When to use actors in libgdx? What are cons and pros?

I'm writing simple solar system simulator. This is my first libgdx project. I'm using a Stage and Actors for the …

java android actor libgdx stage
JavaFX: Best practice for navigating between UI screens

I want to change UI screens from login.fxml to home.fxml. Should I change the Stage or the Scene? …

java javafx fxml scene stage