In case of ActionScript terminology, stage is used as a parent Display Object of all assets like images, text, videos, swf, etc. those are placed on this stage. These assets are not displayed until they are added to stage.
Questions tagged [stage]
633 questions
-1
votes
1 answer
Ingest unstructured file into snowflake table
Have file with 200 rows, when I tried to load file into snowflake table it will print 200 rows, but I want is 1 row contains data for 200 rows.
create or replace table sample_test_single_col (LOADED_AT timestamp, FILENAME string, single_col…

CodeM
- 21
- 8
-1
votes
1 answer
Trigger different repository when execute stage in a release pipeline - Azure DevOps
I have two repositories differents "Repo 1" and "Repo 2" the 2 repositories in Azure DevOps.
"Repo 1" have different release pipelines (see below)
"release-pipeline-dev" -> Stage 1
"release-pipeline-qa" -> Stage 1
I need this -> When I create a…

user199960
- 35
- 3
-1
votes
1 answer
How can I bind stage width and height in JavaFX?
I want to bind the stage width and height together, so the user can only resize it by keeping the aspect ration.
This doesn't work:
stage.widthProperty().bind(stage.heightProperty());
There is another way: …

hazazs
- 39
- 1
- 8
-1
votes
1 answer
ProgressIndicator finishes when I start another Stage
I want to create an application starter. The ProgressIndicator should running during start of the new Stage in new Thread. But if I click at the start button the ProgressIndicator stops running.
It works if I make some I/O and ProgressIndicator…

Andy99
- 1
-1
votes
1 answer
In Apache Spark , do Tasks in the same Stage work simultaneously or not?
do tasks in the same stage work simultaneously? if so, the line between partitions in a stage refers to what? example of a DAG

Maher Marwani
- 51
- 4
-1
votes
2 answers
Navigation issue
I'm developing an application and i have a navigation problem.
I'm having random buttons on the stage but it is inevitable that some overlap.
I want to solve this issue but I do not know how.
Does anyone have any idea to help me?
AS3
for (var…

ROAS3
- 1
-1
votes
1 answer
What is stage dot canvas?
I cannot understand the logic/structure/meaning /// That is, I cannot pícture in my mind what stage.canvas stands for!
I have searched stackoverflow for questions involving stage.canvas, but they are about it. They do not explain what it…

otherelse
- 9
- 4
-1
votes
1 answer
Stage styling in javafx
How to apply StageStyle.utility and StageStyle.undecorated to the same stage.
I am using this for the internal window/ popup.
Or if I have to follow any other solution please do stuggest.
Thanks

Vimi SR Vimal
- 39
- 2
- 8
-1
votes
1 answer
libgdx actor input not working
My actor in libgdx draws normally how ever the inputlistener is not working, i have checked that i initiated the Gdx.input.setInputProcessor and i'm pretty sure that my bounds are set correctly so please help me with this issue.
Code:
Sprite…

icedbluw
- 5
- 3
-1
votes
2 answers
Access the Stage in AS3
I'm trying to get a projector file to run full screen when it starts, without needing to click anything. My main class inherits from MovieClip, so as far as I can tell I get access to stage... yeah right :)
package
{
import…

Peter
- 1
-1
votes
1 answer
Open a second JavaFX window from outside start
How can I open a secondary JavaFX window (stage) from outside the "start" method? For example,
public class GUI_Test extends Application {
static Stage secondStage;
public static void main(String[] args) {
launch(args);
…

Gal A.
- 172
- 1
- 13
-1
votes
1 answer
Cannot find symbol error when calling method from different class file
I'm trying to call a method form a separate class file to my main program java file but when I try to call the method on an object, I get the error symbol cannot be found for the method. Both files are in the same directory.
//This is my main java…

Mageneto
- 23
- 2
- 9
-1
votes
1 answer
on each button click, change content in a containing div
Can anyone give me some directions / links to where/how you build a function that change content in a containing div when you click a button.
exsample:
I have 7 "stages" in a scene(which is my container div), and every time you click the button…

Mikkel Madsen
- 347
- 2
- 5
- 17
-1
votes
1 answer
Javascript stage scale calculator
I've searched far and wide throughout the web thinking that somebody may have had a similar need, but have come short. I'm needing to create a calculator that will adjust the size of a stage for draggable objects based on a Width and Height field…

wdews
- 352
- 2
- 17
-2
votes
1 answer
Set Style & Font Size of Full Screen Exit Hint, JavaFX
You're familiar with the "press esc to exit full screen" message.
In JavaFX, there is the method:
Stage stage = new Stage();
stage.setFullScreenExitHint("whatever you want it to say, instead of 'press esc to exit full screen.');
I'm using it to…

Cole Henrich
- 155
- 3
- 17