ActionScript 2.0 :: Change The Frame Depending On Which Button Was Pressed?

May 1, 2003

The first prob I had was when i used the load movie command the swf file was loading in the wrong position, it kept loading down and across the page. I had

PHP Code:

_root.myemp.loadMovie("banner.swf", 0); 

I dont know why this is happening but I just fixed this by doing:

_root.myemp._x = 0
_root.myemp._y = 0

The next problem Im having is that I want to change the frame depending on which button was pressed. If button two was pressed I wanted to load "banner.swf" and gotoAndStop("pg2"), If button three is pressed gotoAndStop("pg3")Ive tried some things but cant get this part right such as:

_root.myemp.gotoAndStop("pg2")
"banner.swf".gotoAndPlay

I just dont know the syntax...

View 2 Replies


Similar Posts:


ActionScript 3.0 :: MovieClip Change Animation Depending On Key Pressed

Jul 26, 2009

I have started to make an interactive movie where pushing keys moves a movie clip around the stage! And I can obviously make the movie clip do what I want, so here is the question: I want to make the movie clip change its animation depending on which keys are being pushed i.e. Left key the movie clips moves left, and my stick man changes to a running animation. Push nothing and it changes back to his standing still animation.

View 2 Replies

ActionScript 3.0 :: Play A Certain Part Of MovieClips Timeline Depending On The Button Pressed

Nov 22, 2010

Right I only want to play a certain part of my MovieClips Timeline depending on the button pressed.

ActionScript Code:
stop();
CircleLineMC.KingsCross.addEventListener(MouseEvent.MOUSE_DOWN, KingsCrossBtn);
function KingsCrossBtn(event:MouseEvent):void {
BigSquare_MC.gotoAndPlay(1);
}

But I want it to play only up to frame 50 and then stop there and then loop instead of playing the whole timeline, does anyone know How to do that.

View 6 Replies

ActionScript 2.0 :: Change Key Frame Depending On Dates

Nov 29, 2011

Quite simply I need a piece of code which jumps to a certain frame based on the actual dates below.

1-4rd Dec - gotoAndStop(1);
5th Dec - gotoAndStop(2);
6-7th Dec - gotoAndStop(3);
8th Dec - gotoAndStop(4);

I have found bits of code which allows you to specify which days, but not dates. My actionscript is very beginner so I can't work out what to do.

View 2 Replies

ActionScript 2.0 :: Replace The Xml File With Another Xml File Depending On Button Pressed?

May 1, 2008

I'm doing my final year uni project (1 week left) and having trouble with some actionscripting and xml.Basically I have all the usual AS coding sorted out for my XML data and it's working fine but what I want to do is replace the xml file with another xml file depending on what button (I have 25 different files/buttons to do) is pressed.

So button 1 will put in: xmlFile.load("button1.xml")Button 2 will replace the above scripting with: xmlFile.load("button2.xml")

Is this possible? I don't want to create 25 instances/frames of the full xml text as the xml datat is displayed on an animation and it would significantly increase the file size.

View 2 Replies

ActionScript 2.0 :: Change Frame Of Movieclip Depending On Relation To Mouse?

Oct 28, 2010

This is a CS4 file so and I have CS5 so if you give me either it will be awesome

I have a movie clip that follows the mouse..

Its not done yet but its gonna be a dog chasing a/the mouse...

I want to have it where the if the mouse is left or right of the following movie clip it shows it walking toward the mouse... so something like

