ActionScript 3.0 :: Dynamically Resize Background-picture?
Apr 24, 2008
I want to load a big background-picture into my Flash, and then I want it to be resized so it fits the screen-resolution that the user has on his/her browser.[url]...
it loads perfectly, and - from what I can see - keeps it's dimensions.but it does not resize to the size of the browser as it should....if you go to the link, and then manually resize the browser-window, you'll get the resizing of the background-picture going on, though.[code]...
View 1 Replies
Similar Posts:
Jun 12, 2006
how can i resize the dynamically loaded pictures: i have around 100 pictures, and i don't have the time to make thumbnails from every picture. i'm thinking to change the image size to display the thumbnails.In the xml i want to put only the <image>the link of the picture</image> code, and in flash i want to resize this image that will be displayed in the thumbnail scroller.
View 4 Replies
Apr 24, 2008
I'm testing this idea of mine, but so far I've not been awarded succes.so, here's what's my idea about:I want to load a big background-picture into my Flash, and then I want it to be resized so it fits the screen-resolution that the user has on his/her browserit loads perfectly, and - from what I can see - keeps it's dimensions.but it does not resize to the size of the browser as it should....if you go to the link, and then manually resize the browser-window, you'll get the resizing of the background-picture going on, though.here's how it's all build:I have a test100.fla with a test100.as Document Class
test100.as:
Code: Select allpackage {
import CustomBackgroundTest;
[code]....
View 7 Replies
Nov 4, 2003
How do you resize a picture if you attach it to an empty movieclip you created?
createEmptyMovieClip("holder",1);
holder2.loadMovie("./Pictures/"+pic+".jpg");
View 3 Replies
Oct 25, 2011
i've downloaded flash template, and i would like to change background picture,
View 2 Replies
Jul 17, 2009
i've downloaded flash template, and i would like to change background picture?
View 6 Replies
May 22, 2007
I'm working on a dynamically resized photo gallery like everyone else and their mother. Everything works ok so far, until I try to add key detection to complement the previous and next buttons already in place. When I hit the left or right key it registers, but the picture doesn't resize the same as if I just press the prev or next buttons. It actually loads the next picture, and then resizes on the follow key hit.
PHP Code:[code]....
View 3 Replies
Nov 16, 2010
How to add a background picture to a table?
View 2 Replies
Aug 4, 2009
I am making a web page with about 13 buttons. some are dropdown menu Items.I would like to have a background linked to each of the buttons, such that when I click on a new button the background fades into the new background.
example: I am at my home pag, and the background picture is a tree. you click on my about button, and the background fades into a picture of a book. you click on my contact button and the picture fades to a house. then you click back on the home button and the tree fades back in. If you are at home and you click on the home button the picture should fade into the same picture etc.how to do this without creating each one of the fade transitions manually.
View 3 Replies
Jun 11, 2010
Okay, since my stage doesn't take up the whole window when viewing it on the Internet, is there a way to tile a picture in the background? So no matter how big someone's screen is, in the background they will see a tiled picture.
View 4 Replies
Mar 9, 2007
writing a code that will change a picture base upon the time.
i want to have a picture of the sun rising between the time 6am to 11 am
then from 12pm - 5 pm a pic of the ocean showing
from 6 pm - 10 pm- a pic of the sun setting...
then from 11pm- 5am a picture of the northern lights..
ohh yeah i have the time being called in a # from 1-24, = var = hour
idk if u can write if statments with a range of numbers . ex. if (hour > "range of time/#'s") ....
or have a shape in the backround and have it change as the time changes??
View 4 Replies
Dec 7, 2007
I am trying to build an AS3.0 flash site with a full browser background imagethat scales proportionally like in [URL] I found some stuff online but nothing on how to do it with AS3.0
View 11 Replies
Apr 23, 2010
how do make it so no matter how big my stage is, my background will tile on the stage AND off the stage forever and ever and ever and ever?
View 3 Replies
Mar 6, 2007
I pretty much got it working. The only problem I'm having is that it's only full screen based off of the width. I want the picture to maintain it's scale, so I need it to fill the height if necessary and cut the sides off of the picture. You can see what I mean by clicking [URl]. Resize the browser so it's a lot taller than it is wide and you'll see what I mean. I want it to fit both height and width no matter which is taller. I've played around with it all morning and nothing.
Code:
// pic_mc is the movieclip that I used to load my full-screen background image.
function bgResize() {
pic_mc._width = Stage.width;
pic_mc._yscale = pic_mc._xscale;
if (pic_mc.height >= _yscale) {
pic_mc._x = (Stage.width)/2;
pic_mc._y = (Stage.height)/2;
[Code] ......
View 3 Replies
Aug 7, 2007
I have visited the [URL]. I like the most of the things in this site but the only thing which really amazed me is the navigation bar. On mouse over the menu the background picture transition take place. I guess there are three pictures, and they are doing it with the Action script.
View 6 Replies
Apr 3, 2009
I want to create a website with a background that will auto-resize according to the stage size using AS3.But what i need to know before I do it is: What is the right resolution for the background picture?I want people with resolution starting from 1024x768 to view the website correctly and I also want people with 24'' monitors to view the background with good quality so I guess the image needs a high resolution. I started with 1936x1288 but when I resize the stage to fullscreen the bottom of the image gets cut off.
View 6 Replies
Apr 6, 2011
i want to minimize window to not-fullscreen (i meant restore down (icon in the top right corner betwen - and x)) browser window and ajusting size of window manually over arrows in the corners of the window) and retain background picture full size (i need to picture proportionally follows screen minimizing).
View 1 Replies
Jul 10, 2008
I would like to use an Illistrator file as a repetitivepattern for the background of my flash web site.I couldn't find any pointer in the documentation.
View 2 Replies
Feb 12, 2009
I have a baground in my swf. I want the background over the browser screen.
Code:
Select allfunction ImageonBaground(mc:MovieClip) {
}if (mc._width==0 || mc._height == 0) return;
var imagein:Number = mc._width/mc._height;
var stagein:Number = Stage.width/Stage.height;
if (stageRatio>=imagein) {
// match image width and adjust height to fit
[Code] .....
In the code are other things ( Stage.scaleMode = "NoScale" , listener an etc.) I have a problem, the picture is big. I publish the fla to html and I looked in it... in the browser the bottom of the picture cropped. Is there a possibility that the browser show me the rest of the background with a scrollbar. I have a widescreen laptop and I want to optimize for that.
View 1 Replies
Apr 22, 2002
I want to make a picture gallery and use buttons that move you from picture to picture and backwards, but I don't want to tell button 1 to go to frame 2 and button 2 to got to frame 3 and so on (I hope you know what I mean)Can I use on button on a separate layer with the same action set? I tried something like that, but it didn't work:
on (release) {
thisframe =+1
}
[code]........
but it didn't work. I'm kind of new to any action script other than gotAndPlay, easy functions and all that.
View 2 Replies
Apr 6, 2011
i want to minimize window to not-fullscreen (i ment restore down (icon in the top right corner betwen - and x) browser window and ajusting size of window manually over arrows in the corners of the window) and retain background picture full size (i need to picture proportionally follows screen minimizing). The site is [URL]
View 2 Replies
Jun 27, 2011
I want to take a video feed, filmed in a greenscreen room, and as you see it, do a color keying, to kill the green and show an alternative picture on the background.Is there a way to do this with Flash, AS3? optional question: If a button is clicked, the now new constructed Picture should be saved as a Jpg.
View 2 Replies
Jul 16, 2011
I am creating a site and I want a small swf slideshow background to be loaded into the main site SWF and be able to be resized to fill the browser. But as I bring in other swf files they are able to retain their size, not be resized in the browser. And I want the main site to stay in the center of the browser.
View 5 Replies
Nov 24, 2011
I want repeat a image library for all stage size, does anyone know how I can do this.
View 1 Replies
Mar 3, 2009
this is my first post on this forum. I'm new to Flash and Actionscript. Please forgive me if this question is too dumb. I don't know how to use the ComponentEvent.RESIZE event. I want to use it to resize my textfield's background, whenever the textfield is resized (the textfield is resized automatically when the user changes the input text). I don't know if I'm asking the right question, I will try to explain it through the code:
[Code]...
View 7 Replies
Jul 15, 2009
I'm looking to achieve the effect seen as these sites (a background photo that rescales while not losing image quality)...
[URL]
View 4 Replies
May 6, 2011
I'm creating a flash projector file and need to scale background full-screen.The background is a gradient shape.I made it full screen and resized background so width and height is stage width and height but it still won't work.
View 4 Replies
May 30, 2007
I am trying to achieve an effect seen as on this website. [URL]
I want to have a background image that resizes to the browser window (my other elements retaining their size) - but stays in scale. I have been using the code provided at gotoandlearn which tiles the image. Here is the code used there.
import flash.display.BitmapData;
GreyBar._xscale = Stage.width;
var tile:BitmapData = BitmapData.loadBitmap("tile");
[Code]....
View 5 Replies
Jun 5, 2009
I have a problem with the resizing of the background. This is the code i use
bg_mc._x = 0;
bg_mc._y = 0;
bg_mc._width = Stage.width;
bg_mc._height = Stage.height;
How I can make this background to resize in full screen?
View 1 Replies
Nov 22, 2007
How do I center dynamically loaded picture?[code]...
View 3 Replies