ActionScript 2.0 :: Swf Enabling/disabling Buttons?

Oct 23, 2007

main swf load's in empty mc an external swf (submenu) and each swf load's in empty mc subsubmenu) other swf.

now in each sub_swf (second swf) when button is clicked I disable some buttons:
on (release) {
loadMovie("books_1.swf",empty)

[code]....

View 1 Replies


Similar Posts:


IDE :: Enabling And Disabling Buttons?

Jul 20, 2009

i have a movie with this button which disables it upon loading of external .swf file:

on(release) {
loadMovieNum ("lg_01.swf", 2);
i1.enabled = false;
}

the site in progress: [URL]..How do i tell said .swf file to re-enable the "i1" instance from the original .swf file it loaded into? I guess where I'm getting lost is how to tell one .swf to affect another.

I think if i knew this little tidbit, I would most definitely be able to have more control over my sites.

I'm a self-taught novice actionscripter and obviously don't know enough to do something as simple as this.

View 14 Replies

Disabling And Enabling A Button

Aug 25, 2009

I took an object and converted it into a button symbol. I want to be able to disable and enable the button in different situations. I used the action script code "myButton.enabled=true;" and "myButton.enabled=false;" but these don't seem to work. Is it possible to access this property of a button I made? if not is there any way to change the button in the user interface components? if not is there any other way to disable or enable the buttons i made?

View 1 Replies

ActionScript 2.0 :: Disabling And Re-enabling A Function?

Sep 28, 2009

I have a movieclip on my first frame that has some functions assigned to it from my 'actions' layer. When the user clicks a button, I want to go to frame 2, have the same movieclip showing, but disable the functions that I set to it in the first frame. Is there a way of doing this?I also want the functions to be re-enabled again once another buttons is clicked, to go back to the first frame.

View 2 Replies

ActionScript 3.0 :: Disabling And Re-enabling A Button After Being Clicked?

Mar 15, 2012

I've been creating my first complex buttons and there're some details I haven't solved yet. How do I disable a button after being clicked and how do I re-enable it after clicking another button? I've come across this "removeEventListener" and tried it but I can't seem to work it out...
 
Here's my code so far:

aempresa.addEventListener(MouseEvent.ROLL_OVER,btnOver);
aempresa.addEventListener(MouseEvent.ROLL_OUT,btnOut);
aempresa.addEventListener(MouseEvent.CLICK,clickAempresaToGoToWebPage);

[Code]....

View 14 Replies

Flex :: Enabling/disabling Checkbox According To Some Condition?

May 29, 2010

I have a chechbox in a gridview. i need it disabled for some condition and enabled for other. how to fetch check box id out side the grid.

View 2 Replies

Flex :: Enabling And Disabling Button In List?

Apr 15, 2010

I have a list with a dataprovider, it lists out buttons encapsulated in an item renderer. All I want it to do is have a skin that it changes to when it is clicked. I can get this to happen, but then it just goes back to its up state. I want it to stick on the down state, which I have to do by disabling the button.

So I tried this:

buttonList.selectedItem.enabled = false;
for(var i:Number = 0; i< buttonList.numChildren; i++)
{

[Code]....

View 2 Replies

ActionScript 3.0 :: Disabling And Enabling Listeners Give "TypeError: Error #1009: Cannot Access A Property..."?

Jul 15, 2009

I'm pretty green with Flash coding, but I'm trying to disable the rollovers for my button MCs when they are on the page that they link to.I have all my listeners in functions such as:

function enableButton1()}function disableButton2()[code]....

Everything always works fine until I go from one page to the next.In other words, when it tries to re-enable Button1 I get an error no matter what method I try:TypeError: Error #1009: Cannot access a property or method of a null object reference.[code].....

Everything in my fla file is internal.Nothing is externally loaded.So it's not an error with load() functions.

View 5 Replies

ActionScript 3.0 :: Way Of Enabling A Button ONLY After Two Other Buttons Have Been Selecte

Mar 8, 2010

I'm looking to find the most efficient way of enabling a button ONLY after two other buttons have been selected. I've made the following radio type buttons in as3.[code]I'm trying to make the code follow something like this:[code]I only need one item from each of the lists to be true, not all of them.

View 2 Replies

ActionScript 2.0 :: Enabling Buttons Through MovieClip.Prototype?

Mar 23, 2005

I'm trying to make this script work which has a function to enable buttons.

// This script is on a seperate layer frame:
// webnav, iden, adv, mult are instances of MCs
btns = [webnav, iden, adv, mult];
MovieClip.prototype.enableBtns = function(btns) {

[code]....

The buttons disable but just don't enable again when other buttons are clicked.The button instances are on the path: _root.navbtns_mc.

View 14 Replies

ActionScript 2.0 :: [fl8] Enabling IE Forward And Back Buttons In An All Flash Site?

Jun 21, 2009

how to enable the forward and back buttons in internet explorer for a 100% flash site? Looking for a tutorial which only uses actionscript if that's possible... found a few on google but they use javascript (in seemingly complex ways, and I dont know javaScript)... also named anchors arrent an option either because they dont truely take you "back," they only go to the prior named anchor on the timeline.. And, they only work on the root timeline.

View 1 Replies

ActionScript 2.0 :: Disabling Buttons Underneath?

Apr 15, 2009

scenario: user rolls over a button, "something_mc" covers the entire flash movie, but buttons underneath that "something_mc" are still active. how would i disable the buttons underneath until user rolls off of "something_mc" (and in doing so reactivates the buttons).looks like most search options here bring up when another .swf is loaded ontop of another. my situation is if everythings in the same movie.

View 1 Replies

Actionscript 3.0 :: Disabling Buttons After Click?

Jul 21, 2009

I've created a gallery to play some FLV videos and after getting the thumbnail buttons to go and play on specific frame labels, I now need to disable the button that was clicked and have it re enabled when I click on a different button. Here is my code so far:

stop();
btn01.addEventListener(MouseEvent.CLICK, navigate);
btn02.addEventListener(MouseEvent.CLICK, navigate);
btn03.addEventListener(MouseEvent.CLICK, navigate);

[Code]....

View 5 Replies

ActionScript 2.0 :: Disabling Buttons Conundrum?

Dec 20, 2004

I'm building a site at the mo with pop up that can be activated and covers the main page with a new info page. This popup can be activated at anytime and will cover whatever is in the main page. Trouble is, buttons are still active from the main page when popup is displayed and given the site design the only way to stop this problem is disabling the buttons below. What is a good way of doing this? I was hoping flash keeps some sort of array of mc content and the buttons could be identifed this way but somehow i don't think this is likely!

View 1 Replies

ActionScript 2.0 :: [FMX] For Loops And Disabling Buttons?

Dec 18, 2003

I have an mc that when you rollover opens a menu system. There are buttons behind this menu system that I would like to have disabled when the menu system is open and re-enabled when the menu system is closed. I have this script on my timeline:

[AS]
function lnkenable(isIt) {
lnk0.enabled = isIt;

[code]....

View 1 Replies

ActionScript 2.0 :: Disabling The Buttons Conundrum?

Dec 20, 2004

I'm building a site at the mo with pop up that can be activated and covers the main page with a new info page. This popup can be activated at anytime and will cover whatever is in the main page. Trouble is, buttons are still active from the main page when popup is displayed and given the site design the only way to stop this problem is disabling the buttons below.

View 1 Replies

ActionScript 2.0 :: Disabling The Buttons While It Is On The Animation Frame ?

Jan 21, 2009

I am having trouble with my buttons, they work perfectly,do what they are supposed to do. I am using this code for my buttons:

Code:
choco1.visited = false;
choco1.onRollOver = function()[code]....

When you click on the movie clip it goes to another frame and an animation plays: THE PROBLEM: When it goes to the animation frame after clicking the button, you are still able to click the button even though the buttons are behind the animation that is playing...how would i go about disabling the buttons while it is on the animation frame but also keep the visited state of the button clicked?

View 5 Replies

ActionScript 3.0 :: Disabling Multiple Buttons On Stage?

Feb 4, 2009

I want to disable all buttons on the stage when a certainevent trigger. Some of the buttons are already on the stage (manuallyplaced) at the startup and others are placed dynamically usingactionscript.Do I really have to assign each button a code telling them tobe disabled or can I target them all at onc

View 1 Replies

ActionScript 3.0 :: Disabling Buttons Of All Loaded Movies

Mar 9, 2009

So lets say if you three movies loaded on the stage on top of each other and if I want to disable the buttons for all the movies that under the very top one so this way user is only able to click on the button of the very top loaded movie.

View 1 Replies

ActionScript 2.0 :: Sliding Menu, Disabling Buttons?

Nov 25, 2003

I've created a sliding menu that has a left button and a right button. Each button slides a background movieclip to the left or right. The background mc eases into position when one of the buttons is clicked. Problem is that buttons can still be clicked while the mc is easing into position. This throws off my x coordinate positioning of the mc. I've tried disabling the buttons and enabling them again at a few different points in my code. I've also tried using a time delay to enable the buttons but my logic isn't working. I've stripped the code that was not working out.

View 5 Replies

ActionScript 2.0 :: Disabling Buttons While Animation In Progress

Oct 26, 2004

I got a question about disabling buttons, got this set of buttons where its animation is made by AS, so what I did is I put each button on separate MCs to make it move, but my prob is I have to disable the button while the animation is on progress..how do I stop it?

View 3 Replies

ActionScript 2.0 :: Disabling Buttons On Lower Layer?

Mar 17, 2003

I'm working on a test where the user must find specific error keywords on a document and click on them to identify them as errors. After they click on an error, a movieclip popup displays to tell them they did a good job and explain why the error is an error.

On the movieclip that pops up, I've got a standard X close button to kill the movieclip. The problem is, when you click on the close button, the 20 buttons on the document below are still active, and can still be clicked on. Is there a simple way to disable them all, but only when a popup movieclip is being displayed?

View 7 Replies

ActionScript 3.0 :: Disabling Buttons While A Movieclip Plays?

May 29, 2010

Is there a way to disable buttons while a movieclip plays?Here's the logic in english:If you mouse_over buttonA and buttonB, fly_mc plays.If you mouse_over buttonC, flutter_mc plays.While fly_mc is playing, flutter_mc cannot play, and vice versa.

View 2 Replies

ActionScript 2.0 :: Buttons Within Movie Clips Are Disabling?

Oct 8, 2003

so...i've got these buttons in movie clips. the buttons are animated for mouseover and i've also got an action on the first frame of the main timeline to get the buttons to stay active when clicked on, so the view knows where he is.the problem with this is that any time i go to put an action on the button itself to pull up an external .swf or whatever, the buttons stop animating and/or stop staying "depressed" on the active sheet.

View 1 Replies

ActionScript 3.0 :: Buttons Inside Of A Movie Clip - Disabling Button

Jun 15, 2010

I am learning Action Script and have been working on a menu of buttons that will disable when clicked and enable when not clicked. The buttons are nested inside two movie clips called main and menu, whose instance names are main_mc and menu_mc. I have 3 files the fla with actionscript in frame 1, a ButtonSet class file and a DisablingButton file. get this error: 1120: Access of undefined property one_mc.(for each of the seven buttons)

[Code]...

View 5 Replies

ActionScript 2.0 :: Prevent Click Events Without Disabling Buttons (enabled=false)?

Jul 16, 2008

I am wondering how can one stop the user from clicking on a button (MC) without using btn.enabled = false.example: i have a menu that has buttons which have tweens on rollover and onRelease events. I want to be able to click on home for e.g. disabling all other buttons to avoid user clicking but still keep the rollover. I have tried btn.enabled = false and of course i dont want to disable the entire btn and instead i want to disable just the onRelease event or even avoid the mouse from clicking until the animation finish. Only Then, user can click on another menu button.

View 3 Replies

ActionScript 1/2 :: FLVPlayback: Disabling VolumeBar, Seek, Play/pause, Mute, Fullscreen Buttons?

Feb 15, 2012

Is there a way to disable/enable the buttons in FLVPlayback component? I got a flv files loaded into a fla file and the swf file then loaded onto the main fla file which where I want to disable/enable the FLVPlayback button at certain time.

View 7 Replies

ActionScript 2.0 :: Comes To Enabling A Button(s) On/off?

Mar 10, 2004

I'm having a pblm. when it comes to enabling a button(s) on/off I have a file; that with Adam14 and Scotty's help, I have working the way I want (swaping _X/_Y values), but when the button is cliked I want to disable it, untill another button is clicked... then enable it, and so on.

I thought of setting _global flags inside the buttons but then you actually have to click them twice to trigger the flags???? so then I took those flags out of the buttons and put them onto a container movieclip that looks something like this:

[Code]...

View 6 Replies

ActionScript 3.0 :: Tab Enabling Href In HtmlText?

Jul 22, 2009

Is it possible to tab enable the href links in html formated text that is displayed in a TextField.htmlText property? I don't necessarily want to tab enable the entire text field, just the href links.

View 0 Replies

ActionScript 2.0 :: Enabling Mousewheel In MX Components?

Mar 7, 2006

Since last few hours I'm trying to add mouse wheel feature (i.e. scrolling on mouse wheel movement) in MX components (scroll pane, list box) but in vain.

View 2 Replies







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