ActionScript 2.0 :: Making Mc Disappear?
Mar 8, 2006i need to make the drop down menu dissapear when my mouse goes outside the box.
i'm using on (rollout) {
_root.menu._visible = false;
}
[code]....
i need to make the drop down menu dissapear when my mouse goes outside the box.
i'm using on (rollout) {
_root.menu._visible = false;
}
[code]....
How can I make a button dissapear when I click it? I tried:
on (press) {
score+=1;
this._visible = false;
this.enabled = false;
}
but it just made everything on the stage dissapear.
I am making a game . all the code is working , but , i can't make when the bullet hit the enemy , the enemy will disappear and start from top again.
View 5 RepliesI use flash cs3 and as2 for the game.
1:Basically, I want to make a little circle so that when I put my mouse over it it will give me 10 points then disapear, so I wrote this in the movie clip actions:
Code:
on (rollOver){
_root.score += 10
mc1._visible = false;
}
2: I would also like to know, how do I make a movie clip with a code but when I copy it the actions won't disapear. That would save a lot of my time because I wouldn't need to copy/paste the code in each movie clips.
But when I test the game and put my mouse over it, it just adds me 10 points but it doesn't disapear.
If I have a button on my screen that I want to make a box appear when clicked, how would I go about doing that? It also needs to disappear after 10 seconds. I am not sure if this is an issue, but it needs to appear on the screen while everything else is happening underneath it. So the rest of the animation must continue on as this appears above it.
View 7 RepliesI'm experiencing a very odd problem. I have n sprites that I'm drawing through Actionscript 3. There is a DropShadowFilter (also happens with BevelFilter) applied to each sprite. With 0-20, there is no problem. Once I get to about 30, other nearby sprites start disappearing. The greater the number n, the more external sprites disappear. If I toggle the visibility (even without a redraw), the other sprites start reappearing.
View 2 RepliesIs it possible to make an idle mouse dissappear after about 2 seconds, but if it becomes active again it reapears? I figure there is but I don't know the functions I would need to do it.
View 9 RepliesI have created a list of MC's with dynamic text via xml to create a list of mc Buttons. All works well as I wanted, but as th elist is too long i want to create a scroller for these, anyway when I apply the mask and test this all the text dissappears, they are there as the links all work but the text seems to have turned invisible, want am i doing worng.
I am creating each mc button dynamically like:
var venueBtn:MovieClip = new MovieClip();
var venueTxt:TextField = new TextField();
etc
why the text disappears when appling a mask
Is it possible to make an idle mouse disappear after about 2 seconds, but if it becomes active again it reappears?
View 9 RepliesIn it I have a few text fields on a bar that I use to display some dynamic info. I have had them set with embedded characters (Upper, lower, punctuation, and numbers). One is Verdana 14 and the other is Verdana 10. Everything has been working fine with no problems and then today i go to test the scene and they completely disappear!! I traced them and thier visibility and they seem to be there but they don't show up. When I turn off the font embedding they are visible again. I can't seem to figure out why this is happening.
View 1 RepliesI have got working well. when a value less than 18000is added to the rvalue input text, the raterelief_txt message appears. but then if i add a different value over 18000 the raterelief_txt stays and the yousave_txt, pound_txt and results_txt appear as well. what I want is for them to disappear according to the value.
here's my code:
calc_btn.addEventListener(MouseEvent.CLICK, calcClick);
rvalue.border = false;
rvalue.restrict = "0-9";
[code].....
For a project, I'm making an interactive side scroller.You move the character with the arrow keys and press the space bar to interact with things.So far, I followed DexNote's tutorial on YouTube.I thought that I would make the interactable objects as buttons, while the mouse focus would be on the character and when you press the space bar it make a mouse click in that area.The trouble I'm having now is that I don't know how to make the space bar trigger the "interactions."
View 1 RepliesI want to generate large text files, basically 4 columns, several thousand rows, of numbers. Making an array with all this info in it occurs farily quickly, it's getting it to a displayable format that takes a really long time. Right now I use something like this:
[Code]...
I got it to work perfectly on another flash file, but I can't get it to work on this one. The concept is the saem but the application is not, so I can't copy and paste. Anyway, this is the problematic code.
Actionscript Code:[code].........
Clicking this button results in a new Machine Gun being created. However, if you click on one, the others disappear.
Ive been having troubles unloading some external SWFs. I know that in order to totally erase an SWF from the display list and memory I must to rip off all its references. But Ive got this SWF on stage, when the code is executed the SWF is gone for good, but in the second case when Ive got it loaded by pressing the load_intro_button the SWF doesnt go, even knowing that the function is exactly the same (Copy/Paste ) as the first one just under different names. Since Ive erased everything from the URLRequest, listeners, timers, and unload the swf, Why the GC doesn't take care of it as it did in the first case?.
Code:
//First Case
var myIntro:Loader = new Loader();
var myIntroRequest:URLRequest = new URLRequest("intro.swf");
[Code]....
I've nearly sorted my previous problem, I just need a bit of help with getting the rollover image to disappear again once the mouse has left the rollover area. would anyone be able to take a quick look at the fla?
View 2 RepliesI want my button to disappear after you click it. I have mulitple buttons on the same stage and as each button is clicked, I want that button to go away.
View 2 RepliesI made a game and i had 3 faces on it. Now i added one more and when i play it, i see only two.
[Code]....
In the actionscript below I am trying to get it so that if the rateablevalue text field is less than 18000 then the raterelief_txt text appears, but if it's more than 18000 the yousave_txt, the pound_txt and the results_txt appear. I want them to disappear if a different value is added afterwards.
[Code]...
All it is is an swf that has balloons randomly moving upward. Each balloon is a movie clip that has another "button" movie clip inside of it.As you click on each balloon, the balloon pops and then recreates itself.The only problem is that the button inside the balloon is not acting like a button the entire time. The upward movement is being called through an enterFrame event listener and the use of the button goes in and out as the balloon moves upward. It's a pain because you have to click the balloon multiple times in order to get the balloon to pop. Does anyone know why this is or if there is an alternative to enterFrame? You can currently view the game here to see what I mean. You'll notice the balloons aren't always clickable. You can download the FLA here.
View 3 RepliesI export my Flash movie and upload to web. After a certain amount of time (maybe 1 minute?), the images in the SWF movie disappear. Anyone else experience this and know the reason why this is happening?
View 19 RepliesMy flash is working fine in all browser except ie6. During loading of page I see flash fine in ie6 but once page is loaded flash disappears. Looked everywhere but can not find solution. in ie6 downloaded latest player WIN 10,3,181,34. version detected at [URL]
[Code]...
I got the first part to work now upon click how do I get the picture to disappear? So click opens but how do I click to make go away?[code]...
View 2 RepliesI can't get the rotator to display the images loaded from xml file. What i mean to say is, the images display, but after the 2nd rotation, all the images dissapear and I have no clue why. I have included the zip file of my flash files.
Here is my AS file:
Code: Select allvar arrayBoxes:Array = [picBox0, picBox1, picBox2, picBox3, picBox4]; // temp array to load 5 boxes to see if xml data being pulled and placed
var movRotBoxes:Array = [movRotator.boxRotate0, movRotator.boxRotate1, movRotator.boxRotate2, movRotator.boxRotate3, movRotator.boxRotate4]; //array
[Code]....
I have a map application where the user mouses over the various counties, and clicks on it to zoom in. I am having a problem synchronizing the background change with the county zoom.referably, I would like the background to zoom out with the counties as they zoom, but having the background fade to white would work just as well. I created a movie clip of the main map (background) to zoom in, but I don't know how to play 2 movie clips at once.You can see it in action here:
View 1 RepliesI am a learner. I am using one object which animates from a corner and comes to the middle of the stage (Using Motion Tween for animation). What I need is when it comes to the middle of the stage it should disappear from the stage. How it is possible?
View 1 RepliesI have a movieclip - instance name "popup clock" . The frame on which it is on has the following code:
Code:
popupclock._visible = false;
The movieclip starts off invisible like it should. I also have a button which has the following code:
Code:
on (release) {
if (popupclock._visible=true) {[code]..
The code should allow the button to make the moveclip appear and disappear but it doesn't work?
I have a button going across the stage and when clicked it is supposed to disappear. It usually works that way but it seems that if it is going to fast or not hit just right the button doesn't work. I know it is being hit because I have a counter counting the times its hit and how many it is missed.
View 2 RepliesI am trying to get certain objects in my movie disappear or be removed from view when you enter full screen.
View 1 RepliesProblem: global variables disappear.I am using CS4 but still coding in AS2. I am on a Mac, latest OS.I loaded and then trace my _global variables for three screens and they follow me fine until,.... then on the the screen i have tiny bit of code:[code]Could it be the level 99 I use. I tried using 0 and it did not work?
View 1 Replies