ActionScript 2.0 :: Disable It In A Movie?
Jul 20, 2006
Is there a way to completely disable some loaded swf from executing actions? Im developing an application in Flash and it should be able to load user-submited swf entries and I dont like the possibility of an attack.
View 8 Replies
Similar Posts:
Jun 22, 2009
I have a movie clip instance ("mc1") on the Stage. When the .fla file is run I want the movie clip to do something when it is clicked, so I put in the following code:
function handlemc1(event:MouseEvent):void
{
// do something here
}
mc1.addEventListener(MouseEvent.CLICK, handlemc1);
This code works fine. Now, there are times when I will want to disable "mc1" so that it doesn't respond to a click. So I execute this code in those circumstances:
mc1.enabled=false;
But this seems to do nothing. When the user clicks "mc1" the code inside "handlemc1" is executed. I even put a trace inside "handlemc1" which prints out the value of mc1.enabled. The value that is printed to the output window is "false".
I would be grateful if someone could tell me why setting "mc1.enabled=false;" did not stop "mc1" from responding to the click event. Also, is there another way to disable "mc1"?
View 3 Replies
Jun 11, 2010
What will my movie clips not disable here. They are still clickable? I get my trace 24 times. what am i doing wrong. I have 24 cards all named card0_mc - card23_mc.[code]
View 2 Replies
Nov 8, 2009
Is there anyway to disable the movie from playing when I hit Enter? I've got a button press later on that needs Key.ENTER. I could change it, but it is the only key that makes contextual sense.
View 1 Replies
Mar 26, 2004
disable a moive clip example i use arrow key to rotate a clip then when i process i want the clip to be station at there when moving again when i use arrow key again i know use the enable but i tried many time and it fail me my coding was
_root.mymoiveclip.enable= false;
View 2 Replies
Jun 11, 2010
What will my movie clips not disable here. They are still clickable? I get my trace 24 times. what am i doing wrong. I have 24 cards all named card0_mc - card23_mc
code:
function disableCards() {
for (i=0; i<24; i++) {
trace("in here");
this["card"+i+"_mc"].enabled=false;
}
}
View 1 Replies
Sep 4, 2009
I have a screen with transparency that pops up over a movieclip full of buttons.I need to disable the movie clip and/or buttons so they don't function when the pop up comes up.Can't get it to work with this code:
myMC._enabled=false;
or
myMC.myBTN._enabled=false;
[code].....
View 11 Replies
Apr 12, 2011
I have some buttons, and above them a movie clip with a 20% transparency which I use for some graphic effects in my page. But the buttons can't be accessed (they are not working) because the layer covers them.I have used the following code to disable the graphic layer:overlay_mc.buttonMode = false;overlay_mc.enabled = false;overlay_mc.mouseEnabled = false;but none of these solves the problem. The buttons are still covered and inactive.
View 3 Replies
Nov 14, 2009
Loading a movie above another movie at level1 the btns below are still active. Can I disable the btns on the movie layer below.
btn.OnPress = function(){
loadMovie("movielevel.swf",1);
}
View 3 Replies
Jan 18, 2010
i have about 40 buttons in one movie clip called showmcall i have a massive movie clip that covers all of the movie clips , i've tried disabling the buttons by disabling the movie clip :
ActionScript Code:
showmcall.enabled = false ;
but that didnt disable the buttons.
View 3 Replies
Oct 11, 2010
i have make a movie clip button and function it if i roll over ,my object will fellow my mouse, Roll out my object will go away
movie Clip Name(Rb)
and mouse up my object will
object.x+=10
object.y+=10
but my movie clip button still work ! if i accidents Roll over the movie clip button ,my object will fellow my mouse again
i wanted to disable my moiveClip button,any can teach me how ? like
var Rb=true
function objectMoving(event:Event):void{
Rb=false
object.x+=10
object.y+=10
}
View 2 Replies
Apr 2, 2005
i have a navigation with buttons that load external movie clips into a empty movie clip. Yes, very simple.if i click on the button to load the swf repeatedly, it will re-load the movie repeatedly (very annoying). I want to disable the button after it has been clicked once, and re-enable it when another button is clicked.The buttons reside inside a movie clip on the main stage.The empty movie clip resides on the main stage.heres the code for one of the buttons:
on (release) {
_root.target_clip.loadMovie("updates_nav.swf","1") ;
}
I just want it to load once then disable the button. I tried the button.enabled=false into the brackets but i get no results.
View 4 Replies
May 5, 2009
When roll_over button (info_btn) the child mc (infotext_1) starts and animate a text outside the button .When roll_out the child mc animate the text back to the btn.Simple, and it works... almost.[code]...
View 4 Replies
Jan 22, 2010
I am attempting to disable buttons that lay under my movie that loads. This code works all the way up until I close my exit button and then the buttons do not enable again.
on(press) {
align_callout.gotoAndPlay(2);
(stop);
[code].....
View 6 Replies
Apr 24, 2010
I have an swf with several movie clips set up to work as navigation buttons (using _up, _over and _down frame labels). The same navigation swf is used by several different HTML pages and navigates between them.
I want to pass the swf a variable with FlashVars in the object/embed script that will disable the movie clip button for the page the user is currently on.
In AS3 myClip.enabled = false; only removes the rollover behavior of the clip, but does not prevent the clip from receiving mouse events.
How can I disable the clip completely so that it does not respond to events?
View 2 Replies
Nov 17, 2009
How do I set up an array (or other method), to disable the visibility of a group of movie clips all at once?
I've tried this...
var invisibleMCs:Array = new Array ("MC1", "MC2", "MC3");
invisibleMCs._visible = false;
View 1 Replies
Apr 12, 2010
Is there a code in actionscript 2.0 for flash cs4 to disable left-clicking in IE on a flash swf embedded in an html page...the movie does not contain any buttons, but calls an xml file which contains path to images to be displayed. I tried using another swf file to call the original one (since original one I have only the swf available to use, no fla) but although it works fine in firefox, in IE it still allows users to click on the flash, and also changes to hand-cursor, while should have been the default cursor in use by windows, and no clicking (except right-click)... code is as follows:
Code:
Stage.scaleMode = "noScale";
var dewsliderpath = _root._url.substring(0, _root._url.lastIndexOf("/")) + "/dewslider.swf?xml=" + xml;
[Code]....
View 4 Replies
May 26, 2003
if i wanted to disable something like a movie clip from being clickbale (i have already linked it to a function) if i want to diable the movie clip form being clicked unless something else has been pushed how would i do this and where would i put it? also if its not too much trouble could you explain the code a little bit
View 3 Replies
Aug 14, 2009
is there a way to disable the left arrow key for a certain part of a movie. i have the follow code to make it work but need the code to disable it.
//listen for keypress
var myListener:Object = new Object();
myListener.onKeyDown = function() {
[Code].....
View 1 Replies
Feb 14, 2004
I'm making a game in which the player must use the num pad keys to toggle switches. That flipping numlock key. If it's off the key codes change using
Key.getCode(); or
Key.getAscii();
So for example when the numlock is on 1 returns key code 97. But when numlock is off it returns 35 (for the key 'End'. Is there a way to disable or set the numlock key to on or 'toggled' when starting a flash movie?
View 4 Replies
Jul 10, 2010
I have been having some trouble with a movie clip basically designed to act as a button for a store front for a website.This movie clip has, stored as the front of the movie (i.e. before you click in to edit the movie) the following code:
on(rollOver){
gotoAndPlay("Over");
}[code]..........
This gives the movie the hover over and out effect and animates the button so as once pressed the button expands to give a 'Product Details' view.However, when clicked the info shows up as it should but the hit area which I put into the Movie Clip is still on the info area so none of the contents on this new window are accessible and when the cursor leaves the designated info area the movie clip returns to its first stage as it would appear at the start of the animation.Is there any simple way to disable the HitArea on specific frames within a Movie Clip?
View 16 Replies
Jul 29, 2010
I am using Greensock to tween and during a rollOver I need to disable some buttons. I am pretty sure the code is right but the buttons do NOT disable?
code:
import com.greensock.*;
btn_skins.addEventListener(MouseEvent.CLICK,
function() {
TweenLite.to(mtvOrange, .25, {y:0});
[Code].....
View 1 Replies
Jun 12, 2008
not sure how difficult this is going to be, but I have 30 movie clips, which will all be sequentially numbered. (pos1, pos2, pos3......pos30). They will all have the same functions, with the only change being the number. I know there is a more efficient way to write this code using arrays, but I will need help with it. I would rather have 10 lines of code than 150. I also need help with writing the code, that will disable all other movie clips, once the first one is clicked. Also, not sure how tricky the javascript part will be. Below is the code i am trying to achieve, but the long version.
[Code]...
View 1 Replies
Apr 12, 2010
I am using a flash swf from the website[url]...where it allows me to upload images via an xml file to the flash movie. However the flash movie is changing the mouse cursor to hand-cursor when passing the mouse on it, and also it is allowing users to click on the movie, while I wanted to leave the mouse cursor to remain as an arrow, and prevent users from clicking on it, I tried the following code, whereby I used another flash movie to call the dewslider swf, but in IE it is not working, although in firefox it is ok..[code]...
View 4 Replies
Feb 7, 2011
Does anybody know how to disable TLF in CS5, specifically, on import of an AI file?
When I import an .ai file into Flash, I want the text to come in as classic text becasue the TLF is to memory intensive and makes my application unusable (the application is very font heavy).
Right now, my workaround is to produce the assets of the file in CS4 and then open it with and convert to CS5. This is fine for the initial build, but is a pain when I need to make updates to the file.
View 4 Replies
Jun 9, 2009
Is there a way to use ActionScript to disable all buttons in a movie at the start of the movie (or at any given time in the movie), and then re-enable them at a certain time? I'm using Flash MX (only version I have access to), and I know how to get to the ActionScript panel and use it for basic things like stopping/playing a movie or jumping to a certain frame, but I haven't figured out much about ActionScript beyond that.
(btw, what version of ActionScript does Flash MX have?
View 10 Replies
Dec 2, 2009
using an FLV, with SeekBar component...works fantastic, but the scrubber clashes with my cuepoints when dragging along the timeline. So i want the scrubber to be inactive. Tried everything but can't get it to disable.disable this, I've looked everywhere, seems a few people have asked here but with no solid response
View 3 Replies
Aug 21, 2011
How to disable Alt F4 in a swf file
View 1 Replies
Apr 26, 2011
I know it should be simple, but I can't find a solution to this question.
How do i disable a particular key in AS3?
View 2 Replies
Feb 3, 2010
On the root, I have a movieclip (input). Within it is 1 frame of codes (well, 2 layers, each with 1 frame of code...).
Alongside on the root, I have another movieclip (banana), which has a stack of animation within... the first frame within is labelled "main".
What I wanted was that if banana's current frame was main, then input is untouched (enabled). If banana's current frame WASN'T main, then input is disabled ENTIRELY (everything within is disabled as well, especially the frames of code).
What I have tried was applying this code on a frame on the root timeline:
onClipEvent(enterFrame) {
if(banana.currentFrame = main); {
input.enabled = false;
[Code]....
I looked up some things and they said that enabled false or true only applies directly to the movieclip, and leaves all codes within the MC untouched.
View 3 Replies