ActionScript 2.0 :: Create A Scrolling Background For A Website?
Aug 20, 2004I would like to create a scrolling background for a web site (something that functions like the old 2d pane scroller games).
View 6 RepliesI would like to create a scrolling background for a web site (something that functions like the old 2d pane scroller games).
View 6 RepliesI would like to create a scrolling background for a web site (something that functions like the old 2d pane scroller games). Does anyone know of any books/articles that address this functionality?
View 6 RepliesI am trying to create a scrolling or parallex background for my site. This is a pretty popular effect and I cannot find code for it anywhere on the web. The ones I have seen is for AS2, have used the if statement. Also, do I have to create an invisible movieclip that goes over the whole stage so that AS know where x of mouse is?
View 92 RepliesI'm trying to create a endlessly scrolling bitmap background. I want to make it as efficient as possible as there is plenty of other game logic going on too. The idea is to have a repeatable bitmap scroll horizontally on an endless loop, which can obviously be achieved by placing two sprites of the same bitmap next to each other and offsetting one when it reaches the far left boundary. I was wondering if there is perhaps a faster more efficient way to do this, perhaps using scrollRect or copyPixels? If anyone has any idea which method would be fastest,
View 1 RepliesI'm using Flash Builder 4 Premium. My application has a title bar that I don't want to scroll, and a group underneath that should scroll. Here is the group that I want to be able to scroll:
[Code]...
I'm trying to create a background sound in flash website. I created play/pause buttons and it works fine, but when the sound is over it stops. What I want is the sound to loop, not to stop. I tried different things but I can;t get it working as I wish. Here's my code:
Code:
var mySound:Sound = new dogg();
var myChannel:SoundChannel = new SoundChannel();
myChannel.addEventListener(Event.SOUND_COMPLETE, whenComplete);
function whenComplete(evt:Event):void
[Code]...
Ok i have been looking at a racing game and have used the tutorial from this link here:[URL]...What i am having trouble with is trying to create a scrolling background whilst keeping the car static in the centre of the screen. Ane example of what im trying to do is here:[URL]...So i have tried incorporating the code from that scrolling background example, into the car racing game itself but i am having trouble doing so. Is there any way that the code used from the scrolling background can be input into the racing game example to create this scrolling background effect?
View 1 RepliesI have converted a large background image (much larger than the stage) into a Movie Clip. I did this so I can make it scroll as the player traverses to the edge of the scene.This appears to make the player free to roam the entire background image.I have a tree symbol with a class attached to it that blocks player movement.Here is my problem:
When I drag and drop instances of the tree symbol onto the background, the trees are stationary and do not scroll with the background.I do not want to have to implement code to make the trees scroll when the background does.I was wondering if there was a way to simply attach the trees to the background so that if the background moves, the trees move with it and appear to be part of the background as if they were drawn into it.It is convenient for me to be able to drag and drop as many trees as i need to block certain routes on the background from the player.I tried writing code to make the trees move but it was only working for the very last tree that I added to the scene.
I have a flash website and after I load the page the scroll works very good. After I click on another page inside the flash the scroll stop working unless I click outside the flash content. How can i make it work every time even if the mouse is over the flash content. I don't know very well to work in flash.
View 1 RepliesI have come to a solution where I use an invisible button (covering the whole movie) where the action takes place in. Problem is, I can't put buttons on it because the invisible button blockes them.Does anyone know an other solution of making my background image scroll like the example site?
View 4 RepliesI have a flash website and after I load the page the scroll works very good. After I click on another page inside the flash the scroll stop working unless I click outside the flash content.How can i make it work every time even if the mouse is over the flash content.I use AS 2.0I don't know very well to work in flash.
View 3 RepliesI want my site to do this.I have spent 3 days trying to find code that will let me do this.All I found was cheezy **** you had to pay for, or some guy who managed to do it on a 200x100 scale.
View 1 RepliesIm trying to animate a scrolling background which is simple enough. I dont want the background animation to scroll when the game is first loaded, I only want it to begin scrolling after the play button is clicked.
Ive used stop(); command in the first line of the MovieClip instance that is the back ground.
Some things I have tried
- Coding in flash to scroll the background, add a check to see once the background reached a certain x.position on the stage, it would addChild the same instance, where it originally was located and repeat the scroll process. I couldnt get this work, but would be intersted to see how you guys would approach it.
-Tried using a gotoAndPlay(2); in the movieclip last key frame to repeat the process. This causes the animation to chop up. I tried using this several diffrent ways, I could get it work at one point. But the background would scroll before the button was even clicked, I couldnt figure out a work around.
I'm trying to stop my back groun from scrolling when it reaches end of the back ground .it's not working....
var sceneTwo:Number = sceneTwoSprite.width-stage.stageWidth; var negate1:Number = Math.abs(sceneTwoSprite.x); var difference2:Number = Math.abs(sceneTwo);
if ((sceneTwoSprite.x)+sceneTwoSprite.width <= stage.stageWidth) {
sceneTwoSprite.x == stage.stageWidth + difference2; }
I've got a 800x600 document that has a panoramic picture scrolling horizontally and buttons in the image.
i've got this piece of code for AS2.0
[Code]...
Otherwise it is working all good, but I'd like it to stay put at the start. Right now it immidiately starts scrolling to right unless I move the mouse on top to stop it. So ye, i need to have it sitting still and only scroll when the mouse is at the edges of the document.
I'm trying to create a scrolling game in as3. The problem I'm having is how to make things like explosions and rockets firing from the ground at the player object to scroll with the background instead of staying stationery with the player object during the game. Does anyone know a simple method to keep the explosions and other stuff not connected with the player object, to stay scrolling with the background?
View 3 RepliesI am trying to make a horzontial flash scrolling background and I cant seem to get it to stop at the last frame.
[Code]....
i have to do this project and im stuck. i want to make a scrolling background. [URL]..
View 0 RepliesI am having problem in Zoom with scrolling of background. I want like " There will be a huge background and pan with mouse. when we click on any area that particular area will zoom in and I have to capture that image. And one more thing , that background will contain animated movieclip.
Ref:- [URL]
In above reference you will find bg is simple bitmap with no scrolling..
I have a text field containg an amount of dynamic text. I scroll it auotmatically with AS but it appears that whenever I make the text scroll Flash automatically throws in a background (on the text) and I can't seem to turn it off. I have an image behind the text so I need the background transparent.
View 3 RepliesI'm trying to make a game where the character stays in the middle of the screen and the background scrolls as the arrow keys are pressed.
I've got it moving fine, but the background scrolls off the stage when you reach the edge. The background's bigger than the stage. I want to stop the background moving before this happens.
I have a scrolling background to mimic the effect that my "character" is walking around. It moves according to my up/down/left/right keys. The problem is I can go too far "up" and my background slowly reveals the white stage beneath it.Is there a way to set a parameter or restriction on this image that once the top side of it hits the top of my stage it can no longer continue moving down?
View 3 RepliesI can't seem to get my scrolling background to do it in the reverse order, This is my code
var bg1:Background = new Background();
var bg2:Background = new Background();
var currentBG:Background;
bg1.x = -1.05;
bg1.y = 409.85;
[Code]...
all I want to do is make a scrolling background image like at [URL] how the top left controls where you in the image.
View 3 RepliesI have a scrolling background and am trying to place an object on top of it dynamically. I can get the object(which is a picture of a tractor to appear over the background with the following statement attachMovie("tractor_mc","pic",2); however it locates it at the wrong position on the stage. Is there anyway that I can control where the object is dynamically placed on the stage ? im using Flash 8 and ActionScript 3.0
View 0 RepliesI have created a scrolling background as per the instructions on website [url]...and I want to place objects on top of it. To get the effect that I want the instructions say to do the following:
"1. Put the Cloud ActionScript in a MovieClipCreate a new MovieClip, cut all the ActionScript from the main stage and paste it into the MovieClip. Go back to the main stage. Open the library and drag an instance of the Movieclip with the ActionScript on Stage. Now the dynamic clouds are inside a static Movieclip, which means you can now put things above it without using dynamic attachment. [code]...
How to place movieclips on a scrolling background with AS3? My background scrolls and my character runs when the right arrow key is pressed. But when I tried to place the obstacles he is supposed to jump over, only the first one is visible, and it looks like he's chasing it. My background (Bg) is 3802.8px wide and I put the obstacles and "home" (Cabin) about 600px apart.
var bg:Bg = new Bg();
addChild(bg);
bg.y = 280.1;
var man: Man = new Man();
addChild(man);
[Code] .....
I am looking for the a code to make my background image move horizontally both ways, when the mouse position is on the left or right of the screen
View 4 RepliesI have a question on creating scrolling text. I want the background transparent. Here's what I have: [URL]. The content is there, it just isn't visible. I copied the code and dragged the actual scrollbar/arrows from the tutorial.
The code is as follows:
fscommand("allowscale", "false");
bar.useHandCursor = dragger.useHandCursor=false;
space = 20;
friction = 0.9;
speed = 4;
[Code] .....
I'm working on a website that is kind of set up a bit like a flash game. the background scrolls continuously with the movement of your mouse, and loops to make it appear seamless. my problem is with the quality.. it seems to skip or jump a little when it moves, and I am trying to get it as smooth as possible.
the source file is here: http:[url]....
you can just export it to see what I am talking about. what can I do to make it not so jumpy? are there settings I can adjust, or does anyone have any other code variations that would improve on mine?