Get An Externally Loaded Movie Clip To Inherit The Playhead Position Of The Main Timeline?

Oct 17, 2009

I have been approached to design a configurator for a new television product. The Application will let users specify the colours of certain parts of the product and also attach addons, which then updates a cost total.

In the main interface i have a looping animation of the product slowly rotating around 360 degrees that i rendered in 3ds max. When a user clicks a button on the interface i need to load an external movieclip on top of the main animation so it looks as though a certain part has changed colour, this i have acheived. The problem is that when i load the external clip over the original, the loaded clip starts playing from frame 1 and i need it to inherit the playhead position of the main animation so the two layered pieces look as though they are rotating as one. I'm sure this must be possible, unless i need to approach the problem in a different way?

View 7 Replies


Similar Posts:


ActionScript 2.0 :: Targetting A Movie Clip - Loaded Into A Container Clip From Main Timeline

Nov 24, 2005

I am targeting a a movie clip. The problem is that all the syntax I have found for targetting clips looks like this: _root.sample_mc.sample2.mc. etc. The problem is, my target clip is in an swf that I've loaded into a container clip from my main timeline. So, essentially, I have a home.swf that loads menu.swf into a container called 'location'. In menu.swf, I have an MC called center, which contains the MC I am targetting called 'target'.

View 2 Replies

ActionScript 2.0 :: Preserving Movie Clip Playhead Position

Apr 29, 2010

I need to jump the movie clip position back and forth between two positions on the stage--without tweening--via a mouse click on a button. I have no problem doing this by creating a 2-keyframe timeline, and re-positioning the movie clip for each frame. To move back and forth from frame 1 to 2 and back to 1 on the main timeline, I wrote a gotoAndStop action for the button, (labeled flipflop.) In frame 1 of the main timeline:

flipflop.onMouseDown = function() {
gotoAndStop(2);
};

In frame 2 of the main timeline:

flipflop.onMouseDown = function() {
gotoAndStop(1);
};

The problem is, when the movie clip jumps from position A to position B on the stage, the movie clip resets to frame 1. I need the movie clip to hold its current frame as it changes position from frame 1 to 2 and back to 1. How do I do this, and would the method be the same if the single button controlled the movement of multiple movie clips?

View 1 Replies

ActionScript 2.0 :: Recognizing Within Main Timeline A Button Located Inside Externally Loaded .swf?

May 13, 2005

I'm using the preloader like the one rhamej posted here:[URL]The part of the code I need help with is as follows:

[AS]
//fire the MovieClipLoader and attach the listener to it
var container1:MovieClipLoader = new MovieClipLoader();
container1.addListener(mclListener);

[code]....

I realize the code is wrong. I wondered if it was possible after loading an external .swf ("1_movie.swf") within the container, if you could then press a button (enter_button) located within the external .swf ("1_movie.swf") , and use the preloader code to load another external .swf on release ("tree20.swf"). I'm having trouble because the preloader code is in the main timeline of my main flash file ("index.fla"), and I don't know how to make the preloader code recognize the button located within the external .swf, and use it to load another external .swf within the same movie clip.

View 3 Replies

ActionScript 2.0 :: Recognizing Within Main Timeline A Button Located Inside Externally Loaded .swf

May 13, 2005

I'm using the preloader like the one rhamej posted here:

[URL]

The part of the code I need help with is as follows:

[AS]
//fire the MovieClipLoader and attach the listener to it
var container1:MovieClipLoader = new MovieClipLoader();
container1.addListener(mclListener);

[Code].....

I realize the code is wrong. I wondered if it was possible after loading an external .swf ("1_movie.swf") within the container, if you could then press a button (enter_button) located within the external .swf ("1_movie.swf") , and use the preloader code to load another external .swf on release ("tree20.swf"). I'm having trouble because the preloader code is in the main timeline of my main flash file ("index.fla"), and I don't know how to make the preloader code recognize the button located within the external .swf, and use it to load another external .swf within the same movie clip.

View 3 Replies

ActionScript 3.0 :: Externally Loading SWF Into Position On A Single Movie Clip?

