ActionScript 3.0 :: Simple Hide / Show Movie With If Statement?

Nov 24, 2010

I need something like this (not correct code!)

if (MovieClip(this.root).myimage.x -= 100{
MovieClip(this.root).mybutton.visible = false;
} else {
MovieClip(this.root).mybutton.visible = true;
}

So I'm saying if myimage x position in less than 100 hide mybutton.

View 6 Replies


Similar Posts:


ActionScript 3.0 :: Simple Show/hide Movieclip Via Button?

Sep 24, 2009

I've been looking on google, but I have found nothing at all on this, which is surprising as it is very simple to make (I have done it in AS2).I was to have a button that can hide a movieclip. Then another button which will show it again.

View 8 Replies

IDE :: Show/hide Movie Clip With Xml?

May 14, 2009

i wanna do a flash that reads an xml, in which the xml tells my flash to show or hide movie clips (they have instance names).

Code:
//added in the frame
var elights = _root.mc_elights ;
var logo = _root.mc_logo ;
var croom = _root.mc_croom ;

[code]....

i however, want to do this via xml, so that i could have my programmer colleague create a php to call for this database.

View 1 Replies

ActionScript 2.0 :: Show Hide Movie Clip ?

Feb 16, 2011

I am trying to make, it involves someone pressing a button which generates a random number between 1 and 2, and depending on which number two images are displayed, "heads" and "tails".This is what I have so far on the button

on (release) {
var numCoin = random(2) + 1;
if (numCoin = 1) {[code]......

View 2 Replies

ActionScript 1/2 :: Hide / Show Movie Clips With Date?

Sep 2, 2010

I would like to create a website 'banner' application in flash that uses action script to show or hide different movie clips based on a start and end date.

Originally I would have to manually upload new banners to a website one at a time. But if I had one file that could contain multiple banners I could have them turn on and off based on what day it was. Is there a way to do this with action script?

View 3 Replies

ActionScript 1/2 :: Hide Mouse Then Show It When New Swf File Opens Above The Movie?

May 10, 2009

I am using a magnifying glass animation for my portfolio and I want he mouse cursor to hide, which I can work out with: Mouse.hide()

But when someone clicks on a section it then loads a swf file above the original movie so I then want the mouse cursor to show but i'm not sure what the code would be for this? Also then once they press on the close button of this swf file with: on (release) unloadMovieNum(1); _level0.enableBtns();}

I want the mouse cursor to hide again becuase they are on the main movie again.

View 3 Replies

ActionScript 2.0 :: Trigger Show/hide Multiple Div Layers From Flash Movie?

Nov 18, 2007

I need to show and hide multiple DIV layers by clicking on buttons inside an embedded flash movie. I looked around and the closest I got was this tutorial here:

[URL]

but the problem is I need 10 buttons to each show one layer while hiding the other ones. For example, I click button 1, layer 1 shows, then I click on button 5, layer 1 is hidden and layer 5 shows etc.

How can the above code be split so instead of showing all DIV layers at once, it shows one and hides the rest??

View 5 Replies

Actionscript 3.0 :: Display Html In Flash Movie And Interact With Hide / Show Divs

Apr 13, 2009

I have a movie clip that displays an embedded html with a bunch of divs that are expected to hide and show other divs when the users click them. i.e. imagine that you have a span with an instruction in javascript to show a div when you click it. I already made the html file, the external css and the external js. The movieclip (in actionscript 3.0) loads and displays the html content and also the css, but i haven't managed to figure out how am i supposed to link or use the javascript to do the trick. I've tried so far doing an exhausting research over the internet for the past few days and the only infromation i've got is that web developers use externalInterface to access javascript functions, but they use flash buttons to execute the js code, and it appears to me that i cannot use or embed flash btns in my site. I don't know, I'm kinda new to flash and this is the first time I work with actionscript 3.[code]or how do I achieve de hide/show thing with another method? I'll be wandering around the site in case you have any extra doubts about this subject.

View 2 Replies

ActionScript 1/2 :: Possible To Hide XMl Content Using An If Statement?

Jun 16, 2009

Is it possible to hide XMl content using an if statement? If on frame 15 hide XML content? I'm not sure what the code would be?

View 3 Replies

ActionScript 3.0 :: Simple If Statement Not Working?

Feb 21, 2012

I am attempting to create one function to respond to multiple button clicks. I have a simple if statement in my onBtnClick function that does not work. Just need the button that is in that variable to go to frame 1. Trace statements are working inside the statement so I the if statement runs correctly?

[Code]...

View 3 Replies

ActionScript 2.0 :: Simple If Statement Won't Work?

Feb 18, 2006

I am using Flash 8, and for some reason, my if statement won't work. I have a scrollbar which scrolls a movieclip (that contains AS loaded material (eg. attachmovie). I want it so that only when the material is longer than the scrollbar do I see the scroll bar.For some reason, it doesn't work. The traces don't even work!

if (scrollbar._height < menu_mc._height) {
scrollbar._alpha = 100;
trace("works");[code].....

View 2 Replies

ActionScript 3.0 :: Check To See If An Object Exists By Using A Simple If Statement?

Sep 27, 2010

I'm trying to check to see if an object exists by using a simple if statement.
 
if (object.name) {
//Do this
}
 
However, if the object doesn't exist, I get this error, "Error #1010: A term is undefined and has no properties" - which I understand is because the object doesn't exist. Is there a better way to check to see if an object exists?

View 1 Replies

ActionScript 2.0 :: Can't Get A Simple If/then Statement Working With An Input Text

Feb 19, 2005

i cant seem to get a simple if/then statement working with an input text. Here is my AS

[AS]
on (release) {
password = inputName
if (password == "test") {

[Code].....

For some reason when i type in test in the movieclip inputName it still sends me to ign.com. Everything is in the same frame and i just cant get it working.

View 1 Replies

ActionScript 2.0 :: Simple Timer - Delay For 20 Seconds (IF Statement)

Apr 19, 2004

I'm building a continous move in flash, and I'm displaying some text and images and want to hold the timeline for about 20 seconds and then resume play again. I'm trying to write a simple timer in AS to keep from having to create 10000 frame long movie clips. Here's what I have so far:

stop();
this.onEnterFrame {
time = getTimer();
if (time == 20) {
play();
}}

Unfortunately, this isn't working for me, and 'm unsure why. I suspect two things,
A: my "time" var takes only a snapshot value of the timer and not a continuous value, so the timer never reaches the value of 20. Or,
B: I have somesort of syntax wrong and the if never gets a chance to load.

View 4 Replies

ActionScript 2.0 :: CS3 Show/Hide Mc's In Array?

Oct 13, 2009

Several arrays are created by passing a number (k) from a different array,for every item in the array I need to have a little dot.I have a movieclip on the timeline with a maximum of 15 dots.So if the array has only 6 items, the last 9 dots should dissapear.

PHP Code:

function fill_items(k:Number) {
var item = josXML.firstChild.childNodes[2].childNodes[k];

[code].........

But the dots_total[t]._visible = false; part isn't working...Maybe it's the wrong way to achive this, but i can't seem to figure out why it's not working.

View 2 Replies

ActionScript 1/2 :: Hide And Show Datagrid?

Aug 7, 2011

How do I hide a datagrid and then show it?I have a button to select. The button when clicked should show the datagrid. Once the user clicks a cell on the datagrid, it should hide again.

View 1 Replies

ActionScript 3.0 :: Show And Hide Text?

Feb 5, 2012

I have button (csignal_btn and endsignal_btn) and i have dynamic text (csignal_txt and endsignal_txt). Now how i can when is unhovered to no be text (alpha=0), and when hover csignal_btn to show csignal_txt (alpha=1)?? Same thing for endsignal_btn

View 3 Replies

Flex Show / Hide On Mouse Over / Out

Mar 23, 2010

i need to show the second one when there is a mouse over the first one and hide it when it goes out of the first one also i want the second container content to be usable (mouse clicks/moves)

View 2 Replies

ActionScript 3.0 :: Show And Hide Elements In DIV?

Jul 30, 2009

I have a problem with showing and hiding a link to another page. The following is the code thats placed inside cfform(format is flash).

[Code]...

View 0 Replies

ActionScript 2.0 :: Show/Hide Scrollbar?

Sep 27, 2004

1. I've downloaded the Source for MX included in the "Hide/View the Scrollbar Component" page of It simply doesn't work when I open the file and publish it. I'm using Flash MX 2004, ... has anyone experienced the same problem and solved it?2. I've been able to set the scroll visibility with an external dynamic text using several procedures. One of them is:

SB1.setScrollTarget(_root.Texto1);
if (Texto1.maxscroll > 1) {
SB1._visible = true;

[code]....

View 3 Replies

ActionScript 3.0 :: Hide / Show With Only One Button

Mar 9, 2012

I'm not happy with my hide/show function..... the code works, but I think it is a waste of space on my stage that I need two buttons to hide and show a movieclip... there must be a better way

[Code]...

View 3 Replies

IDE :: Hide/show The Mouse After Some Period ?

Sep 27, 2009

I want to hide the mouse after some period when there is no mouse movement (i.e. 5 seconds), and then for the mouse to reappear when the user moves their mouse again.

View 1 Replies

ActionScript 2.0 :: Show Hide Divs Via Flash?

Jul 9, 2009

I have a flash map. There are 6 clickable countries on the map. When one clicks on a country I want html content to appear under the flash movie. As far as I can see the best way to accomplish this is to have all the content already under the flash movie each in a separate div, with display set to hidden. Then action script inside the country buttons calls a javascript function on the html when that button is clicked, to set display:block for corresponding content filled div. I've tried a few scripts but couldn't get it working.

<code>button_kenya.onRelease = function ()
{
flash.external.ExternalInterface.call("kenya");
};</code>

Is there anything else i should do when imbedding flash into my page so that the flash can talk to the html and call the javascript?

View 3 Replies

Show/Hide Multiple Movieclips Query?

Nov 10, 2009

I'd like to be able to have an array of movieclips where i'm able to toggle their visibility depending on what button has been pressed. I would need to have a default movieclip that is visible and all the others are hidden, but then when I click a button to make one of the other movieclips visible the default one is hidden etc.You can see an example of what i'm trying to achieve at http:[url]........I'm experienced in PHP and HTML but have not used flash for several years so i'm pretty rusty. Can anyone point me in the right direction?

View 5 Replies

ActionScript 3.0 :: Show/hide Random Objects?

Sep 28, 2010

Flash in general so this is probably above my skill level. Basically I have 3 movieclips, called random1, random2 and random3 for the sake of this.I want, at the start of the frame to pick one of the three objects at random, keep that object visible, and hide the other 2

View 2 Replies

ActionScript 3.0 :: Show And Hide A Darned Button

Apr 13, 2009

I need to progress. [URL] The Adobe documentation assumes you are an expert with Flash and there are no clear cut examples of how to even show and hide a darned button, well, I can't find any referrences. I can imagine what I want to do with flash, but getting anything out of it cracks open my brain. Programming is not fair!!! for us graphic artists. Examples of things I want to study are loading images to the stage on a specific event such as "if(enterFrame == x)" ideally I would like the images to load from a directory on the server and ease in the image.

Basically I want to keep it simple yet effective. Alot of the code I see out there is double dutch to me and appears to go in the wrong direction of simplifying things. I can understand the basic fundamentals, but I wish when people post examples like myMC1.visible = true; that they explain that myMC1 is just a name chosen by the writer to look for an item called myMC1 or go the extra step and color code the code BLUE for actual code, RED for names of items given by the writer that exist on the stage etc etc...

[Code]....

View 3 Replies

ActionScript 1/2 :: MovieClip Hide/Show On Release?

Dec 6, 2009

I'm making a Flash AS2 Dress-up game and I want to show/Hide movie clips on release of a button like this one;

View 1 Replies

ActionScript 3.0 :: Show / Hide Sub Menu Using Array

Apr 12, 2010

I'm trying to show and hide a sub menu. So what I want to do is for the sub menu to show up and stay up if certain buttons are clicked, but disappear if other buttons are clicked. I've got an array of the sub menu. If any of the buttons are clicked from the sub menu array, it should stay.

var subMenu:Boolean=false;
This is my sub menu array:
var arrSub:Array=[m8_mcButton,m9_mcButton,m10_mcButton,m11_mcButton,m12_m cButton,m13_mcButton,m14_mcButton];

When a button is clicked, I want to check to see if the sub menu is showing and to check which button has been clicked. This is the code I came up with, but unfortunately, doesn't work...

function onButtonClick(e:MouseEvent):void {
for (i=0; i<arrSub.length; i++) {
if (subMenu && e.currentTarget!=arrSub[i]) {
arrSub[i].y=-130;
subMenu=false;
}}

View 2 Replies

Professional :: Way To Consistently Show And Hide A Textfield?

Dec 8, 2011

url...Is there a more effective way to consistently show and hide a textfield? or is there a smarter class to use like MovieClip or Sprite?I've tried all 3.This configuration of the two functions shows the message box once, but fails to hide. [code]Alternatively if I don't set the alpha in showMsg it show once, hides once, but fails to show again.It's like alpha can only be changed once and then it fails to change after that:[code]

View 3 Replies

ActionScript 3.0 :: Show / Hide Object With Text Box

Jan 6, 2012

got a code to show and Hide an object with a button and it's working good. There's the code

[Code]...

I want to introduce my hide/show code to this code but dont understand how to do it. What I want is that if I enter ''image1'' in my Passwordbox, my ''image1'' object show/hide. If I enter ''image2'', my ''image2'' object show/hide. Can someone help me with this?

View 14 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved