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
3
votes
1 answer
Find added files in index before an initial commit is made
I am writing a script that finds all files that are added to the stage. I have only come up with solutions that work when there is already a initial commit (ie using git diff-index --name-status HEAD). But no solution that works when there is no…

johlrogge
- 31
- 1
3
votes
1 answer
Git: ability to stage patch
Follow-up from Git: ability to stage a certain file content without touching the working tree:
I want to modify the index of one (text) file by staging a patch (against HEAD) without having to change the working tree file state. Is this possible?

Mot
- 28,248
- 23
- 84
- 121
3
votes
3 answers
Git: ability to stage a certain file content without touching the working tree
I want to modify the index of one (text) file without having to change the working tree file state. Is this possible?

Mot
- 28,248
- 23
- 84
- 121
3
votes
2 answers
Dynamic stageWidth and Height in Flash AS3
This seems like it would be a really easy thing to do, but its been giving me all kinds of headaches. I have a movieclip that is a gallery, It's linked to be called from AS when a button is clicked. When an image in the gallery is clicked, It…

Ryan Rohrer
- 599
- 1
- 8
- 16
3
votes
2 answers
How to access the stage in another class?
I use FXMLLOADER to load a fxml file SignInUI.fxml in LogUIController. The code is here:
Stage signIn = new Stage();
FXMLLoader fxmlLoader = new FXMLLoader(HelloApplication.class.getResource("SignInUI.fxml"));
SignInUIController signInUIController =…

Cao Dingjie
- 35
- 6
3
votes
2 answers
Detecting a movieclip has been Flipped horizontally on the stage in as3
If two movie clips instances of the same movieclip are placed on the stage and one is flipped horizontally in Flash.. Is there a way I can detect which one has been flipped horizontally in code? ScaleX seems to remain unchanged.
The MovieClip has…

prettymuchbryce
- 131
- 1
- 9
3
votes
1 answer
Common practice for stages
Snowflake allows to put files of different structure in just one stage using different paths.
On the other hand we can put files of the same structure in separate stage.
Is stage a store for several tables of a schema or is stage a mean to store…

oogolov
- 65
- 1
- 4
3
votes
1 answer
ActionScript - Keyboard Events Without Stage?
is it true that keyboard events can not be accessed outside of the stage on non display objects?
example:
package
{
//Imports
import flash.events.EventDispatcher;
import flash.events.KeyboardEvent;
//Class
public class TestClass extends…

Chunky Chunk
- 16,553
- 15
- 84
- 162
3
votes
1 answer
git ls-files --stage shows files even after committing
I'm after git command that shows all files currently residing inside staging area (is it the same as index?).
First I removed all files from index:
$ git rm --cached *
rm 'newfile'
rm 'os-list.txt'
rm 'remote_stuff'
rm 'removethis'
Now I check…

Logan Lee
- 807
- 9
- 21
3
votes
1 answer
iPad : two-stage method implementation
here is my problem, I hope someone can help me.
My iPad app is made like this : I have several viewControllers added as tabs in a tabBarController added to window in my appDelegate. In each of these viewControllers I got two navigationControllers…

Bejil
- 412
- 5
- 18
3
votes
0 answers
Draw map and parts of map in dialog window
I would like to achieve the following behavior:
Draw a scrollable world map of x*y tiles. Draw a given part of this map inside a dialog window (using the class Dialog). Pretty much the way Transport Tycoon enabled you to see a little part of the…

LocoMH
- 95
- 1
- 3
- 7
3
votes
1 answer
Stage resizing and getting the right variable
In my Flash Application (AS3), I want to get the stage size and use that so my objects (which the user controls) can't go outside of the screen. However, when I use:
stage.stageWidth;
stage.stageHeight;
The values I get aren't actually what I…

Ethan Mick
- 9,517
- 14
- 58
- 74
3
votes
0 answers
How to check if the fxml window or a stage is open or not in JavaFx?
I am working with several FXML files that are activated by pressing a button from the Main Frame. When you click the button more than once, more than one instance of the stage opens up, so it is taking too much memory (RAM) and the program becomes…
user5458938
3
votes
1 answer
How to make width/height of stage flexible/auto fit in flash?
In flex the width can be set to 100%,but in flash it seems I can only set the width/height in unit of px.
Is there a way to set the stage to 100% instead of xxx px in flash?
I'm using Flash Professional CS5 if that matters.

ollydbg
- 3,475
- 7
- 28
- 29
3
votes
4 answers
How to return value from a stage before closing it?
I have a "main stage" where I press a button to open a "second stage" where I have a table, the user selects one item of the the table and click on "asignar" button (which is just a confirm button), once clicked, it must return the code of the item…

José Cousiño
- 399
- 1
- 6
- 15