Jan 3, 2008

I realize that title sounds a little confusing, but what I am trying to do is copy this style of site[url].... I have created all of the swf's for the main index of the site, but am way out of my league on how to load them into a certain position in a single movie clip so that a drag bar can slide the movie clip left and right. I have read a few posts on external loading, but am not really sure on how to implement them to achieve this look.

View 9 Replies

ActionScript 3.0 :: Movie Clip On Main Timeline Receiving Input From Nested Movie Clip

Feb 23, 2011

I've got a main timeline .swf file called "blank.swf" which contains nothing but two blank movie clips one called called "pproduct", the other called "ppalette". In the script frame of this main timeline I use the simple "Loader = new Loader();" method to load a URL of an .swf file into the "ppalette" movie clip. The "ppalette" movie clip contains several color chip buttons, each of which use the same Loader method above to load an external .swf into a clip. Here's what I want to do: let those color chip buttons, when the "blank.swf" file loads, be used to load an .swf movie into the "pproduct" clip on the main timeline. I'm wanting to be able to swap depths with various movie clips which will take out the movie which has the palette, but I want whatever that palette has loaded in the original "pproduct" clip to stay there.

[Code]...

View 3 Replies

ActionScript 3.0 :: Getting Playhead Back To Main Timeline?

Nov 26, 2010

When the playhead is sent from the main timeline (Scene 1) to play a movieClip timeline, what code is used to send the playhead back to the main timeline (Scene 1) after the movieClip has played?

View 9 Replies

ActionScript 3.0 :: Loading Main Timeline Variable From Movie Clip Timeline?

Feb 2, 2010

I cannot seem to find anything of what I need from google.(Well, I can find the reverse method to what i need ) Basically I wish to access a variable declared in the Root Timeline from my Movie clips timeline.

[Code]...

View 2 Replies

ActionScript 3.0 :: Movie Clip Timeline To Main Timeline Coding?

Oct 9, 2009

I have a file comprised of 1 scene and two movie clips. The clips are instanced into the Main Timeline and occupy Frames 1 and 2 respectively.MovieClip1 is an animation that has navigation buttons that appear at the end of the clip. I'm trying to get mouse click navigation to make Frame 2 on the Main Timeline active.

Here is what I'm trying but it is not working:

btExplore.addEventListener(MouseEvent.CLICK, ExploreClick);
function ExploreClick (evt:MouseEvent):void {
gotoAndStop(2);
}

this takes the animation to Frame 2 of the Movie Clip Timeline not Frame 2 the Main Timeline.

View 9 Replies

ActionScript 2.0 :: Using Mc As Button To Advance Main Timeline Playhead?

Jan 8, 2009

I have been fighting with Flash for the past week attempting to change my code so that when you click on the movieclip photo_mc, the playhead will advance on the main timeline. I have tried everything:

eg: (code on mc)
on (release){
_root.gotoAndPlay("options");

[code].....

View 5 Replies

ActionScript 3.0 :: Dynamically Tell If The Main Timeline's (or A MovieClip's) Playhead Is Moving Or Has Stopped?

Apr 21, 2009

Is there a way to dynamically tell if the main timeline's (or a MovieClip's) playhead is moving or has stopped? I know I can manually set a boolean variable and then toggle it between true and false:

[Code]....

View 4 Replies

ActionScript 3.0 :: Library Mc's As Buttons - Send The Playhead To Different Labels On The Main Timeline

Jul 6, 2009

I created a menu of invisible movieclips (from a library item with the class name Invis) with buttonmode set to true so that I can have them send the playhead to different labels on the main timeline. I could use some help with determining which button is clicked and then placing code that executes depending on which button is clicked.

Here is what I have so far on frame 1 of my timeline:

This works - I get [object Invis]0,or [object Invis]1...etc in my output //window depending on which one I clicked. Just not sure what to do next

View 3 Replies

ActionScript 3.0 :: Tell The Playhead To GotoAndStop(); On Frame 2 Of The Main Timeline From A Class File?

Jan 21, 2010

