ActionScript 3.0 :: Make Var Visible To Two Functions?
Jul 7, 2010
following code:
[Code].....
even once i'v executed "getMcInfo", I get "null" from the trace statement in "changeBorderColor", I should get [object blabla]. I know this has something to do with the scope of the variable "MC" but i just can't fine a solution..
View 1 Replies
Similar Posts:
Jun 6, 2010
I've got a project thats getting a bit big, so Im taking the actionscript out into separate as files. I want all the basic functions to be in BasicFunctions.as and the make a library for more specific functions. I find that a lot of people use the import statement but I cant get that to work with a simple Hello World trace, yet the include statement works fine (see attached). I understand that import/include work differently, but which is the better method? If import, then is that heavier to work with. Any rate, what's the best way to organise code when it gets to the 1000+ lines?
[Code]....
View 9 Replies
Aug 11, 2009
How can i make a combination of keys make a movie clip visible? Basically i want something like this to work:
if(Key.isDown(Key.Alt && Key.A)){
reminder._visible = true;
}
So when someone presses the Alt and A keys down at the same time the 'reminder' mc becomes visible?
View 2 Replies
Jan 29, 2010
Is it possible to have a MC go to ._visible=false after a certain amount of time? So you would roll over it and let's say after 2 seconds it would become not visible. Is this to do with the setInterval function? Actionscript knowledge is slim so be gentle.
View 9 Replies
Jan 17, 2004
i have this script to animate my button. so fare it works fine. the buttons are mc and have three states: one for up, one for over and one for press.when first loading the swf, i want to have the first button already in the 'press' status.i tried to do it with this:but1.mc_butup._visible = false;but that confuses my function of the button states.this is the scrip i have so far:
Code:
var buttonActive;
_global.buttonRelease = function(which) {
[code].....
View 2 Replies
Mar 21, 2010
I want a movie clip to be visible for 3 seconds then invisible then visible again after 3 seconds.
View 4 Replies
Jul 14, 2009
I would like to make an object visible off stage. So that the object is floated over the HTML. Any Ideas. I don't seem to be able to do it using Transparent Window in the HTML publish options and think it may only be possible using javascript (layers) but I would much prefer to only use flash so if anyone has a idea I'd love to hear it.
View 2 Replies
May 17, 2011
I have a quiz and when the correct answer is clicked i want to show a correct answer mc so when the answer is clicked a "correct" or an "x" will flash up for 1 second. I have to functions on for right (celebrate) and one for wrong (wrong_answer)
[Code]....
View 2 Replies
Jun 6, 2010
I'm trying to allow all things oitside of the stage peramiters to be visible in the browser screen so certain elements can be longer than the stage and still be shown Can't remember if it's a flash thing or an html thing.
View 6 Replies
Jul 28, 2010
I have a map of states state when a particular state is clicked on, the fla centers on and zooms to that state. When you click on a state a unique ID is pulled from an xml. Using this ID, I can then call all the counties that are part of this state through the county's xml which is also loaded on my stage.or example if I click on Arizona, it zooms and I get a trace of all the instance names of the counties within Arizona.
//call all instance names of Arizona counties
cldcnfips=(cntXml.Records.Record.(STATE_FIPS==cldstfips).afips.children());
trace(cldcnfips);
[code]......
View 7 Replies
Aug 18, 2011
For keeping the actionscript in the first frame; I'm creating buttons only in the first frame that doesn't change; but I want for some of them to be visible only in certain frames! Is there any code for doing that?
View 2 Replies
Jan 4, 2012
I am making a jigsaw puzzle in flash. But I have a weird bug. There are 25 pieces, 5x5. I am passing in the background bitmapData to the pieces as they are created.
For each piece I create a single puzzle-shaped mask bitmap.
So each piece contains a bitmap whose bitmapdata is the puzzle texture. And each piece has a mask piece.
When I just show the masks, all 25 pieces are drawn to the stage.
But when I use the piece masks to mask out the texture, I seem to have a hard limit to 22 pieces in which the mask is applied. This happens if I am using 25 peices or even 80 or 100. Each time, only the last 22 pieces created will display the texture. [code]...
View 1 Replies
May 27, 2009
I created my own validation control.
[Code]...
When I validate the txtinput and it's not valid, the textarea will appear with some information in it. Now I have several textinput fields in a canvas
[Code]...
View 2 Replies
Jan 13, 2009
im working on flash cs3
my as3 code is:
Code:
function eventResponse1(evt:MouseEvent):void {
gotoAndStop(30);}
lab_but1.addEventListener(MouseEvent.MOUSE_UP,eventResponse1);
[Code].....
View 0 Replies
Oct 23, 2009
I have a file where everything is on frame one, and I have a nav bar. I want there to be a couple of buttons showing up below the main nav bar when one nav button is clicked, then disappearing when any of the other buttons are clicked.
View 1 Replies
May 5, 2011
I have a flash and want to make it only visible when loading 100%. In frame 1 I write stage.visible = fault; or this.visible=fault;
it doesn't work ! the flash still display !
View 7 Replies
Jul 13, 2011
Why doesn't this code work it gives me runtime errors[code]...
View 2 Replies
Feb 18, 2005
I use the following function to make a few mc's visible on the stage with a setInterval.
[Code]...
View 7 Replies
Sep 20, 2007
How to make the cursor visible in a TextField (either flashing or still). I have created an on screen keyboard to use with a TextField so that the TextField doesn't receive direct keyboard/mouse input, but there is no cursor to see where you currently are. I have tried the setSelection() stuff with no luck..
View 1 Replies
Mar 26, 2009
I am trying to set up a code that will make a MovieClip visible = false when you press the spacebar then reapear when you hit the spacebar again. I had it working once but I lost the code somehow ... think I deleted the wrong file. the one time I got it to work I used a keylistener and stuck the code in the action panel on the timeline at frame 1.
I thought maybe there is a way to do the same thing but instead of the frame 1 action panel thing. I thought you might be able to set it up in a movieclip class action script file. I did these tutorials on the kongregate site ... shootorials and they teach you how to make a MC move with the arrow keys which was easy ... they had you make a ship into a movie clip then you created a new AS class file for the ship movie clip. Then they placed the code under the function onEnterFrame() in the ship class AS file which works well when you want to move something ... because it checks every frame.
I can set up what I want in that area just fine ... problem is it fires off every frame .. so my movie clip blinks on and off several times everytime I hit the spacebar. I just want it to disapear when you hit the spacebar then become visible again when you hit the spacebar again.
Seems like this should be a very easy thing to do but I spent all day reading through tutorials and searching google everything I tried all I did was run into one error or another when I tried to compile for a test.
I am very new to all this so the other thing that confuses me is the fact that you can put code in so many different places and depending on where it goes the same thing might be written a different way depending on where you write it.
View 2 Replies
Apr 27, 2009
This time I'm experimenting with visibility. All the tutorials online vary a lot. I'm trying to find something noob proof. I have actionscript 2 and 3. I'm not sure which one to use..I'm just trying to learn how to make a frame become visible and Play when I click on a movieclip.
View 5 Replies
Oct 27, 2009
I have an swf that plays a video (toobplayer component) and has two dynamic txt fields. The video and both txt fields are "fed" from an xml file. I also have a movie clip that loads an image on another layer and is set to an alpha of 0. Is there a way to use a conditional statement to check the video variable and if one is not present to change the image loading movieclip to an alpha of 100. here is what I am working with.[code]...
View 5 Replies
Jul 12, 2010
When on frame 10, make 3 movieclips visible for 7 seconds and then dissapear? How do I write the code?
I'm not sure how to put things together.
clearTimeout(mc4_mcT);
mc4_mcT=setTimeout(mc1_mc,5000);
mc1_mc._visible = false;
mc2_mc._visible = false;
mc3_mc._visible = false;
View 2 Replies
Oct 11, 2010
If there an object is placed on the stage named square and with the document class Main an object was added to square with addchild,if I wanted the square to not be visible but still be the parent while the new object added to square was made visible, how would you accomplish that?
My Trials: It seems if you set the parent to false visibility and then try to set the child visibility to true it disregards that request because the parent visibility overrides it, so the entire movieclip object remains completely invisible.It seems you can make a child become invisible while the parent is visible, but I want to do the opposite.
View 6 Replies
Oct 15, 2010
I'm trying to know if there's a way in ActionScript 3 to load a PNG image and make some sort of button or sensible area applicable only for the visible area of that PNG??Maybe there's a simple way to define a polygonal area on execution time, I mean, dynamically and make it sensible to mouse events??
View 4 Replies
Nov 5, 2010
So I have a movie clip called signInBtn and one called signOutBtn initially,
signOutBtn.visible = false;
but when a user signs in
signInBtn.visible = false;
signOutBtn.visible = true;
But after I do that, I can't click the signOut movieclip. I thought it might be because the signOutBtn was under the invisible signInBtn but that is not the case.
View 2 Replies
Aug 18, 2009
I have problems with webcam streaming in AS2. In AS3 I can make it visible on stage with a Camera.get call and a Video object. Because of some reasons in one of my works I have to use AS2. Can anyone provide me a working code to make visible the webcam's picture on the stage? I use the following code, but it doesn't work:
var cam = Camera.get();
//it's okay I can see the real camera name in the name property
var vid:Video;
vid.attachVideo(cam);
//... and nothing happens on the stage Why?
trace(vid) returns "undefined" Why?
View 0 Replies
Dec 28, 2010
I have an swf file, in which on (release) simultaneously:
1) another external swf is loading: loadMovieNum ("file.swf",2);
2) hidden before object on stage is appearing: _root.object._visible=true;
All is ok, excluding that the object becomes visible 'under' that external swf. How to put it above the swf instead?
View 6 Replies
May 27, 2009
I have made an web site and I put it on the ftp address on the web. The site is full flash. My question is how can I make it visible on google search, or yahoo? Is there a piece of code that I have to insert on the html file that wraps the flash swf?
View 3 Replies
Mar 1, 2010
I have a simple FLA that pans through an image up/down/left/right. There are several hotspots (transparent buttons) that popup simple captions when the user rolls over them and launches a URL when clicked.
The captions are actually one caption that I dynamically write text to, size, and _x, _y locate when the rollover event occurs.
The caption (cap) is a rectangle and text box MC symbol which is grouped with the graphic and buttons as another MC symbol. It all works great, panning, captions.
The problem is, when the mouse is first moved, the caption box appears over the graphic. I want it invisible until a rollover occurs. I have tried a setup function action in the first frame that performs cap._visible = false;, which did not solve it. That syntax works fine following the first rollout.
on (rollOver) {
cap.desc.text = "Mr Reynolds";
cap._width = 7*cap.desc.text.length;
[Code].....
View 8 Replies