I have a movie clip that I am turning into a button that when it is clicked it updates a text field with the string that is associated with the movie clip.
Do I have to create an Object on that movieClip and assign a var with the string?
Hey i am making a quiz which is going to have 20 questions and i have about 40 question in the questions array. make a variable which will hold the 20 random question so
for eg
var arrQuestion:Array = [ 40 questions in here separated by commas] var randQuestions:int = arrQuestion.length-1;
but that just sets randQuestions to the arrQuestion's length now how do i set the variable randQuestion with 20 questions that are randomly picked from arrQuestion.
I've got a symbol on stage and a button. The button rotates the symbol CCW half a degree. Code: on(release){ mySymbol._rotation -= 0.5;} I wanna add an on (press and hold) action on button so that the symbol will be rotated continuously when the button is on hold.. I can't make this work for over a week now.
How do I create a variable which can hold multiple movie clips? I have 4 movie clips called: char, ceil, plat, and wall. I want to put them into one variable called gameLevel. Something like: var gameLevel: char, ceil, plat, wall; <<but this doesn't work. So instead of calling each of the movie clips separately I can just use gameLevel (if I want to, for example, move all the objects to the left 5 pixels.)
I want to declare a variable on the main timeline that can be called from anywhere in my movie. So, _global var should be the right approach. I want to declare a movie clip 'MC1' "open", or "closed" so that when it is revisited, my flash file knows the user has been there before and performs a different task from the one it does when 'MC1' was first encountered. So, i need a 'if' statement to run from the variable, when the playhead encounters the movieClip.
I have been banging my head against a brick wall regarding the following problem which must be very simple to fix, just can't see the answer.I have a class assigned to a movieclip called canvas. The class is called drawClass. I have called the instance of canvas on the stage 'drawingCanvas'.When I trace "drawingCanvas" I get object drawClass] which is fine. Tracing drawingCanvas.name gets me the instance name 'drawingCanvas'.This is a String variable.Basically what I am trying to do is pass the MovieClip name to another class. In my example the class 'toolBar', which can then interact with the MovieClip.
The problem is passing 'drawingCanvas.name' results in a String, so I get an error saying :TypeError: Error #1034: Type Coercion failed: cannot convert "canvasArea" to flash.display.MovieClip.I can't for love or money find a way to convert a String variable to a MovieClip variable! I have the name of the MovieClip, I just need to tell the toolbar class. But I can't find a way of doing this as the instance on stage is an object of drawingClass, not a MovieClip (unless MovieClips with attached classes are not treated as standard MovieClips?).
I am brand new to AS3 and just about muddled through with AS2. I have a problem which should have a simple solution but everything I try gives errors.I had a load of buttons on the main timline which worked fine. I have moved a load of them into another movieclip called flyoutMenu. Now none work and I get the error:Error #1065: Variable about is not defined.This is the code stripped down to one button:[code]
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
This is something I'm experimenting with, but haven't seemed to figure out... I have several MovieClips, basically the same, only different colors. As each one plays, I'd like it to "overlap" whichever one is already there. Right now I have each button linked to a gotoAndPlay function, but I don't think that will ever get me what I want. You can see how I have it now here: [URL]
Instead of having the content MovieClip go back to all white when a button is clicked, I'd like the preivious one to remain, and get "covered up" by the new one. You continue to see the old color, and the new color overlaps it. I have a feeling I need to use a variable and then addChild, with a removeChild for the old MovieClip after the new MovieClip has loaded, but I'm not getting any good results yet.
I have a loop that creates movie clips where the movie clips are named mc_+ x for say x = 1 to 10 so the movieclips are called mc_1, mc_2.....mc_10.
What I need to do is the know which one of the movieclips is clicked on but more importantly the number i.e if movieclip mc_2 is clicked on then I need to use the value 2.
At the moment I am sending the value of x to be displayed in a text box within each movieclip:
_root.search.textfield.text = x;
Then I have a piece of actionscript that uses the value of x but I don't seem to be able to "re-read" the value of x back with:
var t = _root.search.textfield.text;
what I want is t = x is it to do with strings and number variables?is it possible to send the variable x to each movieclip so that it can be called from within each movieclip instead?
I have a long path that i'd like to use as part of an array, so rather than inserting the full path over and over again, I'd like to create a variable that I can use in its place. Unfortunately this doesn't seem to work for me and i'm beginning to wonder if its possible.
My actual project I need a event configuration wherein I can hold a keyboard key down and move mouse. While trying to implement this, I recognized that the flashplayer begins to lag, saving actions in buffer and playback them when the KEY_DOWN event is already over...
For example I have a PHP Code: stage.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler, false, 0, true);
And in the handler I got only this: PHP Code: private function keyDownHandler(event:KeyboardEvent):void { if (event.keyCode == 88) manoverDrive = true; }
I also do have a PHP Code: stage.addEventListener(Event.ENTER_FRAME, enterFrameHandler);
In this enterFrame I do animation for a movieclip that is animated regarding the mouse and keyboard action and events. Now when I hold down any kind of key the animation of this moviclip gets slown down if I hold down the key for 10 seconds and then lift the keyboard key the mouse movements I made before gets somehow saved and the animation got a playback of the mouse movements. I removed the keyboard eventlistener and the behaviour stays. Is that an official flash player Bug?
This seems so simple and yet I can't figure out why my MovieClips won't hold their instance names.[code]And I do this for each button (I know I can do this with XML but nothing seems to work right now so I've broken it all down to see what's going wrong).[code]And the trace statement gives me "instance29" or some such. Can't seem to get the name to stick. I've tried creating getter and setter methods in my button class to access a label property and use that instead of the name but it comes out undefined when I trace. I'm having trouble finding anything on the forums though I'm sure it must be there. Could someone point me in the right direction. I don't need a full answer, just an explanation of why this is happening.
I am trying to figure out how to make a script that allows you to click a button, and once it is clicked, the button remains in it's over state. Then, when another button is clicked, the old button that was in its over state reverts to its off state, and the newly clicked button then appears in an over state. How would I do this?
i have a set of 6 buttons and upon clicking one of the buttons i want to tween the others that were not clicked to fade out. how do i do this? i know how to do the tween part but i dont know how to get a hold of the buttons that are not currentTarget...
A) When I hit the UP key to jump the character continues to move up as I hold the key down.
B) When I stop moving forward the frame of the stickman symbol for walking keeps playing and I want it so the frame labeled "idle" will play when I release right or left.
C) Is it possible to have an action for holding 2 keys at once? I want to have it so i can hold SPACE and RIGHT/LEFT to run.
I have a sound bite (~500ms) and want when a key is pressed and held the sound is played.However, what I appear to be getting is the sound triggered to play every time the key down event is triggered (not suprising & makes sense since key is held down). This creates what sounds like several copies of the sound being played at same time only shifted slightly. Very ugly sound btw.My thought is to have a way that even if key is continued to be held down the sound bite is looped but not overlapped.Tried several things such as using Event.Sound_Complete listener, tracking the position, transformation things, timers, etc without success.
I have an array that's pulling movieclips from my libraray using Linkage IDs. How do I change this so that it's pulling the images from an xml file instead in order to reduce file size?XML file:
I have about 10 as3 coded buttons that use the same AS3 coded parameters to control the font and filters of their text fields. I'd like to create a global function to hold these parameters, and then just call the function within each button, and then also code each button to have it's own myText.text = "blahblah"; I can set up a global function no problem using an external as file, but am having trouble getting Flash to accept the parameters. For example, the following parameters work fine when used within the text fields of the buttons, but as so as I try to put them in an external global function, Flash doesn't like the parameters being external:
I have one question about pureMvc. I use pureMvc to build an engine, in the engine init part i have an requirement
1) moduleA must init firt 2) moduleB , moduleC need init after moduleA init complate. 3) moduleD need init after moduleB & moduleC init complate. 4) moduleA , moduleB , moduleC , moduleD all extends Proxy beacuse the four system all need to send notifiation ,but no need to listen it.
But to fit for the requirement I can't use command to do it, because they have ini order and also they need to remember current state(ex: moudelB is init Complate but moudleC is not init complete then can't init moudleD) but command is stateless. The best way I think is use one Mediator to do it, beacuse it can both listen and send notification. My question is :
1) Is this a good way to use one Mediator to do it? 2) If use Mediator is good way, then when it hear first moduleA is init complate registerCommand(FIRST_MODULE_INIT_COMPLATE , initStepTwoCommand); sendNotification(FIRST_MODULE_INIT_COMPLATE); removeCommand(FIRST_MODULE_INIT_COMPLATE); Need to do things like that way or just do the inti logic in the Mediator?
this is supposed to return an XMLList of Groups anywhere in the xml. This works fine if I have more than one , but fails if there is only one .Am I wrong in my assumption that it should return one? I trace xml..Group.length() and it is 0, but the Group is definately in the xml.Any ideas on how you can get one or more Group nodes from my xml?
I got a for/foreach loop the calls a function inside of it. The prolem is that the function being-called doesnt fininsh it's job before the loop goes over again/ Here is my code:
[Code].....
As you can see i want to add an item (notfriend) in MYFRIENDS unction, "notfriend" is defined inside the loop, but by the time "MYFRIENDS" function finish loading the item already changes to the next item even though i was originally refering to the previous item. Is there a way to maybe hold the FORloop until "myfriends" function finish loading.
I wanted to use Eventlistener on "myfriends" function , but then what do i do to stophold the loop? all i know is BREAK-which destroyes the FOR-LOOP and CONTINUE-which continue the loop from the next iterate.
In my Flex 4.5 application I have a TitleWindow Settings.mxml, which is popped up by the PopUpManager.Once the user has changed some settings, I not only need to save them to a SharedObject, but also to apply them to the main Application itself - so that the changes are visible to the user immediately.For example I need to call its method hideApp(somevalue);
The spark.components.Application does not seem to have any static/singleton methods to get ahold of it.So how do you do it? how to declare, that an MXML file implements one or several interfaces?
package { public interface Hiddable { function hideApp(value:Number):void;[code]....
besides the main Application I have a SettingsTest.mxml Application in my project for"unit testing" that particular functionality.
I'm new to concepts of AS 3 but i'm stumbling through it.So i'm looking to the Fourm for some Mentor ship
I have a simple Regular Flash slide show with 4 slides and an intro label. I need my Intro label to have a Timer or Delay event that holds on the "Intro" Label for a certain amount of time before the Timer expires and calls a function that tells FLASH to go on to slide "Slide 1" label.
The trick is i need this delay to run everytime the Timeline is at the "Intro" label as i have an animation playing while the timer or delay event counts down and finally at end goes to label "Slide 1" Can anyone share some simple code snipets that would point me in the right direction to accomplish this using AS3 ?
Im new to AS3 (like 5 hours new) and Im after getting stuck with something Im sure is very simple, but Im just not having much luck finding a solution. Basically I have a button which I want to click and hold and then make a movieclip move up and down the y axis. This is what I have so far...
[Code]...
Im sure Im probably going about it in a bizarre way, Im just trying to do it in a way which makes sense to me. So far its working fine for single clicks, so I click the button and the "upwards" function is called which moves the movieclip upwards by 10. The problem Im having is getting it to move continously when the button is clicked and held. Ive read a few possible suggestions relating to loops and setinterval but I just cant seem to make sense of them in a way that applies to what I want to do. Apologies if this is really simple but Ive literally been teaching myself actionscript for all of about 5 hours in total so far and I just cant seem to get past this hurdle.