ActionScript 2.0 :: Resetting The Scrollbar?

Mar 11, 2004

How do you reset the scrollbar in Flash? (I'm using the component, not a cusom scrollbar.)If you go here, scroll ALL the way to the bottom and then click on "Donations" - you'll see the scrollbar stays in place.How do I get it to refresh each time new text is loaded? I've tried refreshPane() and a few other things, but nothing works.

View 7 Replies


Similar Posts:


IDE :: Scrollpane: Resetting Scrollbar Position?

May 18, 2009

In my main .fla I have a scrollpane which opens an external SWF, inside this external SWF I have 5 frames, each with a 'Next' button at the bottom, the problem is when the user clicks the 'Next' button the the scrollpane doesn't change the position of the scrollbar, so essentially the user is looking at the bottom of the next frame. Is there any way to reset the scrollbar position from either the external SWF (linking to the main SWF), or with some code in the main SWF?

View 3 Replies

ActionScript 2.0 :: Convert This Vertical Scrollbar Into A Horizontal Scrollbar?

Apr 26, 2009

how I would convert this vertical scrollbar into a horizontal scrollbar

heres the code:

onClipEvent (load) {
diff_y = bound_box._height-scroller._height;
bounds = bound_box.getBounds(this);
top = bounds.yMin+(scroller._height/2);
bottom = bounds.yMax-(scroller._height/2);

[code]....

View 3 Replies

Variable Changing But Then Resetting

May 25, 2011

I'm very new to Flash, but I have been learning loads and getting some good results so far. Browsing these forums has been a massive help. However today I have hit a problem in what should be almost the simplest line of code I know how to write (variable = x), and could do with some advice. I have a simple program containing a button which will change a variable when pressed. There is also a text-box that will output that variable. However when I press the button, the variable will change, but then immediately revert to it's previous value.

[Code]...

View 3 Replies

ActionScript 3.0 :: Variable Resetting Itself?

Jan 1, 2011

I made a simple class that's keeping a history of strings, updating it with a push() method (like an array) and with a possibility to navigate with next() and previous().Therefore my class has an array and a integer indication the current position in the array. (See full code below)Now something very strange is going on. When coming into the push() method the position variable has some value, which I can change, but everytime I try to read that variable, it gives me a 0. I've never had this kind of problem before and I simply cant find out what's wrong.The push() method

ActionScript Code:
public function push(entry:String):void [code]......

View 3 Replies

Actionscript 3.0 :: My Score Keeps Resetting

Jan 14, 2010

I have a character on the stage in my fla that when hitting a particle created in an a particle.as removes the particle. I have the code for removing the particle and also a score counter that adds one everytime a particle is removed (located in my particle.as). My problem is the score keeps resetting or I get sporadic results (not sure which) for example here I traced the results[code]...

View 1 Replies

ActionScript 2.0 :: Resetting Comboboxes?

Jul 16, 2003

How do you reset combo-boxes?I have this form with combo-boxes and input textfields, and I want a button that can reset the form.The input textboxes are easy:TextBox1.text = "";

View 5 Replies

ActionScript 3.0 :: Combo Boxes Resetting?

Jan 26, 2009

I have created a menu for an online café. The displayarea is limited, so the menu items need to scroll within a frame ofsome sort.

View 4 Replies

ActionScript 1/2 :: Resetting Operations In Particular Frame

Nov 6, 2009

I've created a application where the viewer could change colours, add text, add logos, rotare them, etc... How do I create a reset button which resets everything to back normal in a specific FRAME? What functions do I have to use?
E.g.
Frame 5 is used to Add colours and text, etc...
Frame 10 is used to Add logos,scale them, rotate them, etc...
I need a reset button in Frame 5 to make only the things which were changed back to normal.

View 1 Replies

ActionScript 1/2 :: Tween Class Not Resetting Y Value

Jan 11, 2011

I am trying to move a movieclip down using Actionscript. Then when a user fires a back event [which is successfully firing] the movieclip is then required to go up again. The code is:

trace("fholder _y org: " + folioholdermc._y);
// THIS COMES OUT TO BE -601
var yDown1:Tween = new Tween(folioholdermc, "_y", Bounce.easeOut, -601, -449, 3, true);
trace("step 1 called");
trace("fholder _y down1: " + folioholdermc._y);
[Code] ......

View 3 Replies

Actionscript 3 :: Resetting Objects In Flash CS5?

Mar 16, 2011

I'm making a simple platform game in Flash CS5 and Actionscript 3.0. When the player loses all their lives, I want it to redirect the player to a "Game over" screen where they can select a "Try again" button to restart the game.

Set everything (player, background, etc) to visible = false
Set "Game over" movie clip to visible = true (it is invisible during gameplay)

Have the button in the "Game over" movie clip hide the movie clip then re-show all the gameplay elements.Reset position of player to start, set score to 0, lives to 3, etc..It's probably not a very good way of doing this but if it works, then I'm happy. I just want the "Game over" screen to show briefly and if the player clicks the "try again" button, they can play from the start.

Now, the problem with my implementation of the above is that when I set all the gameplay elements to visible = true after having them set to false, the game has stopped.. keyboard input doesn't reactivate and the game elements are shown but aren't active. Is there something about the visible attribute I don't know? Does it mess with the "state" of an object? Here's some snippets of code from the Actionscript file...

if(lives >= 0) {
//print number of lives
}[code]..........

View 2 Replies

ActionScript 2.0 :: Resetting X And Y On Draggable Movieclips

Feb 3, 2009

I've got 6 draggable movie clips that snap to a target - which works fine. If they don't hit the target area they snap back to their starting point- which also works fine.

My problem is that they can all be dragged to the target one after another, but I only want one movieclip to be at the target at any one time.

So,when I start dragging a new clip toward the target I want the movieclip thats already on the target to reset itself to it's starting position, thus being replaced by the incoming clip.

I want this to happen for all the draggable clips.

function dragSetup(clip, targ) {
clip.onPress = function() {
startDrag(this);
this.beingDragged=true;

[Code].....

View 3 Replies

ActionScript 2.0 :: Stop Animation From Resetting?

May 22, 2010

I'm making a flash game. when i open the dresser drawer, then leave, then come back the drawer is closed.

how can i make it so when i come back the drawer is still open?

View 1 Replies

ActionScript 3.0 :: Resetting A Class Instance?

Dec 29, 2010

im creating this game. I have a main class, which I use to call the menu class and the actual game(board) class.

I got the game working, but now when I try to reset the instance of the board, it doesnt actually execute the constructor again. So I get a fresh board, but the variables aren't reset.

ActionScript Code:
public function Resetboard(event:Passboolean){
board = null;
board = new Board();
application.addChild(board);
}

View 9 Replies

ActionScript 2.0 :: Resetting Multiple MovieClips?

Jan 24, 2011

I've created this simple birthday game where the concept is to blowout 30 candles in 15 seconds.The candles are movieclips so that when they are clicked on, they blowout. However,when the option to "try again" begins, the candles are still out.

View 9 Replies

ActionScript 2.0 :: Sound.position Not Resetting

Oct 25, 2005

Just to start off, this isn't exactly an inquiry to a problem. It is moreso of a posting of a bug (or assumed bug) in the Flash player and how to get around it. Though if anyone else has a better method then share. Ok, well I very rarely ever work with the Sound() object in Flash, and I found myself working with it today. I was having a problem and I could not pinpoint it for the life of me.... my code appeared correct in every aspect.

After tracing many sections of my code to find out where it was going wrong I realized... that for some reason when you use Sound.stop(), the Sound.position doesn't get reset... it instead just increments from where it left off. This is quite annoying. And being that Sound.position is a read only property you can't reset it yourself. The only solution I have found for this is to delete or overwrite your Sound() object with a new Sound() object. Anyone know if this is indeed a bug, or if there was some reason Macromedia did it like this?

View 9 Replies

ActionScript 2.0 :: Resetting Movieclip States?

Jan 16, 2006

I know there are similar questions here that have been answered, but after trying to make sense of it, I still can't get this to work.Based on an array, I attach a number of MovieClips from the Library.On release they go to a certain frame, representing the "pressed" state of the button.The problem is, that I can't figure out how to reset the last pressed button back to it's original state...Here is the Actionscript code I have so far:

ActionScript Code:
stop();
daCap.play();
scrollUp._visible = false;[code]......

View 5 Replies

ActionScript 2.0 :: Resetting Movieclips Position?

Sep 7, 2006

I have a setup where a girl is holding a card on there are words on each card and as time goes by they fall to the ground. The problem I am running into is that the cards never go back into the loop of cards, once they are out I am just left with a blank card. How could I have it reset this?

Code:
//CLASS IMPORTS
import mx.utils.Delegate;

[code].....

View 1 Replies

ActionScript 3.0 :: For Loop Counter Not Resetting

Jun 16, 2009

so I have a class method that contains a for loop ... however, each time I call the class method, the for loop counter continues to count from where it left off! Agh - the loop counter get's reset?

[Code]...

View 10 Replies

ActionScript 3.0 :: How To Stop A Variable From Resetting

Dec 9, 2009

I've got a list in a flash app that when an item is clicked it should add a number to a dynamic text field, my problem is that the variable I declare to store the number in either always resets to 0/ doesn't add the numbers or returns NaN.

The variable in question is

Code:
var totalNum:Number;

What I want it to do is add the numbers when a list item is selected, e.g. totalNum starts at 0, if item 1 is selected totalNum should now be 1, if item2 is then selected totalNum should be (1+2 = 3), instead the label just displays 1, then 2.

I've tried declaring the variable outside of the event, but that resulted in the label showing NaN, unfortunately (as far as my understanding goes) declaring it inside makes it a local variable which resets each time the event is called and I'm not sure how to get around this (I can't seem to get the syntax for global variables right)

An example of my code is:

Code:
list1.addEventListener(Event.CHANGE, ItemChange);
function ItemChange(event:Event) {
var Item = event.target.selectedItem.data;

[Code]....

View 2 Replies

ActionScript 3.0 :: Resetting A Countdown Timer To A New Value?

Jan 12, 2010

I made a ten minute timer that starts at 600 and counts down to zero. It displays the current count in a textfield called "textfield_time". Here's what it looks like:

Code:

var timer:Timer = new Timer(1000, 600);
timer.addEventListener(TimerEvent.TIMER, countdown);
timer.addEventListener(TimerEvent.TIMER_COMPLETE, termin);

[Code]...

I have a time pickup that floats across the screen now and then. When your avatar makes contact with it, you get extra time - say 15 seconds. I already have working code that detects the collision of the avatar and the pickup, but I can't figure out how to add functionality to reset the timer to give an additional 15 seconds. I tried:

Code:
timer+=15;

which doesn't work. But you already knew that (hey, I'm new at this!). Maybe some way to get the currentCount value, increment it by 15 seconds, then update the timer value with it?

View 8 Replies

ActionScript 3.0 :: Highlight/Resetting MC Button?

Jan 20, 2010

What I'm trying to do is highlight a movieclip button when it is clicked, and then remove that highlight when another movieclip button in the same menu is clicked.I think the problem is arising from the fact that the buttons temporarily highlight when rolled over. I have used the 'ROLL_OVER', and 'ROLL_OUT' event listeners to initiate the animation, so any attempt to keep the current button highlighted is quashed when the mouse is moved off the button.here is some of the code i have used

[AS]overview_btn.addEventListener(MouseEvent.ROLL_OVER , highlightMenu);
photography_btn.addEventListener(MouseEvent.ROLL_O VER, highlightMenu);
overview_btn.addEventListener(MouseEvent.ROLL_OUT, UNhighlightMenu);

[code].....

View 1 Replies

ActionScript 2.0 :: Flash8 Resetting MC's To Original Place?

May 16, 2009

Right now I am in the beginning stages and I have it set up so you can drag different sounds to the timeline (in the game, not in flash) and it'll snap in place which works perfectly.

But here's my problem: When I try to click the reset button the sounds snap to their original places (which sounds good right?) but then they tween back to where you dragged them on the in-game timeline.

I have put in various codes and no matter what I try, when I click the reset button, they always go back to where you dragged them to the timeline, making the reset button pointless.

Here's my code on the Flash timeline:

Code:
function dragSetup(clip, targArray) {
clip.onPress = function() {
startDrag(this);

[Code].....

I know, I know, that whole s(N) thing is very beginner but I didn't know what else to use, and it worked fine.

View 1 Replies

ActionScript 3.0 :: Resetting A Drag And Drop Game?

Jul 14, 2009

I'm having trouble reseting a drag & drop game. It is a movie clip with two pages: start_pg and game_pg. On start_pg is a start button (start_btn) that goes to game_pg. On game_pg is button (end_btn) that goes back to start_pg. Both buttons share the same layer, so I made each invisible when not of its page. The game works fine, but when the end_btn is clicked, all movie clips that have been dropped, stay there.How can I go back to start_pg and reset all movie clips to their original starting point?
 
// start game pagestop();
end_btn.visible=false;start_btn.visible=true;
start_btn.addEventListener(MouseEvent.CLICK, goGame);
function goGame (Event:MouseEvent): void{ gotoAndStop("game_pg");}

[code]....

View 12 Replies

ActionScript 1/2 :: Radio Buttons Not Working After Resetting

Mar 22, 2010

I have a form with two radio buttons for each question.  Each question is in its own frame "Q1," "Q2," etc.  I also have a btn_Reset created to reset the form, i.e. reset all radio buttons and return to "Q1" frame.  All buttons work as they should, including resetting the radio buttons, however, once I reset the radio buttons and return to "Q1" to start over, the actions associated with each radio button upon clicking on them do not work.  Here's my code:
 
//Frame "Begin"
gotoAndStop("Q1")  //I also define my variables in frame "Begin"
//Frame "Q1"
rbtn_YESQ1.onPress = function():Void

[Code].....
 
//Once I return to "Begin" frame, my variables are reset to their initial value since that's where I originally defined them, and I go to "Q1" because that's what the code in frame "Begin" says.  Here is where I click on rbtn_YESQ1 again and even though the button does fill in, it does not attach btn_Reset to the stage as defined by rbtn_YESQ1.onRelease function.

View 13 Replies

ActionScript 1/2 :: Resetting Multiple Movie Clips?

Jan 24, 2011

I've created this simple birthday game where the concept is to blowout 30 candles in 15 seconds. The candles are movieclips so that when they are clicked on, they blowout. However, when the option to "try again" begins, the candles are still out.

So, how do you reset multiple movieclips?

View 3 Replies

ActionScript 3.0 :: Completely Resetting A Flash Game?

Feb 7, 2011

I've programmed an entire game from scratch, without using class files, and there's no menu yet, and I'm not sure how to reset the game without using class files or resetting every single thing manually.
 
I'm making a Flash tower defense game with a friend; I'm doing all the code. I'd never used Flash or Actionscript before, so I started off directly programming the gameplay, to figure out if I'd be able to do it. I've done everything from scratch so I didn't know where to start or the "right way" of doing anything, so I figured out as I went along, which went much better than I expected.
 
So now I've got the gameplay almost completely programmed, the art assets are essentially finished and game looks great and runs (reasonably) well (and the occasional performance problems are due to graphics rather than code), etc. I didn't know how to use class files in AS3 when I started making the game, and when I read up on them and realized you can't import the class files into the project and must open and edit them separately, I was livid and decided not to use them; I was happy with how the coding was going anyway.
 
So now we've got a game where as soon as you run it, it goes straight to the field and the game starts; we haven't implemented a menu yet. We've reached the point of playtesting and it's becoming a huge nuisance having to quit the SWF and reopen or recompile it every time we want to restart the game, so it's time to program a "Reset" button. I thought this would be as simple as making the stage go to a different frame and back to the first frame, but that doesn't work, so now I'm utterly stuck. It looks like the easiest way to reset a game is to load the entire "game" as an object (or something to that effect, I forget exactly what I've read), then you can unload and reload the game object to reset it? It also looked like it would require class files which I'm hoping to avoid.
 
I don't think it's feasible to manually remove everything from the stage, reset all the variables, and delete all event listeners and references so everything is reset/garbage collected properly.
 
Thinking about it more, I'm also not sure how I'm going to get a menu to load before the game in its current state. Maybe I can move all of the gameplay to the second frame and make the menu on the first frame?So, is it possible to reset the game without involving class files?

View 10 Replies

Javascript :: Jquery Hide A Div That Contains Flash Without Resetting It

Dec 1, 2009

I have written a modal using jquery UI and it appears at the front of a flash movie thus the html inside the modal becomes corrupt, I tried to hide the movie right before modal gets triggered and reappears after closing the modal, works well but each .hide() and .show() the flash movie gets resetted while all I want is to hide (without removing the movie) and displaying it once it is triggered to .show that modal div.

View 3 Replies

Flash - Resetting Player After Video Has Played

Mar 30, 2011

I wasn't able to add all the code before. Essentially after a movie plays I want the swf to reset to it's first original loading frame.

function stopVideo() {
showPlayBtn(true);
Tweener.addTween(videocontrols.stopBtn, {
_alpha: 100, time: 4.000000E-001, transition: "easeOutCubic"});
myStream.stop();
[Code] .....

View 1 Replies

Actionscript 3 :: Resetting A Media File In Flash CS5?

Mar 9, 2012

I've got two Actionscript files linked with one .fla file. The file Document.as is suppose to support the keyboard controls and the mouse controls, whilst the Reset.as is suppose to control the reset of the card (this is an interactive birthday card). I've added this on the 'Reset.as' file, however, when the "reset" button is pressed, nothing happens! None of the images move away, or anything! Am I doing something wrong here? All the files have been given instance names! Here is the 'Reset.as' code;

package src
{
import flash.events.*;

[code].....

View 1 Replies







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