How do i tell the playhead to gotoAndStop(); on frame 2 of the main timeline from a class file?....I'm trying to oop this program.

View 2 Replies

ActionScript 2.0 :: Target A Loaded Movie Within The Main Timeline And Stop Sounds In That Particular Movie Only?

Apr 14, 2004

Is it possible to target a loaded movie within the main timeline and stop sounds in that particular movie only?

View 4 Replies

ActionScript 3.0 :: Play Movie Clips Embedded Inside A Movie Clip On The Main Timeline?

Dec 6, 2009

I have my flash document set up in the following way: On the main timeline I have my buttons that I want to play movie clips embedded inside a movie clip on the main timeline.However, when I click each different button, the current movie clip stops playing and then the movie clip corresponding to the button plays.

I want them all to be able to play at once. So for example you push button 1 and the alien plays, but half way through you could click button 2 and the alien clip would keep playing, but also the helicopter clip would begin to play as well.Here is the code I have so far:

building_btn1.addEventListener(MouseEvent.CLICK, alien);
building_btn2.addEventListener(MouseEvent.CLICK, helicopter);
function helicopter(e:MouseEvent):void {[code]......

View 1 Replies

ActionScript 2.0 :: Get An Externally Loaded Mc (a Listener) To Execute A Tween When Another Movie Clip (a Broadcaster) Is Pressed?

Nov 28, 2007

I need an externally loaded mc (a listener) to execute a tween when another movie clip (a broadcaster) is pressed. So, when you press on mc1, mc2 executes a function. Sounds so simple. And I feel I almost cracked it. Now, I know the theory behind broadcasters and listeners, but my code simply doesn't work. I must be dumb since I couldn't figure it out from the senocular's tut on broadcasters and listeners.

To try to illustrate the problem more: listeners are a couple of arrows, left and right. They are movie clip buttons that work on the rewind principle. There's an externally loaded mc at the stage that executes its intro tween (nothing special), and when it stops I want it to start listening to the arrows. So, when on(release) on the arrow occurs, externally loaded mc executes it's outro tween, and at the end calls for the next externally loaded mc on the stage.

Now, to add another question; I have 6 externally loaded clips, called by the arrows. When the first and the last one are on the stage, I'd like to disable the previous, and the next buttons, respectively. I thought I'll just do arrow.enable = false in the first and the last clip.

View 6 Replies

Movie Clip Control Main Timeline?

Dec 22, 2009

I am simply trying to tell my main timeline to go to the next frame when a movie clip reaches the end of its timeline (using AS3). Here is what I have which does not work.

Code:
MovieClip(root).gotoAndPlay(nextFrame);

View 2 Replies

ActionScript 3.0 :: Go From Movie Clip To The Main Timeline

Jul 16, 2010

I've got mc and at the and I would like to go to the main timeline and do something else. How would I could do it?

View 1 Replies

ActionScript 3.0 :: Movie Clip And Main Timeline?

Apr 26, 2011

I have a move clip with several buttons inside; their rollover seems fine.i am trying to get the buttons in the clip to address/go to the main movie timeline. Button names within the clip: c_btn, d_btn, etc. These are the symbols names; they have not been given unique instance names within the clip. The clip name is nav_all and its instance on the timeline is navall.mc.

View 6 Replies

ActionScript 3.0 :: Flash - Play Movie Clip With The Button Click Without Playing All The Movie Clips On The Main Timeline

Apr 26, 2009

I'm trying to make a flash website that has clickable buttons that will play different movie clips. But I dont know how to make it to just play the movie clip with the button you click without playing all the movie clips on the main timeline.

View 1 Replies

ActionScript 2.0 :: Target A Loaded Movie Within The Main Timeline?

Apr 14, 2004

Is it possible to target a loaded movie within the main timeline and stop sounds in that particular movie only?

View 4 Replies

Movie Clip Symbol Won't Play On Main Timeline

Aug 29, 2005

I've created a movie clip symbol with it's own animation on its timeline. I've placed this symbol onto the first frame of the main timeline but when I test it, it doesn't play. There's no stop actions or anything on either timelines so I'm not sure why this is happening. I thought that the animation in a movie clip symbol will automatically play (i.e. if you test in a browser) once it's on the main timeline - is this right? Or am I doing something wrong. Maybe I need to tell it to play?

View 6 Replies

ActionScript 3.0 :: Controlling Main Timeline In A Movie Clip?

Nov 5, 2010

How would one on a specific frame inside a movie clip cause the main timeline to go to a certain frame label?

I know how to use gotoandstop(), but i can't seem to find a working, correct syntax variable that accesses the main timeline and not the movie clip's timeline.

View 3 Replies

Movie Clip Button Controlling Main Timeline?

Jan 4, 2012

I'm in the process of designing this site as a portfolio for my art and am in the process of creating and laying out the galleries. My idea was to create movie clip animated buttons that would react to the roll over stuff. I got that part to work the way I wanted it. But now, I can't seem to figure out how to put a "Gotoandplay" type of code on the buttons so that the timeline would jump to the appropriate frame and play. (I put an "on(release) gotoandplay" on it the way I would put it on a button but it never responds. I have a couple of buttons that work fine with a "geturl". so I thought a "gotoandplay" would work fine. If this can be figured out in a way that I can easily use it for all buttons with just the frame number needing alteration, that would be best. After you click the splashpage door jpg, there will be a piece of paper on the floor. That is a button which should trigger the animation that starts at frame 114. When clicked, the page lifts up and spread open to two pages. But it never reacts

[URL]

View 6 Replies

Professional :: Returning To Main Timeline From Movie Clip?

Jan 23, 2012

my main timeline i have an intro, then a main menu. from that main menu it goes to a movie clip, i want to create a 'back to main menu' button inside the movieclip that will return to a certain frame in the main timeline.

View 8 Replies

Actionscript 3.0 :: Target A Movie Clip From The Main Timeline?

Apr 5, 2010

I have 7 buttons on the main stage that go to different parts of the main timeline, all of which have the same movie clip with 7 different frames. Right now it always goes to the first frame of the movie clip, but I need the second button to go to the second frame, and so on. I was originally trying to have the button itself find a frame label inside the movie clip, but now I realize I probably need to attach something to the key frames of the main timeline that tells it to go to a specific part of the movie clip. The problem is I can't figure out how to address the movie clip from the main timeline. The book I started learning from had a short section on declaring movie clips, and I cobbled together this bit of code and put in on a key frame in the main timeline.

Code: Select allvar viewwork:MovieClip = root.viewwork

viewwork.gotoAndStop(2);

I'm pretty sure that's completely wrong, as it gives me the error: 1119: Access of possibly undefined property viewwork through a reference with static type flash.display:DisplayObject.

So how do I properly reference a movie clip from the main timeline? Also, I'm using an external .as file for most of my actions, but I'm sticking this directly on the frame because I haven't even thought about trying to figure out how to target a specific frame from an external file. Is that going to cause problems?

View 1 Replies

ActionScript 2.0 :: Movie Clip Continues Main Timeline When Done

Apr 2, 2004

I have the main timeline of stop just as a movie clip begins to play. When that clip is done, what is the command i put into the last frame of the timeline of the movie clip to make the main movie timeline get going again?

View 3 Replies

ActionScript 2.0 :: Set The Depth Of A Movie Clip That Is On Main Timeline?

Nov 28, 2005

how to set the depth of a movie clip that is on my main timeline?

View 1 Replies

ActionScript 2.0 :: Restarting The Main Timeline From A Movie Clip?

May 20, 2003

I have a movie clip that generates random numbers until the numbers I specify come up. The movie clip takes a random amount of time to cycle through. It only plays once.

Basically, I want the main timeline of the movie to pause until the movie clip finishes, then continue on (to a new scene, or current scene if this is easier).

I got the main timeline to stop and wait for the MC to play, however, when I add the _root.play() to the end of the MC script, it plays the main timeline right away, over the main timeline, rather than waiting for itself to finish.

View 1 Replies







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