ActionScript 1/2 :: Disabling A Number Nav?

May 13, 2009

I'm trying to alter some ActionScript in an existing file.I've created an extra 'Contact Us' section tab which when clicked brings up the address of the company. Unfortunately the Number 1 navigation box is still clickable and leads to a dead page. I need to find what I need to alter in the ActionScript on frame 102 to stop it from doing this either by removing it or disabling it just in this section and no others.[URL]

View 3 Replies


Similar Posts:


Actionscript 3 :: Function - Disabling Button Rollover For Certain Number Of Frames Flash

Jan 24, 2012

I'm constructing an area with selectable buttons that transition and appear every 10 frames. During these 10 frame transition periods I don't want the buttons to be selectable and if possible to disable the rollover.

I've tried creating an If statement on the addEventListener so that it only works when currentFrame is 11,21,31 etc but this didn't work. I then also tried the same principal on the function to which the Event Listener relates but still no success.

View 2 Replies

ActionScript 2.0 :: Generate A Random Number Between 2 Number BUT Without Generating 2 Same Number?

Jul 16, 2009

Dear Guys I Want To Generate A Random Number Between 2 Number BUT Without Generating 2 Same Number I Mean If For Example Already Generated Number "2" Next Time Did Not Generate It , Is There Any Solution

View 5 Replies

IDE :: Generate Random Number Between 2 Number BUT Without Generating 2 Same Number?

Jul 16, 2009

I Want To Generate A Random Number Between 2 Number BUT Without Generating 2 Same Number I Mean If For Example Already Generated Number "2" Next Time Did Not Generate It,

View 4 Replies

ActionScript 3.0 :: Disabling Right Click?

Aug 19, 2009

Whats the script to disable right click in AS3? or jus show a single link when the user rightclicks the swf?

View 2 Replies

ActionScript 3.0 :: Disabling Button In A Different MC

Mar 7, 2010

so i have a movie clip inside of another movie clip and i want to disable the buttons in the first movie clip until i click a button making it go back to the first movie clip. How would i go about doing this?

View 2 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 3.0 :: Disabling Swf Toolbar?

Jun 17, 2009

i was wondering if you could completely make the toolbar in the swf window with file, edit etc disappear in as3. If it isn't possible can you please tell me how to disable key shortcuts in the swf window but with as3

View 0 Replies

ActionScript 3.0 :: Button Not Disabling?

Aug 20, 2009

I have seen several threads in regards to tbe button enable/disable, mouseEnabled usage. However. I have tried both methodologies in my code, and they don't respond. Continues to give me the alpha change and color text change, but not disabling the button after I roll off of it.Ultimate goal,to disable the currently selected button, leave the alpha at .4 and the text color to remain in its selected state/color. Everything works beautifully for my buttons other than disabling the selected one. Any thoughts or suggestions on what I can do to make the below code work better?Code called in previous function in class to add the MouseEvents to the buttons:

ActionScript Code:
buttonClips_arr[whichOne].buttonMode = true; [ code].............

View 1 Replies

ActionScript 2.0 :: Disabling The Keyboard?

Mar 31, 2011

is it possible to disable the keyboard? So that at the start there's a enter stage animation or something where the user cant move, and at the end to show a winning animation? At the moment in my code, if you press nothing at the start it will play the animation, but you can cancel it at anytime.

View 2 Replies

ActionScript 3.0 :: Disabling The Certain Keystrokes?

Apr 11, 2011

I am making a password protected site. I have made the site function that the proper password is required and once submitted the user gets linked to the next page.I want the password text box to not accept anything from the keyboard except for the ctrl+paste function. how to disable certain keystrokes using AS3? I want the letters A-Z disabled with the exception of the letter V.

View 2 Replies

ActionScript 2.0 :: Disabling Different Mcs Within Same Level?

Jun 1, 2006

i'm trying to disabled different mcs I have in the same level.

Code:
on (press) {
_parent.selectClip = "p2";
_parent.myFunc();
this.enabled = false
uc.enabled = false
}

when i press this mc with the instant name of "rc", i'll disabled with the code above and it works great.but i have another mc i would like to disable as well which is in the same level of "rc"this other mc has the instant name of "uc" so i tried to do what you see above but only "rc" gets disabled but not "uc" i think i'm getting confuse with _root maybe or _parent...

View 1 Replies

IDE :: CS4 Disabling The Javascript Functions?

Jun 3, 2009

I am working with an older (CS3) file in CS4. I have some simple javascript on an actions frame on the site. Example:

Code:
commercial_btn.onRelease = function() {
getURL("JavaScript:openWin('commerical.html', '600', '620')");
}

For some reason this code is being disabled when I publish. When I click on it in preview, it brings up a browser window. But when I publish it, on my computer that is not connected to the internet, it says something like "Adobe flash player has stopped..." and when I test it on the computer which is connected to the internet, it doesn't do anything at all. Only one Javascript pop up works - it has slightly different code and is in a different place. I tried applying the code to these other buttons but no luck.

View 2 Replies

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

ActionScript 2.0 :: Disabling The Key Presses?

