Control A MC Onstage From Within Another MC?
Jun 21, 2009
I want to control (i.e. play) a movieclip that's located on the stage from within another movieclip. The structure is basically like this... Stagemovieclip (mc)stop scriptanimationmovieclip (bt2)actionscript layer (code below)button (bt)the code within bt2 is:
[Code]....
View 2 Replies
Similar Posts:
Nov 3, 2009
I'm trying to set an onstage TextField instance's "text" property, while maintaining embedded fonts and its onstage appearance.Problem Encountered: Text doesn't show up when setting text via ActionScript on an on-stage TextField w/ embedded text.Workaround: Create and assign a TextFormat object:defaultTextFormat = new TextFormat('Arial', 100, 0x000000, true, true);Annoyance: This defeats the purpose of styling text with the IDE.
View 3 Replies
Sep 2, 2011
In the transitional stage to AS3, I have 2 MovieClips onstage both with a short animation in them. MovieClip2 has the stop(); on its first frame. When movieClip1 gets to the end of its timeline I want it to start movieClip2 playing.
parent.movieClip2.gotoAndPlay(2); doesn't work.
Do I need evenetlisteners or something?
View 2 Replies
Jan 18, 2011
Im building an interactive courtroom exhibit which has seven thumbnails along the bottom of the screen that can be dragged up to load a larger image of each into three possible positions above. Once in position, an "Assemble" button plays one of five possible animations, depending on what elements have been dragged.
I need to figure out a way to program which animation plays when its elements are onstage and I am stumped Im thinking of using an if-else statement but I dont know how to address the loaded images once they have been put in position.
View 0 Replies
Jan 18, 2011
Im building an interactive courtroom exhibit which has seven thumbnails along the bottom of the screen that can be dragged up to load a larger image of each into three possible positions above. Once in position, an "Assemble" button plays one of five possible animations, depending on what elements have been dragged.I need to figure out a way to program which animation plays when its elements are onstage and I am stumped. Im thinking of using an if-else statement but I dont know how to address the loaded images once they have been put in position.
View 3 Replies
Jul 1, 2009
I have a series of movieClip extension classes that are currently being applied via linkage in the library. I'm trying to find a way to loop the stage at compile and apply the classes to objects with specific instance names instead.
As it is now, if someone duplicates the library instance of a clip on the stage (which happens a lot), it loses the linkage. I could memo the entire dev team and tell them to re-apply the linkage anytime they dupe a clip, but I'd really rather not ask that of everyone...
After exhaustive searching, I'm still coming up with nothing for an actual AS2 solution to this. The only workaround I'm even finding is to create a variable reference to the clip in the class constructor, but I do not want that.
View 0 Replies
Aug 7, 2010
This actionscript 2 for moving a movieclip on stage in actionscript 2 .I would like to know what is the syntax in actionscript 3 .
movieclip.onEnterFrame = function(){
if (Key.isDown(Key.LEFT)) {
this._x -= 5;
}
}
cheers im new to actionscript 3 but nknow i need to make the change now.
View 9 Replies
Mar 24, 2011
I'm working on tweaking a very basic 2D platformer that has the following classes:
PlatformGame.as (goes with PlatformGame.fla)
HeroArm.as
PointBurst.as (not really addressed at all in this issue)
The PlatformGame code defines the hero with this code:
[Code]...
What I'm trying to do is attach the HeroArm movie clip to the hero movie clip, but I can't access the x, y and direction of the hero from the PlatformGame class, I guess because I simply don't know how. I know that at some point in HeroArm.as, I need to do something like:[URL]...
View 1 Replies
Mar 23, 2010
To move the MC, using arrow keys I used the following and it worked:
var timer:Timer;
var direct:String;
initStage();
[Code].....
I tried to convert this to use my onstage buttons: up_btn, down_btn, left_btn, right_btn to move MC box but couldn't figure it out.
View 1 Replies
Nov 3, 2009
I'm scaling onstage MovieClips via AS properties "scaleX" or "scaleY", which kills any kind of animation the clips have within their container MovieClip, be it Classic or Motion Tweens. When I don't scale the MovieClips, they animate fine. I'm able to tell the clips to "gotoAndStop" on their own internal frames, and that doesn't affect their animation within their container clip. I'm referencing the clips via AS w/ their instance names defined in the IDE. I've also tried different clips and recreated them, getting the same behavior.
Is it possible to scale a clip via AS and still have it animate within its container timeline? Does applying an AS property to an onstage instance somehow dissassociate it from other timeline properties?
View 2 Replies
Nov 3, 2009
I'm scaling onstage MovieClips via AS properties "scaleX" or "scaleY", which kills any kind of animation the clips have within their container MovieClip, be it Classic or Motion Tweens. When I don't scale the MovieClips, they animate fine. I'm able to tell the clips to "gotoAndStop" on their own internal frames, and that doesn't affect their animation within their container clip. I'm referencing the clips via AS w/ their instance names defined in the IDE. I've also tried different clips and recreated them, getting the same behavior.
Is it possible to scale a clip via AS and still have it animate within its container timeline?
Does applying an AS property to an onstage instance somehow dissassociate it from other timeline properties?
View 1 Replies
Oct 12, 2009
I am trying to manipulate (move up and down, enable/disable and launch a form) child controls inside a panel control. However I am unable to get the id of the child control on which the click event occurs. To illustrate, I am trying to create similar functionality as is available. I am trying to create the up-down buttons that you see in the image at http:[url].......
View 2 Replies
Mar 21, 2011
im trying to make a music/sound control and FX sounds control,so i have my FX volume level as a variable(FX_vol) and also the Music/sound volume level as a diffrent variable(M_vol),so i set them as sounds that i can use trough coding:
[Code]...
View 2 Replies
Nov 4, 2009
Is it possible to control a Flash movie from JS when you have no control over the source? I have decompiled the movie to see its inner workings, but I know nothing about Flash, so I'm mostly in the dark. I found this resource, Interaction with JavaScript, but it's not working for me (probably because I don't know what message to send to the movie).
View 1 Replies
Mar 21, 2010
I have a flex application and have embedded a flash (SWF) file into it using <mx:SWFLoader>. There is an "Exit" button on the Flash file. I want to be able to handle the button click event on the flex application.
So when that button in the flash file is clicked, I want to perform an action in the parent flex application.
View 2 Replies
Jan 2, 2012
1) Passing a control itself as parameter into a function 2) Passing an id ( managed manually) of the control as a parameter into a function . Say for an array of controls I have ctrl_Array = [ my_btn, my_mc, my_dtg ] and corresponding id_Array[0,1,2] PS: If my question is difficult to understand, i just wanna know, if it is a good programming practice to pass control references among the classes as function parameters ?
View 1 Replies
Dec 14, 2010
I have a mc of "pages" and 1 frame on main timeline and another mc called "titles" .I would just like to be able to say at the end of title1 something like pages.gotoAndPlay(relevant frame);however I have been bangin my head against this all day. how do I do itmdesperate. Just want to be able to play my animation without using buttons..ie. when this frame is reached .. do this?I have a next and previous function - but I couldnt fig out how to make that work automatically either.
View 1 Replies
Dec 3, 2009
Where can I find ready-made buttons that will control an FLV and a timeline together? I have a swf with an FLV and I animate images and phrases on a movieClip timeline timed to what they say in the flv. I set up cuepoints that trigger the animations, so when users scrub, pause, etc. the timeline eventually catches up with the FLV, but it would be a lot nicer if the pause, scrub, etc. would do the same to the timeline and there was no lag time.
View 1 Replies
May 23, 2010
I need to find a way to come up to a solution to this problem, I can't have a different solution - for difficult reasons, I'm stuck with this layout.I have one .swf file (call it Parent.swf) - and within this .swf file there are two other .swf files sitting next to each other. (cLeft.swf and cRight.swf)Now - again for reasons that are complicated to explain - the cLeft.swf plays through it's animations, and then stops at the end - but there are no buttons to replay it - and right-clicking is not an option. So, I was wondering if there was code I could use in cRight.swf to target and replay cLeft.swf - understanding that at runtime - both of these are embedded within a larger parent .swf - as I named Parent.sw
View 6 Replies
Jun 10, 2011
Somebody answered that a way to get a control bar to a .swf file was to use the "button handlers and the goto and stop methods".No reference as to what is meant by this or to where I can get the .html to do this.I've got the .swf file but no control bar!I understand that .swf can be visible by most browsers.So how do I get the scripting for addin these button handlers and the goto and stop method". Since I'm a newbie, please don't say, this is easy, just use this or that method.I need the scripting that will do it.I know how to put the .swf in the page with <object> and <embed src=""> but no control bar.
View 3 Replies
May 19, 2009
I have this animation that makes patterns you can change the patterns shape and so on with the action script but I want the users to be able to change it at run time.What I need is for a scroll bar or maybe text field to be able to change the action script.
This is the line that needs to be editable e.g the number must change.
this[newnode]._rotation=137.5
View 1 Replies
Jun 21, 2009
I have 2 movieclips on the main timeline of my movie; One (mc) contains an animation, the other (bt2) contains a button (bt) with code. I want it so when the button (bt) is clicked, it causes the animation (mc) on the main timeline to play.
The button's code is contained inside bt2.
So far I've tried the following things...
Code:
bt.addEventListener(MouseEvent.CLICK, onClick);
function onClick(event:MouseEvent):void
{bt2(root).mc.play();}
[Code].....
... along with several other things. Nothing is working at all, and I spent all last night looking for a solution with none in sight.
View 3 Replies
Mar 21, 2010
Is it possible to load an external SWF and control is with play/pause buttons, seekbar, and volume bar?Basically it would be something like this:controller.swf - this would load the external swf file and control itmovie.swf - this is the actual content that I'd like to control
View 1 Replies
Nov 30, 2011
We've updated to Flash Professional CS5.5, but are noticing that when multiple users access the FLA over AFP network file share off our OSX Server, they are not restricted from opening the FLA at the same time.Could have sworn that's always just worked in past versions. Most apps just refuse users access to open files; Other apps like Office warn us of multiple user access to open read-only.
View 2 Replies
Sep 1, 2005
How to control the other sef by a click of a button from other swf?
i wanna create a website with multiple swfs inside a main big swf. and i wanna like, click a button at swf C that moves something at swf G.
View 3 Replies
Jun 25, 2006
Does anyone know how I could control a buttons link using xml? That way the link could be changed anytime without having to open the flash source file and re-export the movie.
View 21 Replies
Jan 13, 2009
using action script2 flash cs3, and i need more than one volume slider/control and each control needs to be assigned to one sound, atm i have more than one volume slider but they all control the same sound!
View 1 Replies
Mar 9, 2009
I'm loadning a swf coverflow (as2) to a swf (as3) with SWFLoader.
My problem is that i wish to make gotoAndPlay calls from the loaded swf to the as3, or even better call functions. Is there any way to do this - i've tried alot..
View 1 Replies
Apr 1, 2009
I've a basic portfolio page with 5 links. The idea being that 4 stay small and the active page is a larger font. When one link is clicked, itself and whatever font is currently large both swoop down and then the large text is replaced by whatever section the user chose.
I haven't keyframed anything, it's all done with actionscript and here it is. I made one of the links show what the var is currently set to in a dynamic text box. That all seems right. But whenever the 'currentchoice' mc is asked the swoop down, it just disappears rather than animates out. Here's the actionscript.
import mx.transitions.Tween;
import mx.transitions.easing.*;
var currentchoice:Object = new Object();
currentchoice.selection = large_anne;
[Code].....
View 1 Replies
Aug 25, 2009
I have 10 different buttons and I want to toggle their visibility with one command. How do I group them to achieve this?
View 3 Replies