ActionScript 2.0 :: Centering Image On Scaling Flash File

Feb 4, 2011

I'm working on a fullscreen application that doesn't run flash on the browser. Running Flash player 10. When you open the file, I have fscommand to run fullscreen, the flash file is built at 1280 x 800, and I have an image (menu screen) that starts off the flash file. I'm trying to find a way to center the image to the native SCREEN resolution, not the flash resolution. Is that possible?

I have this code running on the menu MC:
onClipEvent(enterFrame){
this._x = Stage.width /2;
this._y = Stage.height /2;
}

I've tried other variations of this, and no luck. On my 1280x800 native resolution monitor, it's great. Tested it, and it works. However, if I run the same file on a 1920x1080 monitor, the image is on the lower right hand corner. Also, the image at the moment has a center anchor point, but I'm sure you realized by my simple code. Also, just escaping the fullscreen mode, and scaling the window also screws up the formula. So I'm not sure what I can do to make it dead center no matter the screen res, or size of window. The reason I need to do this, is also because there are times where I have to change the flash resolution, and I don't want to go into the image everytime to adjust the center.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Centering Flash Site On Browser Without Scaling

Jan 10, 2010

I have a full flash website built using Flash (of course). So I publish it using flash itself. But I am having a difficult time aligning it in center with its original dimension. I dun want my swf stretch out or scale at all. I want to display it without scaling and also in the center of the browser window.
stage.scaleMode = StageScaleMode.SHOW_ALL;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP;
I did try these and also tried changing my publish settings but didn't work.

View 7 Replies

ActionScript 3.0 :: Images Not Scaling Or Centering When SWF Online

Aug 20, 2011

I only recently switched to AS3 from 2 and I'm sure there are concepts. When I load a grid of images and scale and center them, why does this work locally but not when I upload it to a server? These images do not scale or center online, they just position themselves at top left at full size. Here's the portion of my code that centers the image when loading of image is 'done.'

