ActionScript 2.0 :: Disable Clock Movieclip In Quiz?
Nov 4, 2004
In a weakest link game I want people to have the option to disable the timer. [url]...
The quiz all takes place in one frame (frame 3) but I'd like to have a button on the index frame ( frame 1) which gives them the option to have timer on or off. At present the clock movieclip is on the 3rd frame and starts automatically as soon as the frame is entered.
Do you recommend using a button with on press ;unload movie? would this work given the movievclip is not on the same frame?
View 3 Replies
Similar Posts:
Apr 12, 2011
I have to make this analog clock for a university assignment and despite some really good efforts last night and tonight I just can't work out how to get it fully working. There is both a digital and analog clock; the digital clock works fine, but the analog clock just starts from a random time whenever I play the test movie. I am supposed to use the date object, not the timer object. And I am also supposed to add a sound every minute - I have added the sound to the minutes layer and selected but I don't know where to go from there. I seem to be able to find lots of example code for the timer object but not the date.
this.addEventListener("enterFrame",clockHandler); false, 0, true;
function clockHandler(e:Event)
{[code].....
View 3 Replies
Jul 21, 2010
Anyone know where to start thinking about logic for an XML quiz with multiple correct answers, that when the user gets the question right, that question is removed from the random array of questions so we never need to answer it again?
View 0 Replies
Apr 3, 2005
can you tell me if it is possible to detect if an object is rotating anti clockwise or not? at present i get x,y co-ords and use the code below to rotate it which is fine. now i could write an if statement to check if rotation is negative or positive but because rotation can be negative and positive when rotating clockwise and anti clockwise this wouldnt work.
[Code]...
View 2 Replies
Apr 3, 2005
at present i get x,y co-ords and use the code below to rotate it which is fine. now i could write an if statement to check if rotation is negative or positive but because rotation can be negative and positive when rotating clockwise and anti clockwise this wouldnt work.
Code:
theAngle = Math.atan2(diffy , diffx);
this._rotation = theAngle*360/(2*Math.PI);
[code].....
View 2 Replies
Nov 4, 2011
i hv create an fullscreen menu, manu having many options on wall and i put one transparent desing movieclips over buttons by those movieclips bottom button gone non interactive
View 3 Replies
Apr 7, 2006
Is there a way to disable a movieclip.. i thought myMc._visable=false would hide and disable, but it does not seem too.
View 5 Replies
Aug 6, 2009
I would like to know how to disable all the events for a movieclip so that it cannot accept any kind of event.I want to restrict a movieclip (draggable) to accept only one movieclip(target) droped on it
View 2 Replies
Jan 25, 2011
I am using Adobe Flash CS5, Action Script 3.0, and I want to disable my "home" movieclip after it has been clicked, so it stays a certain color or design that can't be clicked anymore. I already created the _up, _over, _down, and _disabled in the "home" timeline, and I don't know what to do after that.... i tried home.enabled = false, but it's already disabled when I hover to it. These are my codes so far:
stop();
home.stop();
home.buttonMode = true;
[code]......
View 6 Replies
Nov 27, 2011
I just done a project here i create a movieclip which contains many thumbnails in it and above this layer i have a phone movieclip which have 2 children movieclip 1st childmovieclip contain canvas movieclip which allow user to draw something and 2nd child movieclip is just contains png movieclip in it now I just want to disable 2nd movieclip to enable bottom thumbnails, and here is my codeI made phone object in my document class
phonemc=new phone()
addChild(phonemc)
phonemc.x=(1000/2)+270;
[code].....
View 6 Replies
Jan 26, 2011
I am working on a simple game, where I have an ENEMY moving in random way (movement happens at the eventListener ENTER_FRAME). I want the ENEMY to pause his movement the moment he hits a player (HitTestObject) , because then I need to display a popup which the user has to work with. how to suspend the movement of the enemy while the user is dealing with popup? So far I am trying to use removeEventListener(which triggers the movement), but I have problems restarting the eventListener once the user is done with the popup message.
[Code]...
View 5 Replies
Sep 26, 2006
I made a movieclip as a button, but it still clickable after I set it's property enabled = false,is it correct?
Code:
function disableButton(i){
_root.buttonsBg["v6bt"+i].upBt.attachMovie("disableBt", "disableBt", 3);
[code].....
View 4 Replies
Aug 3, 2009
I have a movieclip that plays on click of my 3 buttons I managed to get that working fine. When I click a button I want to temporarily disable all buttons until the movieclip finishes playing then enable the buttons to be clickable again.
my code looks like this:
stop();
but1.addEventListener(MouseEvent.CLICK,but1_onMous eClick);
function but1_onMouseClick(e:MouseEvent):void
[Code]....
Then same thing for but2 and but3 only with gotoAndStop(2 or 3 );
and then I have a stop(); at the 1st frame in my movieclip.
View 12 Replies
Aug 16, 2010
I've produced a Flash Flipbook. I works the way I want it to except for one thing. In one of my flipping pages I've created a movie clip inside which consists of an animation. The animation plays fine but when you're about to flip to the next page it replays the movieclip (even though I've put a 'stop' function at the end of the movieclip). I don't know whether I have to create a function at the top level so it disables the movieclip after one page flick? Or is there another way that I can make the movieclip just play once after flicking to the next or previous page?[code]...
View 1 Replies
Jul 31, 2004
I've a movieclip on the stage attached an action
/:luck_1.onRelease = function (){
/:findorg (0, _root.luck_1);
}
"luck_1" is the movieclip. How to temporarily disable the onRelease () event from the button. I'll checkout the "condition" onlater but what i really want to disable the link even if the same code exists.
View 1 Replies
May 12, 2009
Suppose, I created a MovieClip(with instance-name= "myClip") on the stage. If I need to process MouseEvent.CLICK event on this movieclip(myClip), then we use addEventListener(bla.... bla...); method.
Now, my requirement is, in certain case, I do not want to occur any MouseEvent.CLICK events on this same movieClip(i.e., myClip).Then, How to do this? (or) What is the method/class used in this context?
Atlast, My requirement is: How to remove/disable Mouse_CLICK events when occur on a MovieCLip.
View 1 Replies
Sep 7, 2009
This particular scene I want the user to use all 3 Electric mixers before moving on to the next scene.
I have done it now so that the user must klick on mixer at least 3 times. But it can be the same clip.
The problem I have is to single out each clip. So that if the clip have been clicked once. The counter for that clip is disabled.
Hope you can understand what I mean.
Code:
myVar=0;
function dragSetup(clip, targ) {
clip.onPress = function() {
[Code]....
View 8 Replies
Nov 18, 2009
I created some movieclip buttons, set a statement to disable it, but I can't enable them again when another button is selected how can i resolve this?[code]
View 4 Replies
Mar 6, 2011
I creating a flash gallery(using flash first time) and found one problem. When i resize movieclip(container) it resize its children, so i could't resize them manualy to dimensions what i need. How i can disable resizing of children of movieclip?
View 4 Replies
May 12, 2009
My issue starts here:Suppose, I created a MovieClip(say, instance-name= "myClip") on the stage. If I need to process MouseEvent.CLICK event on this movieclip(myClip), then we use addEventListener(bla.... bla...); method.Now, my requirement is, in certain case, I do not want to occur any MouseEvent.CLICK events on this same movieClip(i.e., myClip)Atlast, My requirement is: How to remove/disable Mouse_CLICK events when occur on a MovieCLip.Here, I try to disable the MouseEvents because, The MovieClip must be visible but should not accept any Mouse_CLICK events on it
View 4 Replies
Aug 16, 2010
I've created a flipbook in Flash. It pretty much looks the way I want it to except for one thing. On the 3rd and 4th page I've created a spread where it has have a movieclip playing inside the pages. It plays fine but everytime you're about to flip to the next or previous page it keeps playing the animation inside the page. Obviously I only want it to play once. Even though I put a 'stop' function inside the movieclip it still loops the animation. It looks like I have to set a function at the top level so it disables the movieclip after the first page-flip. Is this possible? Or is there another way that I can make the animation stop looping when about to flip pages? I could only attach the actionscript in word doc as the fla and swf where too big to attach. If you're happy to look into it I can email it to you.
View 2 Replies
Sep 10, 2010
Timing Format in Flex "24-hour clock" and "12-hour clock"if "24-hour clock" Button is selected, the control should convert times to 24 hour clock time. For example, if 3:45 p.m. is entered, it should be converted to 15:45.if "12-hour clock" Button is selected, the control should convert times to 12 hour clock time. For example, if 15:45 p.m. is entered, it should be converted to
View 2 Replies
Jan 10, 2011
I can't get this analog clock working using time returned by the php.
server = new LoadVars();
server.onData = function (src){
counter.onEnterFrame = countdown;
counter._visible = true;
[code].....
View 1 Replies
Feb 18, 2008
For an upcoming project the client wants an animated "Sun Clock" that shows the areas of the world map that are currently day/night. The Sun Clock changes continuously throughout the day to match the movement of the sun. I've attached an image of a Sun Clock as reference.
I'm really not sure where to start with this. I've found an example of a functional Sun Clock using Yahoo Widgets, but that's a bit different because I need to embed the Sun Clock on a web page.
View 4 Replies
Apr 15, 2005
how to script a dynamic text bar to show the date and time that it is now, plus make it work properly as a clock.
View 5 Replies
Jan 10, 2010
I have to do a quiz, which will be a random 5 questions from among the 20 I have no idea how to go about doing this, please help.
View 2 Replies
Mar 10, 2007
i made a quiz in flash using actionscript:
At the end I have to sum the answers and show the result to the user but I can't get it.
Here is the code (I'm kind of new to actionscript, sorry if the code it's too long):
Code:
var p1=0;
var p2=0;
var p3=0;
[Code].....
View 5 Replies
Mar 10, 2010
I am writing a module and I have a section in this flash file where a quiz comes up and if you don't click on the right answer it tells you to try again. If you click on the right answer it will load the next swf file. But I can't get this last part to work. The quiz is within an xml file.
var current:Number = 0;
var qbox:Sprite = new Sprite;
var quiz:XML;[code]....
So where it says "if(correct) {" on the bottom, I want the file this file to go to the next swf file not say "Correct!".
View 1 Replies
Dec 4, 2010
I want an event to occur at particular time. An analog/digital clock in display, a movieclip to run at particular time. How to do it.
View 1 Replies
Dec 6, 2010
I have a analog/digital clock in the scene. I want another movie to start at a particular time in the clock in the stage. How to do that.
View 2 Replies