if mouse positions is less the the cursor + 10 (pixels) goto and play frame with dog walking left and one for right up down (I want this to walk till its directly under or over mouse and then laydown or jump only when over or under mouse..

(say its a 20 pixel wide object and 10 on each side will cover the whole thing and not just the exact center pixel, thats what the 10 + movie clip position is for, but Is there a way to tell it to goto and play whatever_frame when mouse is left of any graphic on the sitting dog section??? like the equivalent of onRollLeft or whatever.)

this is the code i have.. its the top statement that doesn't work the bottom 2 do..

Code:

if (_xmouse < detail.x+10) {detail.gotoAndPlay(61);
}
detail.onRollOver = function() {
detail.gotoAndPlay(31);

[Code].....

I already created the shapes and placed them in the appropriate frames.. you should only need to mess with the actions on the instance "detail" (the dog face in frame 1 of scene 1 in layer "follower" ---- just the actionscript needed for that instance is needed in the reply.. you should not need to chage any of the layers, but if you do just tell me what you did and why.

my fla is to big to upload to this form so im placing it on my website here

View 2 Replies

ActionScript 1/2 :: Change Frame Of Movieclip Depending On Relation To Mouse?

Oct 28, 2010

Its not done yet but its gonna be a dog chasing a/the mouse. I want to have it where the if the mouse is left or right of the following movie clip it shows it walking toward the mouse... so something like
 
if mouse positions is less the the cursor + 10 (pixels) goto and play frame with dog walking left
 
and one for rightup down(I want this to walk till its directly under or over mouse and then laydown or jump only when over or under mouse.. (say its a 20 pixel wide object and 10 on each side will cover the whole thing and not just the exact center pixel, thats what the 10 + movie clip position is for, but Is there a way to tell it to goto and play whatever_frame when mouse is left of any graphic on the sitting dog section???like the equivalent of onRollLeft or whatever.)

[Code]...

View 3 Replies

IDE :: When Button Is Pressed It Goes To Specific Frame?

Dec 10, 2009

So I have 13 buttons and each of these load the same movieclip. Now how do I make an if statement so that depending on what button is pressed it goes to a specific frame in this loaded movieclip?

View 1 Replies

Actionscript 3 :: Flash Cs4: Change The Look Of A Button After It's Been Pressed

Mar 22, 2010

I'm trying to create a top panel menu that contains 5 buttons.

I configured Up and Over state for each button.

how can I configure that one the button is clicked, the look of the button will change to the look i configured in Over state.

Each state contains a different image.

Is there a way to change the look of the button to the look it configured in it's different states using Action Script?

Using Flash CS4 Action Script 3.

View 3 Replies

IDE :: Forward One Frame Each Time Button Pressed?

Apr 4, 2009

This is probably a very simple actionscript question I am using CS3 on an AS2 movie. I want to make a simple audio level bar and I created a movie clip with ten frames and ten squares that appear in a line. On each frame you can see one more square i.e. from 1 to 10.What I want is to have a + button on the main time line and every time it is pressed it advances on the frame of a movie clip called loader_mc to the next frame. Similarly if I press minus button the movie clip goes back a frame.This is the actionscript i tried but it only works once. It doesn't keep moving on each frame.

Code:
on (press) {
_root.loader_mc.gotoAndPlay(_currentframe+1);

[code].....

View 2 Replies

ActionScript 2.0 :: If Statement - Change A Variable When A Button Is Pressed

Jan 29, 2009

I want to change a variable when a button is pressed. lingo: if this button is pressed then check varexample what number it has if it has a number then gotoAndPlay("example") and add 1 to varexample else, do nothing I'm sure if I get this kind of example down, I'll be able to figure the rest out by myself. =S

View 5 Replies

Set Up A Movie Clip Containing A Button That Jumps To Frame Two When Pressed?

Apr 16, 2011

I have a dial that can be rotated and scrolls between 40 and 210. At the moment, this works all the time. Is there a way of getting this to work only when a button remains depressed?

I've set up a movie clip containing a button that jumps to frame two when pressed, and back to frame one when pressed again. SO the dial needs to work when the movie clip (containing the button) is stopped on frame two, but not on frame 1.

View 7 Replies

ActionScript 2.0 :: Code For A Button To Change Color After Its Been Pressed And Stay That Way?

Jun 1, 2006

I have a rollout effect on the button. But its not doing what i want it to do [code] URL...Its starts off like i want it to. But if you play around with it for a while i stops working. When you rollover the button, its supposed to change color right away. And when you rollout its supposed to fade back to its orignal color.Whats the code for a button to change color after its been pressed and stay that way? f.eks. Blue at first then press it it turns purple.

View 4 Replies

ActionScript 2.0 :: Rotate To Certain Destinations Depending On Buttons Pressed In The Navigation?

Mar 25, 2007

I have a circle movieclip that needs to rotate to certain destinations depending on buttons pressed in the navigation. Everything works fine, except when you go from green to cyan and vice versa, it does a full 360 rotation instead of just moving to the destination.

View 13 Replies

ActionScript 2.0 :: Make A Box That Fades In When Pressed On The Button And Fade Out When Pressed For The Second Time?

Nov 16, 2004

I have a function on root:

_root.fadeBox_mc.onEnterFrame = function (){
if (fade){
this.nextFrame();[code]....

This causes a mc to fade in and out on rollover/rollout. But what I wanna make is a box that fades in when pressed on the button and fade out when pressed for the second time. But if I say

on (press){
_root.fade = true;
}

the mc fades in, but I cant do another on (press) to fade out. Is this too confusing?

View 2 Replies

ActionScript 2.0 :: If Statement - Goto A Random Frame Which Will Play A Movie When The Button "one" Or The Button "two" Is Pressed

Jul 20, 2006

its a gambling game of chance and I want it to go to a random frame which will play a movie when the button "one" or the button "two" is pressed. so on each button, I have the code:

[Code]....

View 7 Replies

Professional :: Why Isn't The Button Making The Screen Change From Frame To Frame

Jun 15, 2010

I've been following the book "Beggining Flash Programing for Dummies" and I have come up to a part where I create a very simple game.
The script involved in the frames are FRAME here:
 
stop();
btnGoThere.onRelease = function(){   _root.gotoAndStop("there");
} //end event handler
 
Frame there
 
btnGoHere.onRelease = function(){    _root.gotoAndStop("here");} // end release
 
When I test the movie and click the button, the frames don't seem to change.

View 12 Replies

ActionScript 3.0 :: Flash Change Hue - Pressed Bottom A The Mc Will Change Hue +=10?

Mar 26, 2011

how can i change the mc hue with as3 .just a simple example is fine just like pressed bottom A the mc will change Hue +=10

View 7 Replies

IDE :: Next - Previous Button - Set To Change At Every Frame

Nov 9, 2009

Currently I have a single movie clip and next/ previous buttons attached to this movie clip. The image changes every 9 frames. Currently I have the code set to change at every frame. How do I get it so it changes at every 9 frames????

[Code]...

View 8 Replies

ActionScript 3.0 :: Change Button / Movie Frame?

Apr 15, 2011

How do you change a Simplebutton or movieclip frame from as3 in the main actionscript?

gotoAndStop does not work with an instance--I get a compiler error when trying something like star1.gotoAndStop(1) where star1 is my instance of a button or movieclip.[code]...

View 1 Replies

ActionScript 2.0 :: Change Sky Depending On Time?

Aug 24, 2006

changing a colour of something depending on the time on the system of the user?

View 14 Replies

ActionScript 3.0 :: Click Button In One Frame To Change Text In Another

Sep 1, 2008

I have two frames( frame1 and frame2). In frame1 I have a button and in frame2 have a textfield. I want with click button(in frame1) to change the text of textfield (in frame2).

View 3 Replies

ActionScript 3.0 :: Change A Textfiled Depending On A Variable?

May 11, 2011

I have several textfileds in a movie clip and I want to change text in a textfiled depending on which textfield you have clicked on. So if I have clicked on at textfiled named "text1" i want:

[Code]...

And then will text1 have the same text as "inputfield", but this dosen't seems to work only if you had a textfield called "textvariable" but that is not what I want. So any ideas how you can make this function?

View 6 Replies

ActionScript 2.0 :: Get Text To Change Depending On The Playhead In Another MC?

Mar 7, 2007

Im trying to get my text to change depending on the playhead in another MC. This is my code... someone have a peak at what may be wrong

Code:
btn.onPress = function() {
ball.gotoAndPlay("start");
if (_root.ball._currentframe>2) {

[code]...

View 2 Replies

ActionScript 1/2 :: Using A Button To Change The Color Of A Graphic While Staying In The Same Frame

Feb 8, 2010

I am trying to simulate adjusting an LCD screen's contrast using two buttons.
 
The LCD is one graphic on ONE key frame that runs the entire length of the timeline.
 
Not sure how to start with the action scripting for this... i would like to use hex values if possible, but had no luck so far with my AS2.
 
The hard part is that i have a text box on top of the LCD on many different keyframes and the color / brightness of the this will have to change accordingly with the LCD screen.

View 32 Replies

ActionScript 2.0 :: Changing The Function Of A Button Depending On Previous Button Press?

Mar 14, 2007

I'm loading in 5 jpegs from an external file using "loadMovie" and i have 5 corresponding buttons (1-5) to load them with.

I want to change the jpeg the button loads in depending whether a separate navigation button has been pressed -

i.e.

navigation buttons:

-motorbike pics
-car pics
-lorry pics

If a user clicked on "car pics" then the loading buttons 1 to 5 would load "car1.jpg", "car2.jpg" and so on...

similarly if the user clicked on "lorry pics", the same loading buttons 1 to 5 would load "lorry1.jpg" and "lorry2.jpg"

View 1 Replies

ActionScript 2.0 :: Different Frame Numbers Depending On The Variable?

Mar 25, 2009

I am having problems with this if else statement. I have a variable (frame number 30) passing into my swf from another swf. This I know is working correctly.

But - I need to be able to direct to different frame numbers depending on the variable, this is working.

But when I place this code:

[Code]...

View 2 Replies

ActionScript 2.0 :: GotoAndPlay(frame); Depending On A Variable From Php?

Apr 28, 2004

I have set the variable in my page using <param name="flashvars" value="menustate=<?php $pagename; ?>"> which works perfectly fine when I use a dynamic textbox in flash with the var name menustate.

But I need to send a MC to frame 2 if 'menustate = 2'. Anyhow, I just want to know how to control a MC with an external var. I can't use loadVars () because this var is coming from any page, not just one.

View 5 Replies

Professional :: Navigate To One Frame Or Another Depending On Whether There Is A Correct Or Incorrect

Jul 13, 2010

how to navigate to one frame or another depending on whether there is a correct or incorrect answer for the learning interaction. I am using the CS3 drag and drop.

View 2 Replies

ActionScript 3.0 :: Different Outcome Depending On Which Frame The Mouse Is Clicked?

Mar 1, 2011

I am currently developing a game in a school project using Flash CS4 and Actionscript 3.0.  I have searched the web for assistance, but have come up empty.  Here is what I am wanting to do...
 
I have a 3 by 3 grid on screen.  Each block in the grid contains a movie clip with four targets which cycle through at 24 fps.  Each target with have a different outcome depending on which frame the mouse is clicked.I do not want the animation to stop after the frame is clicked, however.  There are several different types of targets in the game.  Some add points, some subtract points, one target has the avility to freeze the animations for a set period, and another one is basically an instant game over.  Being as how I could not find any aid via the web prior to this post, I am not even positive that this is possible to code in AS3.0.Does anyone know if this is possible, and if so, how would I go about coding it?

View 2 Replies







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