Aug 15, 2004

I am creating a dancing game:

[URL]

I need to disable the keyboard after each key is pressed, so if the user presses the UP key until the character has finihsed doing the move no other key can be pressed.

View 4 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 2.0 :: Flash8 Disabling A Button

Jun 15, 2009

I'm developing a card game where I have a button (dealButton) which deals the cards. The action can be triggered by a clicking the button or pressing the spacebar on the keyboard.

Problem is, if I press the spacebar repeatedly the action is triggered multiple times. Is there a way to disable the button when I press the spacebar so that it triggeres the action once only, then gets enabled again later, to deal a new hand?

View 2 Replies

ActionScript 2.0 :: Disabling Button On Level0?

Jan 25, 2010

I have a log in page with two buttons "credit" and "browse" . If the user selects "browse" I want the button to start the quiz globally disabled on level0 (the log in page is level1). I think I need to leave the log in page playing on top in an empty frame for this to work. I have tried:

_global._level0._root.quizBtn.enabled = false(); I have tried that script on the button action of the "browse" button.

View 3 Replies

Media Server :: Disabling Port 80 On FMS?

Jul 1, 2010

I am new to the Flash Media Server and have a question on its use of ports. Now if a server has IIS and FMS and one wished only to stream flash (VOD). Could I edit the fms.ini file and remove port 80 from adaptor.hostport?
 
In my thinking I would stream over port 1935 and would lose the ability to progressive download over port 80.Now I do not ever want to use progressive downloading so no issue so far. In addition I can now run my IIS server on port 80 for my administartor console into FMS.  All my clients are internal and thus I do not need a stream on port 80.
 
Is my thinking sound or am I misssing something?

View 1 Replies

ActionScript 2.0 :: Disabling The OnMouseDown Event?

Sep 5, 2009

I am playing a movie clip onMouseDown event. There are total 10 movieclips in array. I want to disable onMouseDown event while movie is playing.PHP Code:

onMouseDown = roll2;
function roll2(){
shimArray = new Array("ani1", "ani2", "ani3","ani4","ani6", "ani7", "ani8","ani9","an

[code]......

View 3 Replies

ActionScript 3.0 :: Disabling The Mouse Events?

Jan 26, 2010

I am developing a gallery..I want to disable all mouse events .I want disable all mouse events wen i load a image.After clicking the image it will close .

i tried to use e boolean variable , if it is set to false it will disable the buttons and movieclips but i have write this code in every objects.

View 2 Replies

ActionScript 3.0 :: Disabling Dynamic Types?

Dec 4, 2010

I want to disable dynamic types in AS3.0 Flash Builder 4. I hate it. Today I spend 30 minutes looking for a bug, when it turned out I typed lengHT instead of length. Apparently, AS3.0 dynamically created lenght which caused the problem. I want to have only static types enabled.

View 5 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 3.0 :: Disabling Clips That Are Placed From A Loop?

Aug 2, 2010

I've go some movieclips I dynamically placed on the stage in a loop using addChild(). The clips have there own class called DragAndDrop. Once the clips are are drop to the hitarea I want to deactivate them. The problem I'm having is when I run the function in the DrapAndDrop class it deactives not only the movieclip that was just dragged but the last one that was attached in the loop as well (ie I drop mc1 into the proper area mc1 and mc7 deactive).

Here is the loop that add all the clips to the stage:

[Code].....

I don't understand why its disabling both the dropped clip and the last clip in the loop when supposedly event.currentTarget should only carry the value of the object being dropped and not the instance of the object.

View 1 Replies

ActionScript 2.0 :: Disabling Button Not Working?

Sep 24, 2004

I have 4 buttons on a timeline, and each loads different external SWFs. I want that when I clicked on 1 button, let's say the "button1", it will load the MOVIE and the button will be disable until I have clicked on another button. I tried this script below but didn't get any RESULT.

on (release) {
if (expand == 0) {
gotoAndPlay("AA");

[code]......

View 8 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 :: Tween Class And Disabling MCs

Dec 28, 2005

I have four movie clips on the stage. Each has an onRelease function to tween it to a certain position on the stage using the Tween class.How do I disable the onRelease handler for the other three movie clips WHILE the fourth movie clip is in the process of tweening?[code]If I press Clip1 and it starts moving, how do I diasble clips 2 to 4 UNTIL clip1 is safely in position _y = 70 and it's _xscale is 200 when they then become enabled? I have tried various if/else statements and also the onMotionStarted listener without, well, most of my hair is gone now!

View 12 Replies

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

ActionScript 2.0 :: Disabling A Movie Clip Behind Another One?

Aug 27, 2009

is it possible to disable a button behind a movie clip?

i have a page with buttons on the screen, but upon a trigger, a movie clip opens (sort of like a pop up) that covers most of the screen including the buttons. in this opened movie clip, there are more buttons (sort of like a mini game) but the trouble is that the buttons from behind are interfering. Also, when the movie clip/pop up is to be closed, i would like everything from before to be intact as it was before the pop up was opened. i have tried using alpha but am not happy with this approach. are there any other ways?

View 6 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







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