ActionScript 3.0 :: Controling MovieClip With One Function

Oct 7, 2009

I am working on building an accordion style menu using Tweener. I have 3 movieClips on my stage, I can add a tween to each but I need a little help getting the menu items to end in the correct position. In my code below this line tells the movieClip to move to a position of y=25. Tweener. add Tween(mc,{y:25, time:1});I changed mc to box1 and box2 which makes evey thing move when I click, but how do I set up my function so I can click box1 and it will slide up and then click box2 and it slides up.[code]

View 1 Replies


Similar Posts:


AS3 Button Function Controling Another Movieclips Timeline?

Nov 13, 2010

What I am trying to achieve is have one movie clip containing a button control the timeline of another movie clip.I know how to get a button to control the timeline of it's current movie clip, however, getting a button to control the timeline of a seperatef there is a tutorial that someone knows of, or if someone could post a snippet of AS3 showing how a button controls another clips timeline -Re: Question: AS3 Button controling timeline of movie clip.here is the coding I am using too:

but_shows.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
function onMouseDown(event:MouseEvent):void{
_root.mainContainer.gotoAndStop(2);

[code].....

View 1 Replies

ActionScript 2.0 :: Controling Frame Move From Outside Movieclip?

May 23, 2009

I have this function :

Code:
function swapstate(newpage) {
for(var a in nav_left){
if (nav_left[a]._name != newpage) {

[Code]....

As you can see, it's made in order to change the look of a button when clicked and to also show a different look to the other buttons in the same movieclip container.

The problem is that gotoAndStop isn't triggered.

View 3 Replies

ActionScript 3.0 :: Controling Resizing Of A Swf From Another Swf

Jul 25, 2009

I'm trying to build a site where all the pages are full browser and maintain aspect ratio. I would like to control the resizing from the menu page.The resizing works fine from the page that's being resized but when I try to let the parent swf do that it has issues. Here's what the home page looks like with the controls built in URL...This example is the site it has a menu page that I open the others from I remove the resizing code from the home page and try to resize from menu.swf.[code]

View 4 Replies

ActionScript 3.0 :: Controling An External Swf

Mar 30, 2010

I have a site that presently has a preloader @ the beggining but takes too long to load everything. The main section has a sliding menu that triggers various movies containing photos and animations I have decided to extract all of the project items as SWF files and call them when required.The challenge I now have is that previously when an item was selected from from the menu it would send the play head to a new frame that had the the movieclip; this movie had an instance name which enabled me to use the 'close' button embedded in it and send the play head back to the sliding gliding menu.[code]

View 4 Replies

ActionScript 3.0 :: Controling External Swf?

Dec 4, 2005

I have main swf that uses DocumentClass to which I loadanother swf that uses its own class.In main movie there are coupleof buttons that I want to use to load different xml files forexternal swf. When I tried a few suggestions from this forum I got thiserror:

Error #1034: Type Coercion failed: cannot convert
Classes::SlideShow@3a49f239 to flash.display.MovieClip.
at Classes::DocumentClass2/onTravelClick()

View 3 Replies

ActionScript 3.0 :: Controling The Turn Of Action?

Dec 30, 2008

controling the turn of action.

Example: i moved an object a certain distance. once it reaches a distance then it stops.i want to have a button; when you press will allow you to move the object again for the same distance.(what is code to do mthat).....then will need press button to allow it to move again.

View 8 Replies

ActionScript 3.0 :: Controling One Flash Movie With Another?

Nov 11, 2011

For example: I have a graphical interface created in Flash AS3 which is simulating the control of machines on the ocean floor. I have 3D animations that will animate what is happening on the ocean floor when a control element is activated on the graphical interfaceAt the moment I have this happening all in one Flash player window that has been made to look like two windows. One which is the interface...one that is made to look like a small screen showing what looks like video coming in from a camera on the ocean floor.

What I need to be able to do is have the Control Screen as one window, and the animations to appear in another. In this way we can set up two monitors, have the control screen on one (computer monitor), the animations playing on the other (a large plasma connected to the same computer). The animations need to play within a flash shell and the control screen would need to play in a separate shell. So in essence I need to be able to double click on an .exe....two screen will activate showing one screen with buttons that port animations into the second screen which I have positions to play on the larger screen.

View 3 Replies

ActionScript 2.0 :: Controling Separate Swfs?

Mar 8, 2006

ok so i need 2 create one movie that controls a second movie, so i have movie1.swf with a back and forward, and i need them buttons to advance movie2.swf, which is essenialy just a slide show!the movies will run independantly of each other, i do not want to load movie2.swf in movie1.swf! get me?how i go about this, i have been told of listeners, so movie2.swf will listen for a true or false command before it advances on... and movie1.swf will send out the command when the next is pressed??

View 5 Replies

ActionScript 2.0 :: Controling MC Time Line?

Jun 14, 2006

I am wanting to control the timeline of a MC using AS. What I mean is when I click on a movie click and drag right it controls the reverses the MC and when I go left it plays it (but i only want this to happen when I click and drag).

View 7 Replies

ActionScript 3.0 :: Controling Embedded Video?

Jul 4, 2011

is it possible to embed video into swf because i want video to be loaded on beginning(with loader) instead loading from external file and having glitches.

View 2 Replies

ActionScript 2.0 :: Controling External Movies?

Nov 18, 2003

Is it possable to load an external swf file, that is a rotating movie into another file and still control it??example:I have a rotating object which I want to pause and play. I have loaded the rotating object into a window using the loadMovie command. I now want to be able to use the play and stop buttons to control therotation.Because the movie has been loaded into the window from a different location it does not have a path to target the play and the stop command to also tried adding the play and stop buttons on the rotating object movie swf file. They load and are pressable, but dont do anything?

View 1 Replies

ActionScript 3.0 :: External File Controling Flash?

Feb 26, 2010

Got a pitcular problem/question and im not sure it is possible. Im creating a project that enables the viewer to access a load of files (Pdf's and doc's) through flash. The problem is, these files will be added to and taken from about 4 times a year and there is anywhere from 2 to 20 folders in each folder containing these files.so What I want to do is have an image that when clicked on opens a new box that has links in it that these links are displayed from an xml or html then I need to have that code tell flash to open another box that has links displayed from another XML of HTML that has the links to the actual files being called.i guess the question is:Can flash be controlled by a link called from out side of flash?

View 1 Replies

ActionScript 3.0 :: Controling An XML Based Scrolling Thumbnails?

Jun 20, 2009

this is my code so far:

[Code]...

View 4 Replies

ActionScript 3.0 :: Add And Remove Child When Controling Multiple Mcs

Mar 29, 2009

I am trying to add and remove three mcs with a single button.It want it so that when it loads one it removes the other. right now it cycles through all three mcs buth then when it goes to cysle through again it throws.[code]

View 1 Replies

ActionScript 2.0 :: Controling Timeline Via Mouse X Position?

May 15, 2005

i want to know if anyone can tell me how to controll the timeline via moving the moiuse in x (left to right basicly i wsant to shocase a sculpture of mine in a seemingly quicktime vr fasion. so i will take lots of images of the sculpture in difrent agles to get the 360 degreemovie. then import intoflash timeline. Then somehow i need a script to control the scrub the timeline images (to create the quicktime vr look )

View 3 Replies

ActionScript 2.0 :: Button Not Controling Movie Clip Correctly?

Dec 17, 2003

Note the button at the top called portfolio, on mouseover this button should loop through the "mouseover" label section, and when the user takes the mouse off of it it should continue to play through what it has started, and stop at the begining of the mouseover labelhen the user clicks on the button it should play through the "trans" label (only once) and begin to loop at the label section "current" when the user goes to another section, for example, clicks another button besides portfolio, the animation should stop on the label "visited" my code for it to loop looks like this (on the invisible button over the movie clip)

on (rollOver) {
portfolioBtn_mc.gotoAndPlay("mouseover");
}

[code].......

View 2 Replies

ActionScript 2.0 :: Controling A MC's Frame Rate, Speed And Direction?

Jun 1, 2008

I have a embedded video animation clip that I need to control the speed it plays.The animation is of a ball spinning and when its rolls long X access i need the animation to move at the speed of the mc moves and slow down at the same rate.dose anyone know if I can control the frame rate and speed of a mc and the direction which is plays?any other option is to rotate an png but the problem im having with that is: when i import a circle png and brake it apart then remove the extra parts of the image leaving just the circle and have it aligned to the center. when i rotate it and move it along the X access base of the height of the mc it bobs up and down like this still counting the removed parts of the png in the

View 2 Replies

ActionScript 3.0 :: Controling Number Of Ticks Rendered On A Line Chart

Sep 17, 2010

Is there a way to set a fixed number of ticks on a DateTimeAxis?

View 3 Replies

ActionScript 3.0 :: Flash Loading External Swf And Controling From The Main File

Aug 13, 2011

I am loading a swf named ball.swf in the main.fla. the swf is loading but not playing the next frame that i want.[code]

View 1 Replies

ActionScript 2.0 :: Activate A RollOver-function When The Mouse Rolls Over A Movieclip Inside Of A Movieclip?

Apr 17, 2010

I am trying to activate a rollOver-function when the mouse rolls over a movieclip inside of a movieclip.On the main window (root), first you rollOver a button where a window shows up with more options (movieclips).From stage, my first movieclip is called "catapultas_read_more" which leads to amother movieclip called "pic1_mc". The label that is going to play when mouse over on pic1_mc is "rollOn".I tried this.gotoAndPlay("rollOn); directly inserted to the movieclip, but the movieclip inside pic1_mc never starts

View 8 Replies

ActionScript 3.0 :: Call Parent MovieClip Function From Child MovieClip?

Mar 15, 2012

I have load child swf in parent swf, from child swf i am trying to run my parent swffunction I am trying this code

MovieClip(parent).testfun()
but this code is giving error.
TypeError: Error #1034: Type Coercion failed: cannot convert flash.display::Loader@2b1aa061

[code].....

View 1 Replies

ActionScript 3.0 :: MovieClip Accessing A Variable That Is In A Function Outside Of The Movieclip

Dec 8, 2010

I am trying to access the variable myParentVariable within the function myParentFunction() from the MovieClip's myMovieClip_mc function myMovieClipFunction().
 
I know that It works if I declare the variable myParentVariable outside of the myParentFunction() but I don't really want to do that

main timeline
//-------------------------------------------------------------------- ---
myParentFunction();
function myParentFunction():void

[Code]....

View 1 Replies

ActionScript 3.0 :: Controling Movie Clip Inside Of Movie Clip?

Feb 10, 2009

I was decent at AS2 and now that I am trying to figure out AS3 I am realizing that it is all grown up and I was left in the dust.I am trying to do the most simple thing. I have a movieclip with an instance name of "clip1" with another movie clip with an instance name of "clip2_sub" which is inside of "clip1".all I am trying to do is stop and start the "clip2_sub" movie clip from the main timeline.I know in AS2 you just would do something like clip1.clip2_sub.stop(); I am trying to figure out why this doesnt work in AS3. I get the error of 1120:Access of undefined property clip1

View 2 Replies

ActionScript 3.0 :: How To Call A Function In A Movieclip

May 1, 2009

i've got a function in a movieclip on the main timeline that i need to call when a button in another movieclip is clicked. is there a way to do this in as3?

View 3 Replies

ActionScript 3.0 :: MovieClip Not Returning From Function

Jun 30, 2009

I am trying to return a movieClip to a project variable, so it can be retrieved outside of a function. However it fails.

I tried to simply set up a variable so when the function returns, it has a storage variable.

Then i tried for a function to retrieve the variable content

However when i call the trace(mc) it fails as undefined [code]...

View 1 Replies

ActionScript 3.0 :: Pass Movieclip To Function?

Oct 27, 2010

I'm trying to make some tables. I have some movie clips:

cella1
cella2
cella3

[code]....

View 5 Replies

ActionScript 3.0 :: How To Use Listen Function From MovieClip

Jun 9, 2011

I am trying to put a command in one of my movieclips (mc1) that will say: When mc2 is at frame 20 (or has done a function assigned previously), gotoandplay frame 5 (in mc1). I am going to be putting this code inside the mc1. I am trying to design my button (mc1) to dim when mc2 or mc3 is clicked (and mc2 to dim when mc1 or mc3 is clicked, etc.) I have the dim tween on frame 5, and the clicked frame on frame 20, in my example.

View 13 Replies

ActionScript 3.0 :: Get An Error Saying MovieClip Is Not A Function?

Oct 22, 2010

How I wish there was a book written in layman's terms for AS3 I have great dictionary for AS2 wish there was an AS3 equivalent.I know that _root is dead in AS3.I have a movieClip called "mcClimber" which is inside a movieClip called "mcMountain04". The climber mountain clip has a bone tween of a guy doing a climbing motion.When it hits frame 40 in mcClimber, I want it to tell mcMountain04 to go to the nextFrame.That's all.Why is this so difficult in AS3?I've looked at the online Adobe literature and it's so poorly written for laymen my eyes glaze over and I end up looking elsewhere.

I have tried this: MovieClip(parent).mcMountain04.nextFrame(); But I get an error saying MovieClip is not a function.

View 3 Replies

ActionScript 1/2 :: Duplicate Movieclip Function?

Jun 8, 2011

I'm working on a creating a button that will create (preferably unlimited) duplicates of one movie clip. I have something that works for Flash, pre-2004, but I'd like to update it to Actionscript 2.

Button:
on (press) {
i = i + 1;

[code]......

View 2 Replies







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