Im a bit a of a noob when it comes to AS. I have a problem that I think should be very easy to solve.
I have a shape that I turned into a button and gave it an instance name of "CA" I also have an array that has a string item called "CA"
I want to be able to make the button invisible by using the array instead of just writing the instance name. I have the following code but it just doesnt work.
I have one button instance that stretches across many frames, and I would like to make it invisible in some of the frames and visible in others. How do I do this with ActionScript 3?
I've built an image scroller but I'd like to make the 'next' and 'previous' buttons invisible at the first and last frames frames respectively. The code I'm using for the scroll is below. I think the code I'm after should be something like this:
HTML Code: if (targetX<720) { btn_Previous.visible = false; }
But I can't work out where I should put it (or even if it's correct) within the scroller code.
I am just trying to make a button disappear using a variable set to it's instance name. When I say invisible I also mean deactivated. The code I've got is this.. Code: [test]_visible = false; but it doesn't work - any offers?
But because the print_index movie slowly scrolls across the stage rather than immediately replace it, there is a moment where the button turns completely invisible after the click. Perhaps the bigger problem is that it doesnt make any of the accompanying buttons invisible like it is supposed to- only the one that is clicked.
I have a button inside a movie clip that when pressed it launches another movie clip. That part works great. The problem I'm having now is either removing the original movie clip or at the very least making it invisible when the next movie launches. So far for my button script this is what I have:
I have a movieClip called "button" within another movieClip called "movie1_mc" I want the "button" movieclip, which also loads XML on frame 12 of "movie1_mc to vanish on or after frame 13
This is the code I have in place but, "button" movieClip isn't disappearing. This is my first time using XML and Flash
//Code to "button movieClip disappear// if (_root._currentframe == 13) {var linkname:Array = [_visible=false];}
I'm having trouble targeting elements of an array using AS3. I have five buttons in an array named botons.
var botons:Array = [boton_1, boton_2, boton_3, boton_4, boton_5];
Each button goes to a different page, but they all are on the same layer like navigation bar. When page 1 is visited button 1 should be invisible and the others visible. When on page 2, button 2 should be invisible but all others visible.
I used the following to make the entire array invisible and it works.
I'm having trouble working with buttons in an array. I would like to target specific button and make it invisible while the others remain visible. Each buttons goes to a page (first, second, third, etc.). There are five buttons named button1... button5. I'm using AS3 in timeline.
Problem: when I click a button, it doesn't get invisible and I get this message: TypeError: Error #1009: Cannot access a property or method of a null object reference. at subtraction_fla::MainTimeline/goPNext()
Here is my script: stop(); var button= [button1, button2, button3, button4, button5]; button1.addEventListener(MouseEvent.CLICK, goPNext); [Code] .....
I've made a drawn menu with curves in my root. This menu loads dynamically swf into an empty container mc. Within some of these swfs, there are full page image galleries. However, the drawn curves seem to stick on top of these swf: I can still see them although the rest of the content is invisible. Now I want to make those curves also invisible...
Code: //API AND LINES// box2.lineStyle (1, 0xff00ff,0); box2.beginFill(0xCCCCCC,0); box2.moveTo(0,0);
[code]....
Now I want to realise a function in an externally loaded swf that makes these lines/curves invisible. i was thinking myself of something like
Code: btImages.onPress = function (){ _root.line.lineStyle(0.5,0xCCCCCC,0); gotoAndStop (3); }
I have several movieclips placed on the timeline that I want to be invisible and not run until the user clicks a button. The movieclips are linked to a class I set up:
Code: class Hidestop extends MovieClip { function onLoad() {
[Code]....
The problem is that some, but not all, movieclips show briefly when they load before becoming invisible. I can get around this by starting each movieclip with a blank frame, but there must be a better way.
I have a movie clip which has a dynamic mask applied to it to provide a scroll effect.
The mask is generated with the 'create blank movieclip' method.
So the mask is a movie clip over a movie clip.
I hunted for invisible text last night and found this link [URL]
which implies it's to do with the mask being on a layer, but from what I can gather from reading the AS, it's not it's on a new blank movie clip.
Also many other links I found all imply it's an issue with dynamic text and the font needs to be embeded, but the underlying text is not dynamic, it's static normal text which has been used in a movieclip to create animated rollover/out effects.
So why is the text missing when the content is scrolled into view?
If you hover over where the text is supose to be, the animation plays and the text becomes visible?
Also the arrow graphic next to the text which forms part of the animation does display; it's just the text portion which is invisible?
I have a movie into which I am loading external swfs. this all works fine but some of the content is duplicated and where there is slimline text it shows that there are two layers. see the header on white here:
how can i set the alpha to 0 or remove the host movieclip, from the externally loaded swf. does that make sense? so once the external swf has loaded into the empty movieclip then the parent movie disappears.
I created a view cart button in PayPal and need to link it to a button in my fla. I know you can do this in AS but I haven't had any luck in my searches. I'm using CS3.[code]
I am a Flash novice who has worked through a couple of the standard introductory books on Flash in Actionscript 3 and some of the online tutorials. However I cannot work out how to do the following: A button A (I know how to design buttons including invisible ones) is on the stage. A user clicks on this button which then causes a text to appear at another location of the stage. This text includes an invisible button B. The text tells the user to click on it with the result that the text, including the invisible button B, disappears but if the user reclicks button A then the text with button B should appear again.
I am making a video player based on the Video Basics tutorials Lee put up a while back.
I am working on a custom controlBar with autohide. Basically, when i mouse over the video area I want them to pop up, and when I mouse out of the video area I want them to disappear. I have setup the controlBar movieclip itself with "show" and "hide" frame labels. Each one plays a fade in/out sequence a few frames long, no big deal. That is the easy part and works fine.
In order to detect the onRollOver and onRollOut events for the video area I made an invisible button on top of it called "butt". It works fine too.
Invisible button layer above controlBar layer: When i roll onto the video area the controlBar pops up, but I cannot access the buttons on it (play, rewind, etc) because they are now underneath the invisible button that monitors the rollOver and rollOut of the video area, which apparently wont let anything under it be clicked. How can I gain access to these buttons?
Controlbar layer above Invisible Button layer: When I roll onto the video area the controlBar pops up fine, but once I mouse over the control bar flash thinks I am leaving the bounds of the invisible button and tries to hide the controlBar right away, which causes me to "re-enter" the invisible button, so it just bounces back and forth between showing and hiding the controls.
How can I monitor the video area and still have access to the buttons on the controlBar once it pops up?
i am working in cs3 flash, but saving my files to flash 8. i am having an issue with getting an invisible button to work. i never had this problem in flash 8. could you please look at the very simple file attached below and let me know WHY i am getting error messages saying: "warning: this movie uses features not supported in flash 5 player" ?? and "scene=scene 1, layer= invisibleBton, frame=405:Flash mx button instance name"
After I upload the files, I can see the hand icon when I mouse over them, but when I click on that spot nothing happens. I have two text links on the same page that do work. One is an email link and the other is a url link. I have check the button names to my code and they do match.
I am using Flash Professional CS4. I made 2 buttons (2 rectangles,each turned into a symbol of type button). I now want when I click 1 button that the second becomes invisible. Is there a way to do so?
I have two motion-tween animated movie clips used as "buttons" which I would like to link to various html pages on my site. Using invisible buttons works, but I can no longer see the animation. If I put it under the movie clip layer, it no longer responds. Is normal, or should I place the invisible button within the editable movie clip?
I'm sure this is something easy that I'm missing, but I can't figure it out. How do I make a button invisible? I need it to be invisible through frame 43 of my movie. I have tried changing the alpha to 0, but it's not letting me change that, except in the edit button mode which changes it for the entire duration and not just through frame 43.
I have invisible buttons on a movie clip that is loading swfs onto a parent movie clip. I hope I am current in the terminology. Are a parent and root the same? Is saying root absolute and parent relative? I'm digressing.So, this this._parent.gotoAndPlay("contact form"); is going to the keyframe named "contact form" and it will stop there. What I want to happen, is, I want the other invisible button named aboutmeMC2 to go back to the keyframe named "skip" so my contact form will no longer show up and it will load the external swf
ActionScript Code: on (release) { this._parent.gotoAndPlay("contact form");
I have a home page, with 5 swf's that are called into a container on the main. Now when I click on the home button on i need for the embedded swf thats up to become invisible not unload because i need the information to .
I have invisible buttons on a movie clip that is loading swfs onto a parent movie clip. I hope I am current in the terminology. Are a parent and root the same? Is saying root absolute and parent relative? I'm digressing.
So, this this._parent.gotoAndPlay("contact form"); is going to the keyframe named "contact form" and it will stop there. What I want to happen, is, I want the other invisible button named aboutmeMC2 to go back to the keyframe named "skip" so my contact form will no longer show up and it will load the external swf.
ActionScript Code: on (release) { this._parent.gotoAndPlay("contact form"); aboutmeMC2._root.gotoAndPlay("skip");
I tried adding a invis button on the banner ( by the way the banner is moving) but for some reason it wont let me add Action script to it to link to a url
Is it possible to create a invisible mc with in 2 other invisible mc's and if so would there be any complications. Im trying to do something similar and it gets to the second layer but then doesnt want to load the third inv-mc. Like loading an external swf to a container mc then in that same mc have another external load and then another.