ActionScript 1/2 :: Setting An Object To The Corner Of The Screen
May 4, 2009
I have a button control set up to switch my program from windowed mode to fullscreen, and back again.
This is just 2 buttons that alternate frames in a movieclip.
I was wondering if there was a way to keep the movieclip locked to the upper right corner of the program when the user switches between windowed and fullscreen modes.
The code for the buttons; if needed, is:
//Fullscreen button
on (press) { fscommand("FullScreen","True"); }on (release) { gotoAndStop(2); }
//Window button
on (press) { fscommand("FullScreen","False"); }on (release) { gotoAndStop(1); }
View 1 Replies
Similar Posts:
Oct 28, 2010
When you create shape on stage and right click and chose create object you can chose Registration point for the object you chose what corner will be used as center of coordinates for this object. Now onice you create object is there way to change this registration point e.g. i created it in center now i want to to be in upper left corner?
View 5 Replies
Oct 28, 2010
When you create shape on stage and right click and chose create object you can chose Registration point for the object
you chose what corner will be used as center of coordinates for this object. Now onice you create object is there way to change this registration point e.g. i created it in center now i want to to be in upper left corner?
View 1 Replies
Oct 29, 2010
When you create shape on stage and right click and chose create object you can chose Registration point for the object..you chose what corner will be used as center of coordinates for this object. Now onice you create object is there way to change this registration point e.g. i created it in center now i want to to be in upper left corner?
View 2 Replies
May 8, 2008
I'm working in a xml videogallery and I'm using a video component... The problem is that when I go fullscreen the video object loads in the top-left corner of the stage (is a 800x600 movie) tough I publish my movie with 100% x 100% dimensions.
[Code]...
As you can see after the first fullscreen the stage remains in the Top Left corner. Is there any way to make the stage return to the center? I need to do it when I return from fullscreen to normal mode... or.. what can I do? I tried to put the gallery inside a MC and center it but still fails cos the video object loads in the registration point of the MC (like in the first example I've provided)...
View 4 Replies
Jan 23, 2010
I'm new to Adobe Flash CS4. I'm making an animation of some fish underwater. I have 2 small fish motion tweened to follow a large fish from left to right. When I view the animation in full screen the small fish seem to be wiped off the screen at a certain point. The tween box continues to follow it's path but the symbol disappears. This only seems to happen with larger objects.
[Code]...
View 2 Replies
Mar 26, 2009
is there a way in action to group to object so when one object is drag across the screen the other object sticks with it, im using flash btw
View 6 Replies
Oct 27, 2011
I keep gettting the above error when setting my StageDisplayState to full screen. I can't seem to figure out why. All the locations in my index.html to allow full screen are set to full (at least that i can find in the index.template.html file) e.g.
<param name="allowFullScreen" value="true" />
From what I have read, it seems I should be able to fix it with
Security.allowDomain();
However not sure what to inject into the allowDomain() method as it is a local file. This also make me think, I should not need this.
View 3 Replies
Jan 29, 2008
If this is possible to detect if a user's display resolution is less than 1024 x 768 as a flash projector file is launched - then depending on the result I want to select one of the following commands to ensure that no cropping occurs of my final file:
fscommand("allowscale", "false");
fscommand("allowscale", "true");
View 5 Replies
Jun 22, 2011
I'm trying to build a little tile editor for a game I'm about to make, but in setting up the tiles on the screen something goes wrong. Here's the code:
[Code]...
the trace just spits a whole bunch of 'undefined's at me. I double checked the variables once again just to be sure, and they're all right.
View 1 Replies
Feb 5, 2011
I'm new to Flash builder and I'm having this weird screen resizing issue. I'm setting up my .swf of dimensions..
Code:
[SWF(width="760", height="600", frameRate="32", backgroundColor="#000000")]
And I'm using...
Code:
stage.scaleMode = StageScaleMode.NO_SCALE;
But for some reason, which I don't get is that when I do no_scale, the .swf window resized to 760x620, and I have these 20 pixels at the top, which are less than zero in Y, if I leave that line out, my graphics on the screen (isometric tiles) look distorted but the screen stays at 600 px in height.
View 2 Replies
Jun 11, 2010
I'm stuck thinking about the best way to go about setting a line segment's position, I have a class Line(length, angle, previous) being called from a class Polygon. Right now I have:
public class Line extends Sprite {
public function Line(length:Number, angle:Number, previous:Line = null) {
if (previous != null) {
this.x = previous.end.x;
[Code].....
View 1 Replies
Nov 9, 2009
i have an fscommand with ActionScript Code:
fscommand("fullscreen", "true");
and i have checked the flash - allow full screen in html tab in publish setting but it doesn't working
View 1 Replies
Jun 25, 2011
I am trying to move a 'Shape' object across the screen. As the object moves, a copy is being left at the initial position. Almost as if only an instance of original object ahs been moved
This is not an issue for moving an image or MXML graphic. Is something wrong in setting to the move object?
The code is as follows
private var arrow:UIComponent;
private function resetAssets():void{
arrow = new UIComponent();
[Code].....
View 1 Replies
Aug 11, 2009
I am making something flash flip like: [URL] but i want to do it in my banner 1000 width and 299 height problem is that i have few banner images i think 5 to 8 and i want to start my flip from "bottom-left" corner till "top-right"
View 1 Replies
Jun 24, 2005
As the title says, i would like to have an object which is nested beneath another objects depth set higher than that of one the is NOT nested. Is this possible if so how, may be real easy and im just over-looking it but
View 1 Replies
Jan 15, 2010
If I have an array, I can set the keys by doing the following:
var example:Array = new Array();
example[20] = "500,45";
example[324] = "432,23";
If I want to do something with Objects, how would I achieve this?I tried the following:
var example:Object = [{x:500, y:45}, {x:432, y:23}]; // Works but keys are 0 and 1
var example:Object = [20: {x:500, y:45}, 324: {x:432, y:23}]; // Compile errors
var example:Object = [20]: {x:500, y:45}, [324]: {x:432, y:23}; // Compile errors
var example:Object = [20] {x:500, y:45}, [324] {x:432, y:23}; // Compile errors
I understand I could do this:
var example:Object = {id20 : {x:500, y:45}, id324: {x:432, y:23} };
But it doesn't suit me.
View 1 Replies
May 15, 2004
I am working on a game, and have some characters set with lil boxes that should show their names and stats. I set the boxes like this, and this works fine:
Code:
character.prototype.statsBox = function(depth,x,y,name,HP,MP){
this.depth = depth;
[code].....
View 4 Replies
Dec 2, 2010
<mx:Canvas id="maincanvas" backgroundColor="7000" width="100%" height="100%">
<mx:TextArea backgroundAlpha="0"/>
</mx:Canvas>
However if I try creating a new textarea object via:
var textarea:TextArea = new TextArea ();
textarea.backgroundAlpha = 0;
maincanvas.addChild(textarea);
flex throws the error :
1119: Access of possibly undefined property backgroundAlpha through a reference with static type mx.controls:TextArea.
View 1 Replies
Jun 23, 2007
I am trying to make a volume control in my flash movie with actionscript 2.0 Here is my code:
[Code]....
but the problem is the first time I lanch my movie it comes in a good volume.As soon as I hit the up or down button to lower or increase the volume firts the volume goes down a lot and then starts to increase or decrease its volume.
View 2 Replies
Mar 13, 2009
I need to have a SO expire after 30min and I cant figure it out in as3? Set interval? Get time? I'm new to as3.
View 1 Replies
Sep 30, 2009
I'm trying to convert an MXML component to an ActionScript Class. The component consists of a Form with a TextInput, TextArea, and two buttons - Save and Cancel, and a Validator for the TextInput, and other logic to handle events that occur. This component is currently extended by several other components. Now, in the MXML component binding the TextInput text property to a property in an Object was very easy:
<mx:TextInput text="{_itemToEdit.name}" />
But in ActionScript, I'm creating the TextInput and setting the text property before the Object is set, and the TextInput is not being updated:
public var itemToEdit:Object = {};
private var nameInput:TextInput = new TextInput();
public function MyClass() {
nameInput.text = itemToEdit.name;
}
How can I make sure that the TextInput text property is bound to the specified property in the Object?
View 4 Replies
Jan 25, 2010
Right now, I have many MovieClips's in my array. I want to update all the alpha values of the MovieClips in my array. Right now, I am using a for loop but this is not the fastest way to do it.
View 3 Replies
Dec 28, 2010
how to set default property values for objects that are being created in a loop.
In the example below, these propeties are the same for each object created in the loop: titleTextField.selectable, titleTextField.wordWrap, titleTextField.x
If you pull these properties out of the loop, they are null because the TextField objects have not been created, but it seems silly to have to set them each time.
var titleTextFormat:TextFormat = new TextFormat();
titleTextFormat.size = 10;
titleTextFormat.font = "Arial";
[Code]....
View 4 Replies
Feb 22, 2011
I'm having trouble setting up a Graphic object (a solid filled rectangle) to be masked with an image that gets loaded at runtime. I've managed to get it to work with the following code:
<?xml version="1.0"?>
<s:Application xmlns:fx="[URL]"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx"
creationComplete="init()"
[Code] .....
Setting the PNG inside the <s:mask> makes the stage render nothing, while adding the mask programmatically in the init() method causes correct behaviour. It took me quite a while to figure this out and I'd like to understand what it is that I'm doing incorrectly in the MXML approach, as that seems to be what is being done in the Cookbook (other than me using an Image and the example using a Group wrapped BitmapImage).
View 1 Replies
Feb 18, 2012
I have a rquirement where i want to play the song based on the checkbox checked.I mean i want to set the flashvars parameter of swf object on click of checkbox to play respective song.I am using the tag for this is
[Code]..
in my website. Here i want to change the flasvars dynamically on checkbox(function as radion button) checked
View 1 Replies
Jul 21, 2011
I have a Main class that I call from the .fla file. Everything work fine until I set a object in the Library "export for actionscript"... after that the stage didn't work anymore, the stage now return "null", just because I checked an object to "export for actionscript". I'm using flash cs5 and it never happen to me with the early version of flash.
View 1 Replies
Jun 7, 2005
I want to achieve the effect on [URL]. The effect on the left on the about page in which when the mouse moves over the alpha of the object goes to 0%. I have all the layers set up with masks and all but need the action script. I tried applying the following code to a mask which I converted to a movieclip.
on(rollover){
this._alpha--;
}
But this did not work for some reason.
View 2 Replies
Feb 5, 2009
I have a menu, that moves left and right using a move left and move right button that makes more of the menu come into view in the left and right direction.I want the object to stop moving when it's at the beginning and stop moving at the end.I thought I could set a 'max x coordinate' so that if previous was hit the object would not move anymore to the left but it still does.Here is the code I tried to use that doestn' work:
Code:
My Previous Button:
on(press) {
currentX = _root.years._x;
_root.years._x = currentX + 400;
[code]....
View 3 Replies
Oct 15, 2009
I'm new to flash and I am just trying to create a draggable object. Easy right? Sure looks like it should be simple.
So I do this:
on (press) {
startDrag (this);
}on (release, releaseOutside) {
stopDrag ();
}
Then I do Test Movie and when I click and drag, the ENTIRE CANVAS drags. The object I set the action for AND every other object on the canvas moves.
View 5 Replies