ActionScript 1/2 :: Scrolling To Stop At Stage Boundaries
May 28, 2010
I am trying to achieve this result. [URL]. Its a really nice effect. I have this code:
function accelScroller(myTarget) {
myMiddle = Stage.width/2;
this.onEnterFrame = function() {
moveDist = myMiddle-_root._xmouse;
myTarget._x += moveDist/20;
} accelScroller(imgBar);
I have a movie clip with all my images, this code allows me to go either right or left and decrease the speed either if i go to the right or left. But I want the the scrolling effect to stop when it reaches the end, either left or right side. How do I do that? You can download the fla file here [URL]
View 17 Replies
Similar Posts:
Jun 10, 2011
stage.addEventListener (MouseEvent.MOUSE_WHEEL, MouseWheel, false, 0, true);
function MouseWheel (e:MouseEvent) {
if (e.delta > 0) {[code]..........
What I want to do is simply to disallow scrolling when the top or bottom end of testMC hits the top/bottom of the stage. What occurs right now is that I can basically scroll completely off the stage and it doesn't stop.
View 1 Replies
Feb 20, 2009
Im working on a horizontal scroll of images I was able to get the ease to happen on roll out but im having trouble stopping the images from scrolling too far off the stage using the ease , I attached the fla.
View 2 Replies
Jul 8, 2005
How to set the up and down boundaries for a vertically scrolling MC?
I have the up/down buttons working fine - the mc scrolls both ways vertically but doesn't stop in either direction.[code]...
View 1 Replies
Jul 2, 2009
I have literally just implemented some code in a class to make images scroll. The code is here:
Code:
if (_root._xmouse>150) {
_root.speed = 0;
} if (_root._xmouse<650) {
_root.speed = 0;
} if (_root._xmouse<150) {
[Code] .....
However the scrolling does not stop and eventually goes back on itself and does a loop. Without creating any mc's is there anyway to stop this from happening and create a boundary?
View 1 Replies
Jan 11, 2010
Im making a scrollable mc. Easiest thing in the world.... but the damn scoller just will not stop when the movie clip it's scrolling ends. It stops....eventully... but not close enough. What actionscript do I need to use and where do I put it?
View 1 Replies
Dec 16, 2010
Im am trying to make boundaries on my stage for my MC box1_mc, there are no errors but it doesnt seem to work.. Here is the code..
function limitStageBorder(box1_mc) {
var box1_x:Number = stage.stageWidth - box1_mc.width;
var box1_y:Number = stage.stageHeight - box1_mc.height;[code]......
View 7 Replies
Feb 26, 2011
I realize there have been a number of other threads on this subject, but none of the solutions seems to be working for me.
I am developing a flash file, that will dynamically load other swf's and play them on screen, but the loaded swfs are displaying things outside of their stage boundaries. I had limited success setting up a custom mask, that masked off all areas outside of the loaded swf. The problem is that when the loaded swf adds dynamic content to the stage, the new content ignores the mask.
View 3 Replies
Jan 17, 2010
Sorry for lack of terminology but I want to create movie clips with moving graphics or objects and so want to see the boundaries of the stage. At present the whole area is filled with my stage colour. A setting somehwere?
View 1 Replies
Sep 9, 2009
I have the AS to move pictures around (like a jigsaw puzzle i guess), im just struggling with setting boundaries so that the pieces cannot be dragged off the stage...
Im presuming setting the boundaries is a matter of adding X and Y values or similar.
View 1 Replies
Oct 19, 2009
What do I have to do so that a text field will display outside the boundaries of the current stage? For instance, let's say I have a stage that is 300 x 200, and I want to add a text field that is 100x400
View 4 Replies
May 8, 2011
exactly how do I add boundaries or some kind of listener to my stage? The size is:
x = 900
y = 900
im looking to end my game if the player moves beyond the screen area.
View 1 Replies
Sep 29, 2010
I need to use a Timer for time controlled animation, time the drawing to occur every 500 milliseconds & Draw 20 circles in total. I also need to make sure the circles are completely drawn inside the limits of the stage...
import flash.events.TimerEvent;
import flash.utils.Timer;
// creates a new hundred-second Timer, ticks every 250 milliseconds
var faster_minuteTimer:Timer = new Timer(250, 6);
// designates listeners for the interval and completion events
[Code] .....
View 2 Replies
Jan 14, 2012
Code:
function AddYCoins():void
{
for (var i:int = 0; i < 10; i++)
{
var Ycoin:YCoin = new YCoin();
[Code]...
This function creates 10 instances of my YCoin and places it around the stage. But i wish the coins to only fall in specific areas, (i.e. i have 8 green rectangles, names area1,area2 etc) because the idea is you have to collect the coins but only staying on the green rectangles.
i knows its the stage.stageWidth i need to change but i cant think what to change it too!
View 14 Replies
Dec 15, 2011
I'm trying to create a boundary for a player object, controlled with arrow keys, in my game using the main stage's height and width. For example, one test point is at the top edge of the player object's bounding box so that when the player object's head touches the stage's top edge, the player can't move anymore to the north. The player object is manually instantiated to the center of the stage by using the Flash stage editor so it will start at the center before the program starts.The problem is that right at the start of the program, I can no longer move the player object up or down with the arrow keys but I can still move it left or right. The intention is to allow the player to move north until the player object's head touches the top edge of the main stage.[code]
View 1 Replies
Mar 18, 2009
Im 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.
View 3 Replies
Oct 29, 2009
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; }
View 11 Replies
Mar 2, 2012
I am trying to make a horzontial flash scrolling background and I cant seem to get it to stop at the last frame.
[Code]....
View 15 Replies
Jun 18, 2010
I have selectable html text and when highlight the text from top to bottom it scrolls the text.... how do I prevent flash from that doing that
View 0 Replies
Oct 7, 2011
I have noticed that if a VScrollBar component contains RichEditableTextFields then when I am scrolling the component, and the mouse falls over a text field, then the component stops scrolling because the mouse cursor has changed and the mouse focus is on the text field. (even though I haven't given focus to the field by clicking on it).
This feels pretty buggy and I'm wondering if there is a way around it?
Edit: I should add that this only happens on Mac OSX when using the touchpad.
View 1 Replies
Aug 9, 2009
I have some problem with our flash dynamic scroll movie every thing is okay when our mouse is over on images scrolling not stop but I want stop when our mouse is over this scroll automatic stop and mouse out and start scrolling again.
Code is here
import flash.filters.BlurFilter;
var feed_xml:XML = new XML();
feed_xml.ignoreWhite = true;
feed_xml.load("data.xml");//data.xml path
feed_xml.onLoad = function(success) {
init();//initialization
[Code] .....
View 0 Replies
Jan 18, 2010
I am making an xml driven gallery, with scrolling thumbnails that sit along side of the main image, in a column. These thumbnails scroll depending on the mouses Y position over the column that they sit in. If the mouses position is below the halfway point of the column, the thumbs scroll down, and then if you go above the halfway point the begin to scroll upwards they scroll up until you reach the top image, and it stops...
However, my problem is that when the thumbs have scrolled to the bottom image in the column, unlike when it reaches the top, the scrolling function doesnt stop, it just keeps going until the thumbs have completely scrolled out of shot. What I would like to do is make sure that, the scrolling function stops when it reaches the bottom image; the same as how it stops when it reaches the top...
So if the bottom image rises above the bottom of the column that holds the thumbnails, the thumbs stop scrolling, and will only be able to scroll upwards. Here is the code for the scrolling function that I have:
ActionScript Code:
thumbContainer.addEventListener(Event.ENTER_FRAME, scrollThumbs);
private function scrollThumbs(e:Event):void {
if (thumbContainerMask.hitTestPoint(stage.mouseX, stage.mouseY, false)) {
[Code] .....
View 0 Replies
Aug 7, 2010
I have loaded a swf into a fla. The page I loaded it on has a scroll bar. I need the loaded swf to stay at the top of the page and not move when the page is scrolled. Here is my code so far.
var myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("calendar.swf");
myLoader.load(url);
myLoader.x = 100;
myLoader.y = 100;
View 3 Replies
Aug 30, 2006
im looking for this one for a long time now.. but suddenly one of the sites that i look for this kind of tutorials point me to this link[URL].. this site amazed me so much.. lots of complete tutorials. i created one like the above tutorial, and i try to play with the script.. and works fine to me.. but i want to enhance its feature... just a small modification that i cannot do..
How to stop the scrolling if the mouse is out either left or right? It will stop at the point when mouse is rollOut for both left and right scrolls.. or let say when the scrolling will stop when the mouse is away...
View 1 Replies
Sep 5, 2008
I want to do a image slide show using flash MX. I need a help I Just the image to scroll, But i don't know
1. how to stop the Image scrolling on Mouseover.
2. On clicking on a particular image a new webpage must be displayed.
3. how to made a multiple images to scroll one by one
View 1 Replies
Nov 29, 2008
Stop scrolling when mouse rolls out
View 1 Replies
Jul 22, 2011
I use the "flashembed" feature of the jQuery tools within a site that is using scrollTo as well. The embeded swf file is my banner and right now it is running continiously. When I scroll to another hash it keeps running in the back and makes the scrolling a little bumby.
how to stop the swf file from playing while the scrollTo script is running?
View 1 Replies
Sep 9, 2009
I am trying to stop the browser from scrolling when using the arrow keys within flash. It makes it impossible to play the game if the browser is always scrolling up and down when your using the arrow keys to play the game. Ive searched around but google seems to think I want a scrollbar in flash.
View 5 Replies
Dec 19, 2011
Essentially, I have flash content that scrolls on mouse wheel. It works fine, unless there is other content in the browser such that the browser's scrollbar is enabled - when that is the case, both the browser window AND my SWF scroll on mouse wheel. Is there any way to correct this behavior?
Similar question asked here:
disable mouse wheel scrolling while cursor over flex app?
which references the solution blogged about here:
[URL]
But the solution does not work on all browsers! While it works on some Windows browsers, it doesn't work at all on Mac OS X - it registers mouse wheel events in Firefox, but they are not getting fired at all in Chrome and Safari.
Now I know that (per the official Adobe InteractiveObject docs) mouse wheel is supposedly only supported on Windows systems, but the event is still fired by default on Mac OS X. Is this simultaneous scroll bug the reason it is not supported?
Edit: adding more info on above solution...
Note that the above solution basically uses ExternalInterface to send the following JavaScript to the "eval" function:
var browserScrolling;
function allowBrowserScroll(value) {
browserScrolling = value;
[Code]....
View 2 Replies
Jun 7, 2011
how to make the gallery/pictures stop scrolling 20 or 30px to the right of the webbrowser. I think something has to be added in the end of the code under IMAGES DRAGGING FUNCTION.
This is the page: [URL]
Heres the code for the scroller:
//FUNCTION UPDATE IMAGES SCROLL WHILE PRELOADING
function updateScroll() {
//SCROLL ACTIVE OR NOT
[Code].....
View 2 Replies