ActionScript Code:
function thdone(e:Event):void {
if(e.currentTarget.width > e.currentTarget.height){
scaleFactor = (120/e.currentTarget.height);
} else {
scaleFactor = (120/e.currentTarget.width);
[Code] .....

View 1 Replies

Actionscript 2.0 :: Centering And Scaling Background Movie Clip Fullscreen?

Mar 26, 2010

So I am working on a full screen website, and background_mc I want to be centered and scaled 100% to the stage. But I also do not want the image to loose it's proportions. Here is my code so far, it is only seeming to center the movieclip:

Code: Select allfscommand ("fullscreen", true);
Stage.scaleMode = "noScale";
Stage.align = "TL";

[code].....

View 1 Replies

Actionscript 3 :: Centering Objects On Stage And Auto-Scaling With Stage Resize

Oct 19, 2011

I'm writing a web based flash app that's written entirely in AS3. I have objects on the screen as part of a GUI. I would like the user to be able to resize the window, or make it full screen. I would like everything to auto-scale with the resize, but also remain in the same relative position on the stage.

View 1 Replies

Xml :: Centering CDATA Text From A XML File In Flash Application

Dec 14, 2011

Here's an easy one: how can I center text that I'm loading inside CDATA tags from an XML file into my .swf?

Everything I've tried in terms of tags and text-align:center divs hasn't worked. Is this possible to do without editing the .fla?

View 2 Replies

ActionScript 3.0 :: Image Scaling In Flash?

Jun 3, 2007

I'm having problems scaling images in Flash with ActionScript 3.0. The only way I can see to get the quality decent is by using smoothing, which drastically hurts performance.

The thing that confuses me is that I made the same site in ActionScript 2.0, targeting Flash player 7, and the image quality is fine when scaling even without smoothing. As soon as I target Flash player 8 (or 9 with Actionscript 3.0) the quality degrades when scaling.

I don't have to move back to Actionscript 2?

View 4 Replies

ActionScript 2.0 :: Scaling An Image In Flash?

Apr 24, 2003

can scale a group of images with different sizes into one fixed size?

In other words, I have an array of images coming into my movie. that have different sizes. I place each image upon a Mc that resides inside another movie clip and resize accordling. The problem is, all of the images have to be the same size. I want to be able to import any size image and scale and resize it to a specific size.

View 6 Replies

ActionScript 2.0 :: Centering Image In The Xml Image Gallery?

Jan 30, 2007

did the tutorial on this site for an xml image gallery - it worked great... My question would be is there a way to accomodate for multiple image sizes that would allow the image displayed to be centered?

View 1 Replies

Actionscript 3 :: Flash CS5, Make The Image Scaling Smoother?

Sep 18, 2011

I have a problem where the images look a little pixelated because they have been scaled down alot, just need a way to make everything appear smoother.

I need the game I'm making to look high quality and also work at different resolutions so when I made all the graphics I made them massive and same for the stage size in flash.

The stage size is 2000*1500 and it's being scaled down to 800*600 which is an exact ratio, I didn't expect to see pixelization when scaling the images DOWN, that's why I made them so large.

If there's no options for smoothing things out, then does anyone know the best option for swapping images at run-time? This way I can have pre-made images for all the most popular resolutions.

View 1 Replies

ActionScript 2.0 :: Scaling Loaded Image Or Movie In Flash Container

Oct 11, 2010

I need to scale the loaded image or movie in a flash container without loss of quality, how to do it?

View 1 Replies

ActionScript 3.0 :: Flash Scaling Size Of Source Image For Server?

Dec 5, 2010

I have code that allows users to upload images, which are of any dimension and file size, and have applied that data to a bytearray and a loader class, which is then displayed and saved to the server. The server has a memory size limit per file of 256k. Everything works well unless the image is too big. How to change the size of that source image so the server will accept it. I've been trying to assign the loader data, or the bytearray, to a Matrix, or a Bitmap, or a BitmapData, figuring one of these can scale the dimensions of the image which will bring down the file size. (To be completely clear: this isn't movieclip.scaleX -- that doesn't affect the size of the source image)

Code:
var _clickMe:ClickMe = new ClickMe();
var _imageLoader:Loader=new Loader();
var bytes:ByteArray=new ByteArray();
var fileRef:FileReference = new FileReference();
var _faceBitmap:Bitmap = new Bitmap();
[Code] .....

View 3 Replies

Centering A Background Image?

May 14, 2009

I'm told that the following chunk of script will center the stage on resize, but not knowing much of anything about actionscript,

myListener = new Object(); myListener .onResize = function () { ... } Stage.addListener( myListener ); // later ... Stage.removeListener( myListener );

View 5 Replies

ActionScript 3.0 :: Centering An Image?

Dec 3, 2011

I have a movieclip on the stage which has the dimensions 400x400.I currently load images,and add them to this component.Each image is a different size. At this moment in time, they are placed at position 0,0 within the movieclip container.Some of the code looks like

var data:XML;
var total:Number;
var url_list = new Array();[code]....

Is there anyway I could get the loaded images placed at the center of the movieclip container.I dont know if I have to do something like subtract the images width and height from the containers width and height, and then divide by 2?

View 3 Replies

Professional :: Centering Image On Stage

Dec 31, 2010

i've created a rotating banner with images and wanted to increase the stage size so i can put an opaque larger image in the background and have the other images rotate on top of it. when i made the stage larger i'm having difficulty selecting the other photos so i can center them back on the on the stage. i was able to get the first image centered but i only see the outline of the other images.

View 3 Replies

ActionScript 2.0 :: Centering A Loaded Image?

Jun 24, 2008

i am trying to get an empty movieclip to center after a jpg loads into it. the images load, but they don't center. my first attempt (using loadMovie) would read the size too quickly and would only center after a second click. i thought using a MovieClipLoader would work, but my leftEdge always returns 350. i'm getting a 0 value for _width.

on a related topic, i want to apply a DropShadowFilter to the same empty movieclip.i haven't tried it with the MovieClipLoader, but it didn't work using loadMovie. any ideas on that? if i have to, i can create a generic dropshadow and position and scale it accordingly, but again, i will need to be able to read the size and position of the empty movieclip.

Code:
var mcl:MovieClipLoader = new MovieClipLoader();
var mclListener:Object = new Object();[code]...

View 5 Replies

Actionscript 3 :: Centering An Image Inside A Loader

Mar 17, 2011

I'm developing an ActionScript 3.0 app for Blackberry Playbook. I have a Loader with a fixed size of 240x240px. The images that can be loaded inside are smaller or bigger than 240x240px, and also they aren't squared. I use this code to resize that images:

[Code]...

View 1 Replies

ActionScript 2.0 :: Centering A Loaded Image/Movie?

Apr 11, 2006

I am needing to load an external image (probably jpg) into a movie. I am using an empty movie clip, giving it an instance name and the code:

Code:
instance1.loadMovie("image.jpg");

What I also need to do is be able to either place that image in a specific location on the stage or just center it. Any advice you can give me on that?

I am attempting to do something like this: Use two movie clips. One is a holder that contains the second movie clip, which is where the image is actually being loaded. Then, I am using the following math:

Code:
instance1.isntance2.x - instance1._width/2 instance1.isntance2.y - instance1._width/2

Does this look like it would work? Is there anyway I can set instance1 to have a width that is equal to the size of the main movie (1024 x 768)?

View 12 Replies

ActionScript 2.0 :: Centering Image Within Resizing Frame?

Oct 2, 2003

Im having problems of centering my images dead center of my resizing frame.

heres the code:

// All the credits go to Gorlim from www.flashxpress.net
// You need 2 clips in the library: btn and fond
cmpt = 0; //handles depth to attach

[Code]....

View 4 Replies

ActionScript 2.0 :: Centering Image Loader Component

Dec 4, 2011

Im trying to use a Loader component to add images to my flash file externally because i need to use a single loader for multiple images of various sizes the centerpoint is forever changing the centerpoint is ALWAYS to top left (as seen in image) and i cant figure how to change it.Ive used the following actionscript 2 code which i would have assumed it would center it fine but its never truley centered.[code]

View 1 Replies

ActionScript 2.0 :: Kirupa Photo Slideshow Tute - Centering Image?

Sep 11, 2006

I've been going through the tutorials and forum trying to build a photo slideshow. I managed to get the slideshow working with buttons, but am really stuck with trying to center the images ... I'm using portrait and lanscape images, and want them both to be vertically and horizontally centered in a 504x504 moive.

View 2 Replies

Actionscript 3 :: Flex4, Centering And Resizing A Image Inside A Group Container

Jan 21, 2010

I'm looking for the best way to get a flex 4 image object to resize and horizontally center whenever its parent container (a custom component based on group) resizes. I cannot set horizontalCenter="0" to accomplish the image centering because I use a move transition to "slide" the image in and out of view.

I'm externally setting the image source in the component. Here is a simplified example of my component code that only addresses resizing the image.

<s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/halo" >


[Code].....

View 2 Replies

Actionscript 3.0 :: Centering Pictures From XML File?

Sep 29, 2009

I have a basic XML file that is going to load 9 images into flash, img1, img2, img3, ect... All the images are different width's and height's. I'm having trouble aligning the center of the images to each other, or aligning the center of images to a certain spot on the stage. Right now the top left is aligning.

Code: Select allvar imageX:XML;
var imageList:XMLList;
var canvas:MovieClip = new MovieClip();

[code].....

View 7 Replies

ActionScript 2.0 :: Centering An Executable File?

Dec 7, 2006

I have created an executable file from a flash movie and am wondering if it is possible to center the movie on the desktop when it autoruns.

View 1 Replies

CS3 Scaling Webpage And No Vector Image?

Nov 15, 2010

I have made a webpage that scales to the size of the users screen. Now i'm having to following problem. There is a image gallery in this website that makes use of an XML file. Everytime when the website is scaled to a bigger size the image gets unsharp. This only happens to the external image that is displayed in the gallery since the flash elements are all vectors.I was already thinking about a higher DPI rate or using different images.

View 2 Replies

ActionScript 3.0 :: Scaling Image To Fit On A Frame?

Oct 13, 2009

I'm currently having a problem regarding scaling an image to fit on a frame. Well I tried searching this forum, found some results, tried it but not working with me.So here's the situation, I have a frame with a size of 260x300(width/height). What I want is to scale all images(jpg) automatically to that size when loaded.By the way, I'm currently making my own flash playlist and the image I'm talking about is the album art.

View 1 Replies

ActionScript 3.0 :: Scaling Image From Loader?

Aug 23, 2010

I'm writing a movie that should load image from external location and display it in placeholder. I called placeholder "imageMC" and I gave it dimensions on 250x250 px.Next I load image using Loader class and I'm waiting for complete event.After that I try to resize image so it will fit to placeholder. I also want to keep fine aspect ratio.My code looks that:

ActionScript Code:
function onComplete(e:Event):void {
var wFactor:Number, hFactor:Number, originalWidth:Number, originalHeigth:Number, newWidth:Number, newHeigth:Number;
originalWidth = loader.content.width;

[code]....

The problem is line: "imageMC.addChild(bmp);". When I add a bmp as child of imageMC the trace statement looks like:

Quote:

250:187 //loader.content dimensions
252.05:362.4 //imageMC dimensions ??!! WHY THEY ARE CHANGED???
250:187 //bitmap dimentsion

and imageMC resizes his heigth and display image wrong scaled.But when I add bmp as child of stage: "addChild(bmp);" trace looks like:

Quote:

250:187
250:250
250:187

and image is scaled propertly.What is cause of this error?

View 2 Replies

ActionScript 3.0 :: Scaling An Image In A Movieclip

Nov 19, 2010

i have read a number of tutorials on the internet trying to find a fix to the problem i am having. Everytime i create a new movieclip using public var mc:MovieClip = new MovieClip(); the movie clip is created after setting the values and drawing a square to show it in the file. However when i add an image to the movie clip i created it scales to be the same size as the movie clip or half the size of the movie clip which isnt what i want.

mc.addChild( GameTile ); // add the square instance into display list
GameTile.loadBitmap("stronghold.jpg", 0, 0);

This is the code i use to add an instance of my image class to the movieclip called mc. I was wondering if anyone has a simple way of scaling the image to its original size within the new movieclip instance? I have tried various ways of scaling and it works but when the window is resized the image is not the correct size.

View 4 Replies

ActionScript 2.0 :: Scaling An Image Proportionally?

Apr 11, 2005

I need to scale an image so that it won't distort. Of course I don't know the dimensions of this image.I tryed something like this but it doesn't seem to work at all.

Code:
loadMovie("../ImageUploadFolder/optimized_images/" + this.file, "_root.back_mc.image_panel_6.imgContainer6");

[code].....

View 14 Replies

ActionScript 2.0 :: Scaling Dynamic Image?

Feb 21, 2006

i am trying to load the image in MC and i want to scale the image proposinate from the center.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved