I need to have the ability to spin or rotate an object such as a globe. I have 2 rollover mc's that spin the globe but I am having trouble getting it to loop on the backwards spin. Right now I have it acivating the mc to play fowarding in its timeline then loop but what is the best way to get it to go in reverse. My .fla can be found here [URL].
I need to activate some lines of code inside a function because that is where the object name has been made.Would a boolean work well? If so how exactly would i implement it? I tried booleans but had no success because i am not experienced with them..
Heres some code: public var myboolean:Boolean = new Boolean(); public function Function_One()
I am trying to make this game but I cant get any further because of the following: (copy pasted the necessary parts, not sure if this is all you need though... Selected[unitcounter].addEventListener(MouseEvent.CLICK, moveselecter); function moveselecter(evt:MouseEvent):void{ var Unitcounted:Object = evt.currentTarget evt.target.addEventListener(MouseEvent.MOUSE_UP, moveTo); trace("hello") } function moveTo(evt:MouseEvent):void { trace("hello2") } It does give hello but not hello2 so the event should do its work if u ask me...
i want to setup this interface so that when you click on this movie clipsomething happens. but whenever i try to click on the movie clip i get nadathis is the location of my movieclip:_root.mc_gallery_content.mc_empty_1the AS that i want to use to be activated by "mc_empty_1" is inside "mc_gallery_content"
thought i could use this code to get "mc_empty_1" to initiallize a function: _root.mc_gallery_content.mc_empty_1.onRelease = function() { //preform function xyz
Im trying to make a image gallery, that then the i get to the left side of the movieclip is moves to the left and when im in the right it does that way
I already made this using tweens... But i want that while im over the left side of the movieclip it keeps doing tweens to the left... same for the otherside ofc
Im not finding a way to keep it always doing the tweens... i have to move mouse so it animates.
I'm loading an MC and then attempting to activate a function onLoadComplete in order to hide the MC. The function is actually reused several times through out the "app" I'm building. I know the onLoadComplete works because I tested it, but the function isn't being activated
Code: var msgMC:MovieClipLoader = new MovieClipLoader(); var msgMCL:Object = new Object(); msgMC.loadClip("message.swf"+"?uniqueID="+getTimer(), msg); msgMC.addListener(msgMCL);
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
time-out feature on my timeline? I have certain spots in my timeline where i want a time-out to occur after 5 seconds of the user not clicking anywhere or doing anything. I am familiar with mouse-listener functions... but only used them for something that i was going to make time-out after an already pre-determined time...
I'm trying to access this function from another timeline. This function resides on the root level and I want to access it from a button within an MC on the main timeline. How can I do this?
I have a MC1 with a class that controls it on my timeline. Within this MC there is a second MC2 which contains a short animation. During that animation i need a trigger that will call a method from the class attached to the main MC. MC1 is linked to CLASSMC1 contains MC2(short animation)MC2 calls a function in CLASS
I have a function I want to call (just once) when the main timeline enters frame 6. The function is also on the timeline. How can I do that without a listener? Or what listener would I use?
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);
im attempting to keep it as portable as possible so its easier to edit later, and i dont have to go around copying/pasting too much code. - i'll cut to the chase..
On my main timeline, i load all the image-file names, as variables.. using loadvars into thumbnails, which ive given instancenames Loader_1 to Loader_20, inside these thumbnails is the Loader component Thumb_1. Here is the code on the main timeline, to load these variables.
Code: BigLoader._visible = false; var my_lv:LoadVars = new LoadVars(); // load variable function
[Code]....
how i could make this more portable without -completely- changing the format its in [so i can still understand it]
I want it to act on all the instances of the movieclip it is contained within. It is only acting upon the last of the instances that was loaded or had focus... I'm clearly missing something or am trying to achieve something that isn't capable of working...
I am trying to adapt to AS3, and I am new to writing packages. I have my external .as file, and in there I have a bunch of functions. I need to call a function written on the timeline.I realize I need to use dispatchEvent, but I'm not exactly sure how. In the package, I currently have:
Code: public function autoNextPict(e:TimerEvent):void {
What I want to do is take the basic functionality of this tutorial (card flipping) and trigger that action on the timeline to create an animated movie rather than something that a user with a mouse interacts with.flashandmath {dot} com/flashcs4/flip/index.html(the forum won't let me directly reference the tutorial I'm working with because i'm a new member)The tutorial uses a custom class, I'm guessing that i need to remove the eventListeners for the mouse events and call one of the functions on the timeline specific to the variables on the scene, like "card1.initApp();" ?
I've been tinkering with it for 2 days now but can't fix it! I have a button that controls a movieclip (showstations1) that fades in and out. And i have a second button (button5) that gotoandplays on the main timeline. The trick is I want the second button to fade out the movieclip if it's visible before it gotoandplays the main timeline. [code]...
I have a class called TestMover and it has a function in it which changes its X position. I would like to execute that function from the main timeline. It worked when I used static function but it threw an error when I tried to change the value of X.[code]...
Is it possible the class can call the function that in the timeline?coz I want to use freetransform actionscript to apply "myMovie" class function ....but the error msg: **Error** There is no method with the name 'addFreeTransform'.in myMovie.as
Code: class myMovie extends MovieClip{ static var EmptyMovieNum:Number=0;
as im just starting out.for example i have a graphic i need to rewined (instead of tween backwards)when the button is clicked it calls this function in timeline
mc_on_stage.onEnterFrame = function() { if (rewind == true) { prevFrame();
I decided to rewrite my question from an earlier post...I'm using the TextMetric class: URL...The code below currently resides on the attachedMC timeline, and is written twice with different variables for each time called for each dynamicText.[code]What i am trying to do (emphasis on trying) is write the code on the main timeline, so that it can be called from any attached MC, a sort of global function if you will. Another thing to note is that there are multiple dynamic Texts using the function at the same time.[code]
Everything is in the title!I am making an animation, followers know that I am making a turning envelope, and I need that it returns to its initial position when the mouse rollOut but from its actual position in the animation, so an inverse timeline playing would be perfect! But does it exist?
I have a function within another function. Is it possible to call the function inside the function from the main timeline. See example code. I want to call the function called sub from outside off the function called main.
Code: function main():void{ // Do something function sub():void{ //do something }}