ActionScript 3.0 :: Make Button Instance Containing Movieclip Play Specific Frame?

Sep 27, 2011

What I want to do is have one movieclip that has many frames and turn that into a button and then make different instances of the button and have those instances display a certain frame of the underlying movieclip.

View 17 Replies


Similar Posts:


ActionScript 3.0 :: Make Buttons Within A Movieclip Play From A Specific Frame In Scene 1?

Aug 30, 2011

I have a movie clip on the main timeline. This movieclip has buttons that I want to play different frames in scene 1.
 
At the moment, this is the code I'm using in scene 1.
 
[Code]...
 
I'm getting the error below but have no idea what I should be doing.
 
[Code]...

View 3 Replies

ActionScript 2.0 :: Get A Button To Make A Movieclip Go To A Specific Frame?

Jan 13, 2004

What I am trying to do is get a button to make a movieclip go to a specific frame. I have a movieclip that plays a set of frames up to the 100th frame, and then I tell it to go back to and play frame 1 again. However, at about 105, I have another set of frames that I want to play at the push of a button. How would I go about doing this?

View 1 Replies

ActionScript 2.0 :: Make A Button Do Two Things / Play A Movieclip And Goto Frame

Aug 27, 2005

What im trying to do is play a movie clip between frames. So say we have two menus, when you are on menu 1 and you click the button for menu 2, a short movie clip plays and then you stop on menu 2. I realise I can do this by putting the movie clip on the main scene timeline, but is there anyway i can put it on the button? I think the action script would be something along the lines of "On release play MovieClip and goto frame X" As i said i want the movie to play as an almost filmic transition between menus, with a fade up and then out (Have got that bit sussed using the alpha controls)

View 3 Replies

ActionScript 3.0 :: Button Play Specific Frame On Timeline?

Feb 19, 2010

how to play the timeline with a simple button

example:

in AS2 you could attached script to button something like

on MouseEvent {
gotoandplay(6);
}

thats all I am trying to do, but in AS3 how do I simply get a button when clicked to go to a frame and play.

View 3 Replies

ActionScript 3.0 :: Play MovieClip On User Click And Stop At Specific Frame?

Sep 16, 2009

I'm using Flash CS4 with AS3. I'm building a website for a friend the problem I have. When a user clicks on a button I want it to play a movie clip then stop at a specfic frame. I want all the buttons to play the same movieclip but go to a different frame.

The current actionscript I am using is located on frame 1 is:
home_btn.addEventListener(MouseEvent.CLICK, homebuttonClicked);
function homebuttonClicked(event:MouseEvent):void{
gotoAndStop(0)
}about_btn.addEventListener(MouseEvent.CLICK, aboutbuttonClicked);
function aboutbuttonClicked(event:MouseEvent):void {
gotoAndStop("aboutme")
[Code] .....

This allows me to navigate to the right frame but does not play for obvious reasons, if I use the gotoAndPlay function its carries on playing to the end of the movie.

View 2 Replies

ActionScript 2.0 :: How To Make Button To Play Specific Sound

Jun 22, 2004

I have a button that is actually a Movie Clip (so I can animate it). I want this button to play a sound. (But this isn't a sound question.) If I have a list of 20 sounds, and 20 instances of this button mc, how can I make it know which sound is being called for? If it were a normal button, each instance would have its own load- or attach-movie command. But since they're MC's, the invisible button hit is always the same. Is there a way to make it look to the MC's instance name to get which sound to load?

View 14 Replies

ActionScript 2.0 :: How To Make Rotating MovieClip Fade Out / In At Specific Frame

Apr 1, 2009

I've created a movieclip that is supposed to begin the movie with a rotation (it's a globe) and at a specific frame it should beginning to fade out. I've inserted the folowing code to the rotation and for this action it is working perfectly
Code:
onClipEvent (enterFrame) {
i = getProperty(this,_rotation);
setProperty(this,_rotation,i + 0.5);
}
But, when I try to insert any other line for the _alpha, a sintaxe error occurs and the rotation doesnt works.

View 1 Replies

ActionScript 3.0 :: Int - Make A Generic Button To Call An Specific Frame

Sep 16, 2011

I'm trying to make a generic button to call an specific frame but when I'll try it with trace it works perfect... when I make a goto code on it it messes up my entire count....here is the code I'm using...does anyone know whats happening? how can I fix this? here is my code

[Code]...

View 7 Replies

Flex :: Make A Button Go To A Specific Frame On The Main Timeline?

Sep 13, 2010

how to make a button go to a specific frame on the main timeline my button called a play_btn and i want it to go to a specific frame on the main timeline ???

View 2 Replies

Flash :: Professional - Make Text (or A Button) Link To A Specific Frame

Aug 9, 2010

1. The old main logo was not as wide as the new one, so now the entire new one is not clickable (to take you back to the main page). How do I fix this?

2. For the life of me I can't figure out how to make text (or a button if need be) link to a specific flash frame. If you look on the site, there are a couple of spots under "What We Do" that I need clickable to take them to the Contact Us page.

View 5 Replies

Actionscript 3.0 :: Make Button Play Next Frame On Ext Swf?

May 13, 2010

Ive got a portfolio, with buttons that loads things from the portfolio, eg volvo.swf, ikea.swf and ford.swf into the same loader.underneath ive got another ext swf with two buttons, next and back, and i want them to go to next and prev on the eg. volvo.swf if that's the one which is loaded. but it doesn't work!the code below, loads the arrows(next/backbuttons) alright, but i dont know how to get them to gotoAndStop on the next /prev fram on the loaded swf.

Code: Select allvar myLoader:Loader = new Loader();
addChild(myLoader);
var url:URLRequest = new URLRequest("arrow.swf");

[code].....

View 3 Replies

Make A Frame Become Visible And Play / When Click On A Movieclip

Apr 27, 2009

This time I'm experimenting with visibility. All the tutorials online vary a lot. I'm trying to find something noob proof. I have actionscript 2 and 3. I'm not sure which one to use..I'm just trying to learn how to make a frame become visible and Play when I click on a movieclip.

View 5 Replies

ActionScript 3.0 :: Make Play Button Jump To A Certain Frame?

Sep 20, 2010

I have a button that when clicked,i want it to play an animation from frame let say 3.

View 2 Replies

ActionScript 2.0 :: Button To Play MovieClip Animation - Current Frame

Mar 19, 2005

I've got a button that tells a movie clip to play its animation (goto and play frame 2), but I only want it to play that frame if the current frame is frame 1 - meaning that I don't want people to be able to keep clicking the button while the clip is playing and have the clip restart.

I'm guessing it would be something like:
If ( current frame is frame 1 ) { goto and play frame 2 }
But I can't seem to get it to work.

View 1 Replies

ActionScript 3.0 :: Click Button To Play Movieclip And Then Pause On Desired Frame?

Dec 2, 2010

I have a button (bttn1) which when clicked plays a movieclip (bounce), but I would like it to play from frame 1 then stop on a desired frame(say frame 10), so when a second button is clicked (bttn2) it plays from frame 10.

View 7 Replies

Flash :: Play Movie Clip Instance Inside Of Button Instance?

Apr 16, 2011

I placed a movie clip instance inside a button, and I want this movie clip to play when the button is released. I'm using this code on the frame containing the button:

function playMovie(event:MouseEvent)
{
this.theButton.theMC.gotoAndPlay(3);

[code].....

View 2 Replies

ActionScript 1/2 :: Specific Frame On A Specific Movieclip?

Sep 1, 2010

I'm trying to get the following movieclip smallbutton to link to frame 5 on movieclip cont.The way the timeline is built is as so:content_mc > cont > (more mcs) > smallbuttonThis seems to be an issue from every answer I've tried so far since the movieclip "cont" is not being called in the main timeline; first there's content_mc and then comes cont.How would I go about getting the movieclip "smallbutton" to link to the 5th frame of movieclip "cont"?This is for AS 2.0So far I'm at:on (release) {  _root.gotoAndPlay("cont");  _root.smallbutton.gotoAndPlay(5);

View 7 Replies

ActionScript 2.0 :: Make A Specific Thing Happen While Clicking A Specific Button

Jan 17, 2006

What I want is a hint how to make a specific thing happen while clicking a specific button. Like "if I click button 1, do this". Would like to use this script though I'm gonna add buttons over time and this is an easy way to have the functionality working.

Here's the code:

Attach Code

function hitButton(btn) {
btn.onRollOver = function() {
this.colorTo (0xC4006A);

[Code]....

View 4 Replies

ActionScript 3.0 :: Make A Movieclip Display And Play When Click On A Button?

Jul 23, 2009

I'm looking to have a movie clip pop up, play itself after a user clicks on a flash navigation button.
 
(something like this???)  
message_btn.addEventListener(MouseEvent.CLICK, goMessage1);
function goMessage1(evt:MouseEvent):void{    ???(play message movie clip here)???;}

View 3 Replies

ActionScript 1/2 :: Make Flash Play Movieclip For Rollout Effect On Button

Oct 21, 2010

I have a movieclip within the "over" section of my button, which contains both an roll over and a roll out animation. My problem is that I cant seem to get flash to play the rollOut animation.
 
I placed the following code in the button itself

on (rollOut) {  this.start_mc.gotoAndPlay("mouseOut");}
 
I tried setting up a function to find when the user rolls off the button but it didn't work either.

View 1 Replies

How To Play A Sound At Specific Frame

May 13, 2009

I have the loading audio file at frame one. However, I want to play the audio only at specific frame or frame lable. How do I do that? Below are my codes:

[Code]...

The above plays the sound as soon as the .swf file is loaded. But I want to play at certain point in time, say frame number or frame lable.

View 17 Replies

ActionScript 3.0 :: Play The Flv To A Specific Frame?

Feb 24, 2012

I have an .flv I need to drop into an .fla and code Cue Point to do the following:Play the flv to a specific frame ( in the flv) and then stop on the frame the flv stops I need a play button to be visible when this play button is clicked it plays the .flv from the frame it is on to a second place on the flv timeline were it needs to stop.same play button will be clicked and the flv will play to the end.

View 0 Replies

CS3 :: Go Back A Few Frames And Play A MC At A Specific Frame When Hit?

Jul 1, 2009

I'm using Flash CS3 and AC2... I have a button on my main TL and I want to go back a few frames and play a MC at a specific frame when hit.

View 3 Replies

ActionScript 1/2 :: Play Mc In A Specific Time Frame From The Outside?

Jul 5, 2010

is it possible to play mc in a specific time frame from the outside??
 
i'm actually making a card matching game and i'm having problem flipping the 1st card back if the cards don't match... i made 2 animation in 1 mc...the first one is to see the behind of the card...and the other one is to turn it back if wrong...
 
so is there a way that i could play the mc of the first card to frame 30 when clicking the 2nd card and they don't match??

View 4 Replies

ActionScript 3.0 :: Getting An External Swf To Play On A Specific Frame?

Nov 9, 2009

I made a flash website and had one page load an external swf.

In this external .swf are thumbnails that link to another page (frame) all within the external swf. when you go to these pages there is a 'back' link which links back to the main external swf frame.

My problem is this: let's say i click a thumbnail in the external swf and it goes to the respective thumbnail page, and then i dont click the 'back' button but instead click another link of the main flash website - then i go back to the page that loads the external swf and instead of going to the main frame of the external swf it stays at the page i was previously on.

How do I get the link on the main flash website which loads the external .swf to always load on the first frame of the external swf?

This is my code for the page that loads the external .swf

var request:URLRequest = new URLRequest("branding.swf");
var loader:Loader = new Loader();
loader.load(request);
loader.x = 0;

[Code]....

View 4 Replies

ActionScript 2.0 :: Play Until Specific Frame And Stop

Aug 18, 2002

How would I do this using actionscript? I was kind of thinking like this:
onClipEvent(enterframe){
if(thecurrentframe=2){
stop();
}}
But I am not completely sure. hat variable would the current frame part be in??

View 10 Replies

ActionScript 2.0 :: Make Movie Play Frame X To Frame Y Then Switch To Frame Z?

Nov 21, 2007

I have my flash on multiple scenes, and would like to play an animation when clicking on the navigation button before switching to a different scene.

I'm halfway to accomplishing this.

Here is what i used

Code:
_root.gotoAndPlay("changepage1");
_root.onEnterFrame=function(){
if(this._currentframe=="changepage2"){

[Code]....

The above code is on a blank keyframe. Changepage1 is the start of the animation and Changepage2 is the end of the animation.

Upon clicking the navigation button it plays the above scenes.

However it doesn't change scenes to scene "Home2".

View 1 Replies

ActionScript 2.0 :: Make A Button Rotate Or A Movieclip Play OnRollOver Without Stopping Or Changing Background Movie

Dec 4, 2009

How do I make a button rotate or a movieclip play onRollOver without stopping or changing background movie

View 1 Replies

ActionScript 3.0 :: Preload Movie But Can't Play Until A Specific Frame

Jan 14, 2010

I want to preload a movie into my main movie (so I know it's safely loaded fully). BUT I don't want it to start playing until a specific frame in the main movie? Preload movie but can't play until a specific frame

View 5 Replies







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