ActionScript 2.0 :: MX: Switch Display Multiple MCs Using A Hittest?
Aug 17, 2005
prepare the area with instances of the 3-people-MC for the "maximum amount of people" case (covering the whole area).have a shape in their midst, filled with a transparent fill (or have it be invisible, if that would still work with a hittest).resize the shape mentioned in "2." according to how many people I really want displayed (change width and height).have a function nested in each 3-people-MC that checks whether or not that MC is hit by the shape from "2.".make the 3-people-MC visible or invisible according to "4.".Is that doable? how would you write that? Before, I was just working with a mask- but I am having trouble checking if the mask hits the people MCs or not
View 6 Replies
Similar Posts:
Jun 12, 2009
how do I use switch method with hitTest?
In this case I want to use the hitTest with the same intent of the _droptarget:
Code:
on (release) {
switch (_root.object6.hitTest) {
case _root.jogo.labirinto.fenda_MC :
[Code]....
how I use swtich with hitTest or the correct way to tell the program the path to drop the object in its target.
View 1 Replies
Apr 5, 2011
I'm afraid I know the answer but I wanted to check first.
I want to run a single function based on multiple values.
[Code].....
View 2 Replies
Dec 14, 2005
Is it possible to make a multiple switch to check more than one case at a time? I'm trying to use a case statement to check both frameName and buttonNumber to check boxes ticked for multi-choice quiz (there can be more than 1 ticked per question).
I've used various combinations but they only partially work. This is one of the latest (I'm still tinkering).
[Code]...
View 4 Replies
Dec 31, 2007
I have this switch here .. which doesn't seem to be working..
Code:
Power = 100;
switch(Power){
[code]....
View 4 Replies
Dec 3, 2009
I am using this collapsible panel - link. Unfortunately, I have a problem using it with application states. I have a state where this panel is visible, when I switch to this state, this panel shows, when I click on it, it opens and its content shows. If I switch to another state (this panel is removed from display), and then switch back to the previous state, the collapsible panel stays open, but its content disappears. In other words, the collapsible panel's content doesn't persist through states. Anyone know what the problem is? Or is there another collapsible panel that can work around this issue?
View 2 Replies
May 14, 2009
I have a movie clip called frog who moves along the screen, I want him to jump when he hits any other movie clips. I can make him do so with the code below, the problem is that if I write the same function for the other movie clips it doesnt work, it still works on the first one but none others. I have tried attaching an onCilpEvent on both the frog and on all the other movie cilps so no avail.
function hitBaby(){
if(_root.babyWord.hitTest(_root.frog)){
_root.frog.gotoAndPlay("frogB");}else{ _root.frog.gotoAndPlay("frogA");}
[code]....
View 3 Replies
Aug 29, 2009
I have a menu movieclip and an externally loaded swf on my main stage. The menu mc needs to control the externally loaded swf. For example the swf plays and pauses, then when any of the menu buttons are clicked the swf needs to play thru and be removed. currently I am dispatching an event for each button clicked with a switch statement. In the main timeline I need to listen for each of theses events and based on what button is clicked proceed to the correct content frame. How can I listen for different events and run one function that based on which event is registered perform a task with a switch or if statement?
View 4 Replies
Jul 7, 2011
I am running a hittest on an array of thousands of MCs a little a part, due to the nature of this sometimes two can be hit at once.How would I narrow it down so that the one which is hit the most is the one returned value?
View 1 Replies
Jul 18, 2010
How to apply the hitTest to multiple objects for a side scroller game. Right now, I have the MC:hero hitTest against the MC:ground and MC: platform. Problem is, if I want multiple platforms (IE: copying and pasting the orginal MC: platform) he will only hitTest on the 1st instance (platform1). I've since read up on it and learned that Flash will only hitTest on that first instance. But is there a way to make that MC: platform universally hitTest my MC:man? As it is right now, I have to code into the MC:man instance each and every platform instance. It's not a big deal, but after about 5 platforms, the codes seems unnecessarily long. I'm new to AS so I know there's got to be an easier way. Maybe arrays or something?
View 12 Replies
Jun 29, 2009
Im trying to make a small game. Could someone take a look at the CS4 and CS3 fla files attached and tell me how to make the game reset when the red circle touches the block boxes.
View 7 Replies
Jul 1, 2009
I have many black boxes fallling down and i want the game to reset when the black boxes touch my red circle. I used this code for my boxes:
ActionScript Code:
this.createEmptyMovieClip("canvas_mc",10);
myInterval = setInterval(addbox1,500);
function addbox1() {
[Code].....
View 9 Replies
Feb 2, 2004
say I have 3 movie clips I want the easiest way to do a hitTest with them... The easiest way I thought of was this but it doesn't work
[AS]
onClipEvent (load) {
mouse.hide();
walls = _root.one or _root.two or _root.three;
}
onClipEvent (enterFrame) {
[Code]...
It's just a quick example of what im trying to do. one, two, and three are movieclips. Is the way I am trying possible? Or is there some easier way I could go about doing this besides writing it out for each movie clip?
View 5 Replies
Feb 2, 2004
I have 3 movie clips... I want the easiest way to do a hitTest with them... The easiest way I thought of was this but it doesn't work
[AS]
onClipEvent (load) {
mouse.hide();
walls = _root.one or _root.two or _root.three; [CODE]....
one, two, and three are movieclips.Is the way I am trying possible? Or is there some easier way I could go about doing this besides writing it out for each movie clip?
View 5 Replies
Jul 28, 2010
I'll try to make my question pretty short and simple.
[Code]...
So what I'm trying to do is make the character stop when it runs into something. I can do that, but it will only work for one "block" movieclip I put on the stage. What can I do to make this work for multiple "blocks"?
View 2 Replies
Jun 7, 2010
[Code]..
I want to use the above code (obviously with more meat inside of it) on multiple instances of the same symbol, but when I name the instances "wall" only one of them actually performs the hitTest. Is there a way to pull this off without having to perform a hitTest on every instance?
View 0 Replies
Dec 5, 2009
I have a movie it is a triangle.I duplicate it and I want to hitTest on the first triangle movie clip and I added 3 different line movie clips on the 3 side of triangle.I tried to write a code something like that.
if(firstTriangle_mc.hitTestObject(line1_mc,line2_mc,line_3mc){
trace("Ok");
}
but I've got error.I think it is not allowed hitTestObject for multiple Movie Clips.So is there anyone have an opinion about it?What should I do?
View 5 Replies
Feb 15, 2010
By using the attachMovie function, I create multiple entities of the same movieClip. Is it possible to detect collisions from the same, but multiple movie clips (And, with different Linkage Identifiers with each entity of the same movieClip.
View 3 Replies
Jan 4, 2011
I'm actually working on a multiple collision detection in actionscript 3.0, using pixel collision for a game for my assignment, where an enemy patrols around and searching for the hero. So, i draw a line between the enemy and the hero, to check whether there's some collision happened between those two. if the line colllides with an obstacle such as wall, door, etc. enemy will not be able to see the hero. When i tried a single line collision with a wall (one object only) it works perfectly.
But here's the problem. For the multiple objects collision (several walls and doors included), i added those objects in an arraylist, When i used for loop to check the collision between the line and those objects in the arraylist, none seems to react , except the first object in the arraylist or index 0.
Is there any simpler way to do the multiple collision detection?
View 2 Replies
Feb 19, 2010
Is there a way to detect if a dynamic text field that has basic english characters embedded can't display some foreign text, japanese for example?
So I can then switch the text to display in an arial device font text field.
Sorry if this has been answered b4, but I can't find it if it has.
View 0 Replies
Mar 20, 2009
The Setup: For each movieclip the hittests a set of "target" movieclips an array is given a value. If mcIcon1 is dropped onto mcTarget1 the first number in the vacant array is given the value of one. The Issue: If I remove mcIcon1, for example, from the mcTarget1 movieclip I can't find a way of just removing the 1 from that array without the rest of the array numbers being reset.
[Code]...
View 9 Replies
Jan 15, 2009
i just would like to know how to create an "hitTest" script inside a movieclip that is actually part of that hitTest code?I mean... I have mc A, and mc B. and the current hitTest code im using (that is on the timeline) makes mc A, destroy mc B when collide with it... but there are many mc B on the stage (with the same instance name) so, when mc A collide with one mc B, it destroys ALL mc's B... but i want it to destroy only the mc B that he collides, not all the others... maybe an hitTest script inside a movieclip B would work (somethig like "if MC A hitTest ME = i die" (not all the others)).
View 1 Replies
Apr 12, 2010
AS3 I'm trying to load content from an XML Document into a Flash Presentation. My AS is in the top layer. This layer spand the entire document. Layer two is set up with keyframes every 10 frames. Each keyframe has a text box on it. I am trying to load the xml into each of these frames. Here is what I have in the AS Layer.
[Code]....
The content shows in the first text box on the first frame, When the playhead hits the second keyframe at frame 10 the xml isn't loaded in that text box. The text box instance names reflect what is in the code. When I put both text boxes on frame 1, the content shows..! What do I need to do to get the content to load in each text box?
View 2 Replies
Jun 30, 2011
Is it possible to display multiple attributes in a mx:Tree component? The XML looks like this:
<item comment="blabla" author="user1" date="21.05.2011">
<item comment="blabla" author="user2" date="21.05.2011"/>
<item comment="blabla" author="user3" date="21.05.2011"/>
</item>
I want each node to display the comment, author and date, on separate lines.
I am planning to use this to display something like the facebook wall: someone writes a message and the other users can comment.
View 2 Replies
May 11, 2010
trying to swap various children or change their index in the display list, and I think I might have painted myself into a corner (get ready, this one should blow your skirt up).I've got the following sequence of events:1. A pre-loader.swf (the parent) loads main.swf and about.swf, then adds main.swf to the stage.2. When main.swf is added to the stage, it displays all its content, including various buttons.3. When the "about" button is clicked, main.swf calls a function in pre-loader.swf that instructs pre-loader.swf to add about.swf to the stage.4. When about.swf is added to the stage, it displays all its content, including a text field.
At this point everything *looks* fine, but unfortunately the buttons in main.swf no longer work. They're visible, but they're no longer responding to mouse over/out/click events. I think maybe the buttons are being "covered" by about.swf (or its text field), so I'd like to place the text field below the buttons in the display list. However, since the objects are in different SWFs, I'm having all sorts of problems accessing them.
View 4 Replies
Aug 4, 2008
I want to display an external swf across multiple scenes.whether it is in the background or whether i put one code on the first scene for the movie clip to load it and a different code for the same movie clip on the other scenes.
View 3 Replies
Oct 30, 2011
What I'm trying to do is create a program that, depending on 2 variables, multiplies another variable by a static number. Heres the code I have so far:
[Code]...
View 1 Replies
Dec 10, 2003
I want this on an MC:
[AS]
i = 0;
switch(thing){
case 0:
[code]....
Basically what I'm wondering is, will I lose the value of i in the first switch once I'm out of the switch? Can the second switch read the 1st switch?
View 8 Replies
Oct 29, 2011
Im trying to create a program that, depending on 2 variables, multiplies another variable by a static number. A friend suggested I use case/switch instead of if/else statements,which is what I was using before.
[Code]...
View 1 Replies
Apr 7, 2010
I am trying to adapt this search code to display the results one at a time.Right now it displays all the terms it finds all at once and separated by commas. How would I adapt the code so it displays one item or term at a time.
[Code]...
View 9 Replies