ActionScript 3.0 :: Run Movie With More Controlling?

Dec 5, 2010

i want to run movie with more controlling If I have a time line displaying some motions Every motion have a number

Is it possible that the user of swf flash select the number of motions he want to run by input the beginning motion number and the end motion number ?

And can he choose a number to repeat that motion he have chosen ?

it is working very well as it is but when i manipulate it and the time line enlarged .. it doesn't work

View 2 Replies


Similar Posts:


ActionScript 2.0 :: [Flash MX] Loaded Movie Controlling The Source Movie?

Apr 28, 2003

say i have a main movie, into this movie is loaded another movie on level_1.

is there any actionscript that allows a button inside the loaded movie control the main movie? i.o.w. can a button inside the loaded movie tell the main movie to go to another scene?

+ i am looking for code for that same button to unload the movie it is in itself..

View 10 Replies

ActionScript 2.0 :: Controlling Main Movie From Movie Clip

Jun 16, 2005

I have instances in my movie layed out as such

_root contains
[sliderX] which contains
[holder]

Where X is a number from 1-500 inside [holder] is a button that when pressed should load an image into new browser (does this fine) then move the main movie to it's next scene. this is when it fails. I have tried

[Code]...

View 1 Replies

ActionScript 3.0 :: Controlling A Movie Within A Movie?

May 7, 2011

Here's my problem. I have a movie on a stage (MyMovie) that I can control with start and stop buttons. Let's call it MyMovie. Inside that movie there are 4 layers. Layer one has movie1 which contains a movie created with a movie clip symbol that has been tweened over 60 frames. Layer 2 has a movie clip which has the movement generated by action script using a simple aray. That movie has start and stop buttons controlling the action script movie. Layer 3 has a movie clip (movie3) that is generated using the built feature copy motion as actionscript 3.
 
I know it's kind of confusing so here's a screenshot of the MyMovie timeline:

Here is the Scene timeline:

The problem I'm running into seems like it should have a simple solution. The first line in the Actionscript for Scene 1 is stop(). I expect MyMovie not to play. The blue outline around the yellow circle is actually a blue circle below the yellow circle. It is the only component of MyMovie that derives it's animation from a tween. It is also the only part of the animation that is stopped. The yellow circle, motion by a tweening a simple array will play with the stop and go buttons and the orange circle animates all the time. Pressing the big go button causes the blue circle to animate, pressing the stop button causes the blue circle to stop, but all the other animations inside MyMovie keep running. I have no control over the embedded movies.
 
I seems to me that it should be easy to start and stop all elements embedded inside MyMovie by simply stopping MyMovie. There's obviously something that I'm missing here.

View 3 Replies

ActionScript 2.0 :: FMX: Controlling Another Movie?

Feb 21, 2003

I'm having a 2 flash movies in my web page (let's say index.html , movie01.swf and movie02.swf). Is there a way, when something happens on movie01 (like a click) that movie02 does something as well like plays a MC? My HTML page has 3 frames, 1 top, 1 left, 1 main. Movie01 on top and Movie02 just a small area in left frame.

View 8 Replies

ActionScript 3.0 :: Controlling Object In Another Movie

Mar 6, 2009

I'm pretty sure this is possible, but I can't get it to work. I have a main movie and in one frame I am loading in another swf. The user goes through the activity in the loaded swf and then needs to continue on in the main movie. I've added code in the last scene of the loaded swf that I thought would allow it to navigate to the next frame in the main movie:

PHP Code:
function next4(evt:MouseEvent):void {
this.parent.parent.gotoAndStop(4);
} continue2_btn.addEventListener(MouseEvent.CLICK, next4);

But when I play the main movie, I get the error:
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at ELC_fla::MainTimeline/frame3()
I have tried to communicate to the continue button in the loaded swf from the main movie, but that didn't work either.

View 7 Replies

ActionScript 2.0 :: CS3 Controlling All Movie Clips

May 19, 2009

Im working on a quiz kind of game in which if you click an object, you get a question (the object is a movie clip and the question is within it). If you answer it, the movie clip stops at a particular frame. And so go all the objects in the game. Now, because you cant predict which object the user will click on last, I dont know how to bring in an ending screen saying that they've completed it successfully.

View 1 Replies

ActionScript 3.0 :: Controlling A Movie Clip With Another?

Mar 22, 2010

Problem:I have my main Scene 1.In that scene I have 2 layers.Layer 1 has a movie clip named ca.Layer 2 has a movie clip named tutorial.When a button is clicked in movie clip ca I want it to tell movie clip tutorial to gotoAndPlay("31")

