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
0
votes
1 answer

Add mx.controls.Button to Flash Professional CS6 document

I'm using Flash Professional CS6. It allows adding SWC files of Flex SDK. What I'm trying to do is adding the mx.controls.Button to stage. The code runs well, but the button doesn't appear on stage. Am I doing anything wrong in this code: //f9 to…
jondinham
  • 8,271
  • 17
  • 80
  • 137
0
votes
0 answers

TextArea text is not getting set when in another state

The TextArea.text value is not getting set or staying set. This happens when I have a transition and that uses a Rotate3D and there are two transitions. With one transition it works. With two transitions (the return transition) it doesn't. So in the…
1.21 gigawatts
  • 16,517
  • 32
  • 123
  • 231
0
votes
1 answer

AS3 change stage size - virtual camera

Edit: Is there any way to adjust the stage size and position from inside flash? Hey Im making a flashgame right now, its a 2D game with 2charakters. You can move them right now trought the level as you want to, but my problem is, its only one fourth…
tschery
  • 153
  • 2
  • 15
0
votes
2 answers

Variables not updating in a callback

I have code to define behavior of a position model set in a world file for stageros. I want to keep track of it's current position in the world in the variables px py and ptheta by subscribing to the odom topic for Odometry messages sent by…
Jigglypuff
  • 1,433
  • 6
  • 24
  • 38
0
votes
1 answer

AS3 drag mc but inside another mc or other object and cut when goes out

What is easiest way to do this: on stage 400x400 I have rect 200x200, inside rect are few mc objects. I can drag & drop StartDrag and add 200x200 as limits for this movement, but how I can do that when drag obejct they can be "visible" just near the…
Simon
  • 121
  • 7
  • 19
0
votes
4 answers

Flash: Coming back from another tab in browser, can flash listen to return to tab event of some sort?

I got this flash application where you can click a link while watching a video. It will open a new tab and pause the video. Now when you come back to the flash application it would be nice if the video would start playing again. Is there a way, an…
Kasper
  • 1,282
  • 4
  • 20
  • 39
0
votes
3 answers

HitTest for objects not yet on Stage

I need to add a MovieClip to stage, the limitation being that it should only be added to an empty area on the stage. The stage itself either contains complex shapes or is manipulable by the user i.e. he can drag/move objects to change the empty…
rolfk
  • 786
  • 9
  • 16
0
votes
1 answer

Where is grub stage1.5 code located in the disk?

I am trying to write a stage1 bootloader that will load GRUB stage1.5. So where is its code located exactly? And how can I know how big it is (so I know how many bytes I need to read) ?
KevinRGT
  • 389
  • 2
  • 5
  • 14
0
votes
2 answers

Several errors "Access of undefined property"

So I have this pretty basic code in my document class: package { import flash.display.Sprite; import flash.events.Event; import flash.events.KeyboardEvent; import flash.ui.*; import flash.events.MouseEvent; import…
user1426572
0
votes
1 answer

Easeljs Container event listeners

I create Container, attach onPress function to it, then add it as Child to the stage. Then clear the stage ( so there is no such child there anymore ), update it. but onPress is still working.
Herokiller
  • 2,891
  • 5
  • 32
  • 50
0
votes
1 answer

Publish to flash player 9, Stage Video available if browser plugin 10.2 or greater?

I'm hoping someone can clear up some confusion. I have a flash video player and for widest compatibility I want to only target flash player version9. So in my embed code I will only be checking for flash player version 9 or greater. However, if a…
Bachalo
  • 6,965
  • 27
  • 95
  • 189
0
votes
1 answer

Any way to affect the original width of the stage, in modes other then StageScaleMode.NO_SCALE?

Documentation for the stageWidth property of the stage object states that: If the value of the Stage.scaleMode property is set to StageScaleMode.NO_SCALE when the user resizes the window, the Stage content maintains its defined size while the…
jayarjo
  • 16,124
  • 24
  • 94
  • 138
-1
votes
1 answer

How to parallelize stages in Jenkins pipeline?

I have the following pipeline and I need to parallelize the javadoc generation and publishment and the execution and publish of integration tests report. I'm trrying the following way but it doesn't seems like the pipeline is beeing parallelize. …
-1
votes
1 answer

In C#, using the Mongo Driver, how can I set a "last modified field"?

Because Personio's API won't tell me when employees are created or modified which creates scalability issues for us, I'm creating a cache where I can store the Personio with metadata including whether/when it has been modified. I've already learned…
Brian Kessler
  • 2,187
  • 6
  • 28
  • 58
-1
votes
2 answers

how to get the caller stage from ObservableValue in focus change listener

I want to have a focus listener as a static variable that is passed throw static method, and its function is to close a stage when focus on that stage is lost. i have the code: Main class public class Main extends Application { @Override …