Questions tagged [stage]

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.

633 questions
6
votes
1 answer

How to retrieve stage from UI control in JavaFX

The question is pretty simple, but I haven't found any examples relating to this. I want to obtain the containing Stage of a UI Control in JavaFX. Is there a way to do this?
Alvaro
  • 11,797
  • 9
  • 40
  • 57
5
votes
1 answer

Access the stage in the Flash CS4 IDE

The stage in the Flash CS4 Authoring Enviroment is a running SWF. That what makes thing like the 3D and Bone Tools to work in the IDE. Is it possible to access that swf ? I suspect the immediate answer would be no because that would raise some…
George Profenza
  • 50,687
  • 19
  • 144
  • 218
5
votes
1 answer

Using stageVariables in lambda integration for API Gateway raises validation error

I have two stages for my API Gateway (dev and prod). I want each to point to dev and prod lambda aliases, respectively. I tried using stageVariables in the lambda integration but this raises validation errors and API Gateway doesn't have permissions…
zach
  • 51
  • 2
5
votes
1 answer

How to stage a Maven release without creating scm tag?

Our current SDLC goes something like this: Develop code & unit tests Release to QA for system testing Repeat steps 1 & 2 as required until QA is passed Promote to UAT Repeat steps 1 to 5 as required until UAT is passed Deploy to production We are…
kirks
  • 51
  • 1
5
votes
1 answer

how to fix - stageResult set to FAILURE but still get success in jenkins

I'm trying to create a very simple pipeline, it has one stage and one step. it uses the job 'build' I created as freestyle (which works) but I added an error (the parameter project name has a wrong value - 'test3' instead of 'test') when I ran it,…
JHON SMITH
  • 103
  • 1
  • 1
  • 6
5
votes
1 answer

how to position the window stage in javafx?

I made a simple game and when it ends it'll display a new Stage with some information: public static void d(String m){ Stage stage = new Stage(); stage.setTitle("GAME FINISHED"); Label label = new Label(m); …
Ehsan Duwidi
  • 53
  • 1
  • 5
5
votes
1 answer

.htaccess - Remove one query parameter from URL

I have a URL that looks something like this: https://www.example.com/about-us?stage=Stage&utm_source=abc&utm_medium=xyz I want to just remove the stage=Stage part. I tried the below code: RewriteCond %{QUERY_STRING} ^stage=Stage$ RewriteRule (.*)…
GiarcTNA
  • 499
  • 2
  • 17
5
votes
2 answers

How to run a function after Stage.show()?

I'm struggling with a problem where one chunk of code runs before it's initialized. @FXML public void Start(int pesel) throws IOException { klientPesel = pesel; root =…
Dreik
  • 140
  • 2
  • 2
  • 13
5
votes
1 answer

Set KeyPressed event for a TextField in JavaFX

I have number of TextField objects inside a pop up window called dialog (type : Stage). I am trying to define an action handler for them which aims to close the stage once the escape button is clicked on the key board. Here is my function for the…
Danial Kosarifa
  • 1,044
  • 4
  • 18
  • 51
5
votes
2 answers

Interpretting Spark Stage Output Log

When running a spark job on an AWS cluster I believe that I've changed my code properly to distribute both the data and the work of the algorithm I am using. But the output looks like this: [Stage 3:> …
user1518003
  • 321
  • 1
  • 7
  • 18
5
votes
1 answer

JavaFX TabPane and resizing parent Stage

I have a stage with a variable list of check boxes. When the list changes changes the stage has to resize. This works fine on most occasions, after adding all check boxes to a VBox you then call stage.sizeToScene() and the stage resizes accordingly.…
Jamie Macaulay
  • 794
  • 6
  • 20
5
votes
4 answers

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 college student, I'm creating this for an assignment but we are forced to use as3 classes. When I run the code in the maintimeline,…
Graphithy
  • 53
  • 1
  • 1
  • 3
5
votes
3 answers

Make Rectangle transparent

I need to make a drawn rectangle mouse transparent, in order to see the desktop. The following code draws my rectangle. What should I add to get that ? Thanks for help public void start(Stage primaryStage) { Group group = new Group(); …
Stéphane GROSSMANN
  • 369
  • 2
  • 5
  • 14
5
votes
3 answers

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. Here's the code for my test application: @Override public void start(Stage stage) throws Exception { // TODO Auto-generated method…
user2611462
4
votes
2 answers

How to trigger only specific stage of pipeline with gitlab API?

I have gitlab project with ci file: stages: - build - run build: stage: build script: - (some stuff) tags: - my_runner_tag except: - triggers when: manual run: stage: run script: - (some stuff) tags: -…
coolsv
  • 268
  • 3
  • 17
1 2
3
42 43