I was using the code:
btn_ca.addEventListener(MouseEvent.CLICK,click01);
function click01(e:MouseEvent):void {

[code].....

View 4 Replies

Controlling A Movie Clip In An External Swf?

Nov 4, 2010

I'm working from main.swf and I need to call another swf to display one of four flvs once the appropriate button is clicked.

main.swf = my main content
player.swf = contains mc_playMovie
mc_playMovie = embedded in player.swf and contains four frames, each with a different flv movie.

My code so far:

butDelmar_thumb.onRelease = function() {
createEmptyMovieClip("targetMC", this.getNextHighestDepth())
targetMC._x = 0
targetMC._y = 0

[Code].....

View 1 Replies

Controlling A List Of Movie Clips?

May 24, 2011

im trying to get a button to move a list of movie clips up and down how would u go about this

e.g

i have a button at the top of the stage and a button at the bottom and when the top one is clicked it moves up one movie clip till last one is hit. and if the bottom one is hit it moves down one until it hits the last one

View 3 Replies

ActionScript 1/2 :: Controlling More Than One Movie Clip At Once?

Feb 21, 2010

I am making a game were you create movieclips with a button and move them around using a function system. The problem is, I want to control all of the same attached version of that movieclip in the code. how exactly would i do that if the instance name changes every time I load it?

View 3 Replies

Professional :: Sliders For Controlling A Movie

Dec 8, 2010

I have spent 2 1/2 days now looking for a way to make a movie of 16 pictures where the progress of the movie can be controlled by a slider.  This is either not a very common use of flash, or a very advanced project to take on.  I know nothing of action script, and am trying to learn how to make this happen.  I have been able to do this with buttons to go forward and back a frame when pushed, but I can't get the slider component to corelate with frames. 

View 2 Replies

ActionScript 2.0 :: Controlling Parent Movie?

Sep 8, 2009

I have a portfolio page with several trailer thumbnails (a portfolio list). If you click on each, the page changes and you see the trailer in a video player, plus more info about the film. I used two frames in the timeline: the first frame has the clip with the thumbnails (port_list). The second frame has a movie clip container and the video player. The idea is that pressing the respective button from port_list will load the details of that movie and the movie into the video player. I am using this script:

ZSQ_but.onRelease = function (){
_parent.gotoAndStop("por_details");
myplayer.contentPath = "videos/ZSQ.flv";[codde]....

Even though the script looks alright (and works alright if at the root level), it will not work from the child clip. What am I doing wrong?

View 2 Replies

ActionScript 3.0 :: Controlling Movie Clip From Another?

Jul 20, 2011

I'm at the end of my flash site creation and I would like to have the "mouse_down" keyframe in my movie clip to change the frame of my other movie clip displaying the content of the page. How would I go about a gotoAndStop() function to control a movie clip from another MC?[Code]...

View 1 Replies

ActionScript 3.0 :: Controlling Movie From Button Within MC

Oct 26, 2011

I am loading a MC in frmae 3 of the main timeline. In the MC, there's a button which I would like when pressed to run the main movie at frame 2. Below is the code.[code]I cannot get the gotoAndPLay bit to work. I;ve tried sooo many combinations (parent, _parent, this._parent etc etc) but to no avail.

View 7 Replies

ActionScript 2.0 :: Controlling All Movie Clips?

Feb 18, 2004

is there a way to refer to all movie clips on the stage or apply a function to all movie clips without applying the function to all manually?

View 3 Replies

ActionScript 2.0 :: Controlling A Movie Clip?

Apr 18, 2004

The problem I have is when i select to move the movie clip, i can't get it to stop animating when i tell it to go to a certain place.

View 4 Replies

ActionScript 2.0 :: Controlling One Movie Clip From Another?

Oct 10, 2004

What is the best way or controlling one movieclip from anoither. Pretty much want my menu and contentas two separate files but of course i need to contol my content from the menu.

View 1 Replies

ActionScript 2.0 :: Controlling External Swf Movie?

Aug 26, 2005

createEmptyMovieClip("_root.displayMV.portfolio", 1);
win.loadMovie("portfolio.swf");

That is a frame action - The "win" is my instance & the "portfolio.swf" is my external flash movie, I want this frame to tell my external flash "portfolio.swf" movie to go to and stop at frame 3 or 4, becuase at this time its only playing from the start.

View 5 Replies

AS3 :: IDE : Loading And Controlling External SWF Movie?

Sep 10, 2008

I'm able to load the actual external SWF movie, but I can't seem to control it. I have already built a controller for my flash video player. The problem now is it only plays FLV and I want it to be able to take in SWF support. Again, I load the SWF fine, but controlling is the problem.

function finished_loading (e:Event) {
var externalMovie = MovieClip(swfLoader.content); // cast 'DisplayObject' to 'MovieClip'
addChild(externalMovie); // add your swf directly to the stage

[code]....

I think this is the problem with the code. Casting it to a MovieClip only gives me a 1034 error.

View 2 Replies

AS3 :: IDE - Loading And Controlling External SWF Movie?

Jan 4, 2009

I'm able to load the actual external SWF movie, but I can't seem to control it. I have already built a controller for my flash video player. The problem now is it only plays FLV and I want it to be able to take in SWF support. Again, I load the SWF fine, but controlling is the problem.

function finished_loading (e:Event) {
var externalMovie = MovieClip(swfLoader.content); // cast 'DisplayObject' to 'MovieClip'
addChild(externalMovie); // add your swf directly to the stage

[code]....

View 1 Replies

ActionScript 2.0 :: Controlling Nested Movie Clips

Feb 27, 2009

I have a movie clip nested in frame 2 (* = movie clip in frame 2), it looks like this:

[1][2*][3]

When I test the movie it skips over frame 2. What type of action script (AS2) do I need either in the movie clip and/or in frame 2 to get the movie to play before proceeding and stopping at frame 3?

View 1 Replies

ActionScript 2.0 :: Controlling 2 Movie Clips With 1 Button?

Sep 7, 2009

Basically what I'm trying to do is have one button move two objects, each at different speeds. My first object is called "bg" the second is called "test." I have two buttons, "left" and "right" and when they are clicked on, only the "test" object moves. Here's the code I'm using:

function onRollOver():Void {
if (bg._x<gLEFT) {
bg._x = gLEFT;

[code]...

View 3 Replies

ActionScript 3.0 :: Controlling A Movie Clip From A Class

Oct 12, 2009

so here is the thing: I have a movie clip with 12 frames (lets call him MC), each frame shows a symbol. I want to create a class that control the MC instances, (lets call that controlClass) the controlClass will have function to change the frames of the MC instance and some other stuff. last thing I tried is that you give the constructor of the controlClass the instance name of the MC and tried to do that for example: stage. + MCInstanceName + . gotoAndPlay(2); that's what I'm trying to accomplish, at least.

View 4 Replies

ActionScript 3.0 :: Controlling Movie Clip Timeline From Within Another

Feb 19, 2009

On my main timeline I have two movie clips sitting side by side in frame1. They are called content_mc and content_mc2. Those are their respective names in the library and as instances. Now, I have a button in content_mc in which I am looking for the following behavior. When I click it, I want the timeline inside
content_mc2 to jump to frame2. MovieClip(parent).gotoAndStop(2); This code would be just dandy if I wanted to go to frame 2 of the main timeline, but I cannot find, for the life of me, how to go up one level (parent) and then specify down a new level (content_mc2). In other words, where do I put "content_mc2" in this syntax?

View 1 Replies

ActionScript 3.0 :: Controlling Flash Movie Clips

Apr 30, 2010

I made a flash animation using timelines and broke my movie up into three clips. The clips run fine in their own time line. I was reading about clip.play() clip.stop() and it seemed like I could do this. I have a main timeline with three frames. Each frame has a movie clip symbol on it. Each movie clip symbol has a timeline a few seconds long in it.I did this because I want to put a click event that will go to a different url depending on which clip the viewer is currently seeing. This swf file will be embedded into an html document.When I run the resulting swf - the three frames on the main timeline zip along like crazy and the movie clips don't play at all. I've tried every combination of stop() and play() I can think of but this is just not working as advertised.My movie clips have instance names of Clip1, Clip2 and Clip3.

1) some sample code that works so that I can run these clips in consecutive order;

2) the appropriate onClick code to use in the main timeline frames for my url events

View 4 Replies

ActionScript 3.0 :: Controlling Movie Clips On Different Frames?

May 22, 2010

I need to make some animation working without changing its structure, but I have no idea how to control mc instances on diffrent frames and diffrent movie clips. Below is example.When button is clicked, mc2 starts to play.

View 2 Replies

ActionScript 3.0 :: Controlling Movie Clip Children

Jul 10, 2010

I am making SWFs that an interface will load and control (pause, re-start, stop, etc.).When the interface is paused, the main movie clip will pause but not it's children movie clip.Note that I didn't write the interface AS3 code. I am supplying the SWFs that are loading into the interface. The developer of the interface won't allow me to use animated movie clips in my SWFs since he can't control them with the interface. So all my animation need to be on the main timeline.Can I provide him with some AS3 code to allow the developer to control the child movie clips or is there an Event Listener scheme I could include in the child movie clips that would pause, stop, restart, etc when the main movie clip changes?

Also...in the meantime...since I currently do not have a fix at this time and since all my animations are on the main timeline, is there a way to select multiple tweened objects (movie clips and graphic on difference layers) and move or resize them across multiple keyframes?

View 1 Replies

ActionScript 3.0 :: Controlling Movie Clips In A Function?

Sep 4, 2011

In the FLA file i have two animations of a turbine and a fan turning one is controlled via a button the other is a loop action that is not controlled.The button control is simple telling the movie clips to got frame 2 and play,and on the fan and turbine movie clips I have a goto and play frame 2 action the end of their time line. By doing this I get a rotation effect .

The problem is that when I call play function from the start button the movie clip does not play properly and just shudders between frames,rather than way it should run as a looped animation.

View 2 Replies

ActionScript 2.0 :: Controlling First Movie Out Of Loaded SWF File

Jan 23, 2005

I load a movieclip via:
on(release){
loadMovieNum("detection.swf", 1);
}
So I load it in my current timeline on level 1. Now in the detection.swf is a button that has to control the first movie. (that loaded the swf)

I tried:
on(release){
_level0_root.nextScene();
}
Which did not work. Referencing via _root.nextScene() also, because the loaded swf has its own _root. So how can I control the first movie out of the loaded one?

View 1 Replies







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