ActionScript 2.0 :: Screensaver Effect - Resetting Timer On User Input

Mar 30, 2007

I am currently trying to create a kind of 'screensaver' effect in one of my Flash movies, and I have the following code which counts down from ten to zero:

Code:
displayTime = 10;
countDown = function () {
displayTime--;
if (displayTime == 0) {
trace("Time Out")
clearInterval(timer);
}};
timer = setInterval(countDown, 1000);

The problem I am having is finding the right code to use to RESET this countdown back to ten if the user moves the mouse, clicks a button, presses a keyboard button, etc.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Countdown Timer With User Input?

Dec 28, 2010

Right now I have a countdown going on, but with a fixed date.  How would I go about doing this with a user input?...what I would like to do is the user enter a specific date and the countdown to begin.

View 1 Replies

ActionScript 2.0 :: Countdown Timer With User Input?

Jan 30, 2009

I might be a complete newbie at this, but I can't seem to find a tutorial or anything on how to do what I'm trying to do.Ultimately I want to create a countdown for a widget where the user can put in a date and the app will countdown to that date. But the trick is--how do I insert the user variables into the actionscript for the countdown?The script for the countdown is like this:

Code:
currentDate = new Date();
thisYear = currentDate.getFullYear();

[code].....

View 3 Replies

ActionScript 2.0 :: Flash Countdown Timer With User Input?

Feb 21, 2009

I need to make a Countdown timer using comboboxes (probably) that, when a user puts in their 17th birthday, can see how long it is until then. I highlight 17 because I want the user to specify the particular year as well as day and month. I would then want a timer that counts down to that particular date!

View 1 Replies

ActionScript 3.0 :: Flash Screensaver Behavior Using Timer?

Sep 22, 2010

I'm trying to imitate screensaver behavior using the timer class. A movie clip should play after 5 seconds of not being idle. The problem is everytime I go to the homepage, the timers stack and the adspace runs multiple times. (try switching between button 1 and 2 over and over) timer.reset(); doesn't seem to work for me. Here is my code and FLA file:

[Code]...

View 3 Replies

ActionScript 3.0 :: Resetting A Countdown Timer To A New Value?

Jan 12, 2010

I made a ten minute timer that starts at 600 and counts down to zero. It displays the current count in a textfield called "textfield_time". Here's what it looks like:

Code:

var timer:Timer = new Timer(1000, 600);
timer.addEventListener(TimerEvent.TIMER, countdown);
timer.addEventListener(TimerEvent.TIMER_COMPLETE, termin);

[Code]...

I have a time pickup that floats across the screen now and then. When your avatar makes contact with it, you get extra time - say 15 seconds. I already have working code that detects the collision of the avatar and the pickup, but I can't figure out how to add functionality to reset the timer to give an additional 15 seconds. I tried:

Code:
timer+=15;

which doesn't work. But you already knew that (hey, I'm new at this!). Maybe some way to get the currentCount value, increment it by 15 seconds, then update the timer value with it?

View 8 Replies

ActionScript 2.0 :: Is There User Input Text Box For User To Type In A Box From A Keyboard

Apr 17, 2011

is it possible in actionscript for the user to type in a box from a keyboard like a user input text box..

View 3 Replies

Actionscript 3 :: Placing Cursor Into Input Textfield For User Input?

Dec 15, 2009

What easiest way to place cursor (focus?) into an textfield input box for receiving user input after an event?

View 1 Replies

ActionScript 3.0 :: User Input Textfield - Get The Information The User Put In The Box?

Feb 25, 2009

I have some text that says go to page with a input textfield box and a go button. This is a flash cs4 file.I want to have the user input the page number and have it go to that frame.I am using actionscript 3.0 and have bought 4 books and researched online and still can't find what I am looking for.I can make the go button go to whatever page I want I just don't know how to get the information the user put in the box.

View 2 Replies

ActionScript 3.0 :: Input Seconds To Timer?

Dec 24, 2011

I would really like just something simple and basic and easy to reuse on multiple timers.

I put in a number, lets say 350 (seconds) and the desired textfield displays: 05:50

I'm really no good at math, and most solutions I find I don't understand what's going on to simplify it for my use.

View 14 Replies

ActionScript 1/2 :: Timer To Stop And Then Display User Time

Apr 22, 2010

I am making a game where I want to have a timer running over each level (a total of 4). When the user has finished the game, I want the timer to stop and then display their time. I have 2 dynamic text boxes with the varibles set to them as "Seconds" and the other as "Min". Here is the ActionScript I have for it right now:

[Code]...

View 2 Replies

ActionScript 3.0 :: Stop Timer Until User Clicks A Button On Second Swf

Jul 7, 2009

I have an opening screen which asks the user to enter the first name and then they click the "start" button.This then loads an external swf into it and it starts a quiz on a timer.All that works except that the timer starts sometime during opening swf.I'm not sure if it's when the main swf is loaded or if when the user clicks in the input box but it is definitely not when the user clicks the "start" button like I have programmed.I even tried to stop the timer until the user clicks a button on the second swf (the external swf that is loaded into the main swf)[code]In the loaded swf I have a clock_mc that holds the timer.the first frame has a simple stop(); and the second holds all of the code that makes the clock run.I then have code setup so that when the user clicks a button the clock_mc.gotoAndPlay(2)[code]

View 5 Replies

ActionScript 2.0 :: Timer To Alert The User Every Sixty Seconds For 60 Minutes?

Jul 25, 2009

I'm creating an online power hour application. And i need to have a timer to alert the user every sixty seconds for 60 minutes.. Should be simple enough. I'm just having some difficulty.

View 1 Replies

Actionscript 3 :: Flash Based Countdown Timer In HH:MM:SS Using User's System Clock

Feb 16, 2011

Tasked with creating a countdown timer which I've done before but never using the user's system clock. Does anyone know if its possoble to access the system time from within flash?

View 1 Replies

ActionScript 3.0 :: Rotator Timer - Adding Buttons For User To Control Item

Aug 24, 2009

I have a news rotator that is populated from an RSS feed. The rotator has a timer that cycles through the news items, displaying a link and image and title for each item. I have the put in three buttons for the user to control the item that is displaying. A pause, forward and backward button.

My issue is that I'm not sure how to implement the button without messing up my timer that is already running. I was able to do the Pause button, which was simply to stop the timer. The forward and backward buttons are a bit more tricky. This is what I have so far. Note that I have much of the code duplicated because I needed to initialize the objects for the first timer index. After the first item, the code runs from the timerHandler() function.

PHP Code:
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();
import fl.transitions.Tween;
import fl.transitions.easing.*;
import fl.transitions.TweenEvent;
[Code] .....

View 2 Replies

Pause And Wait For User Input?

Jul 8, 2009

I'm writing a movie scene in AS3, and I hit a snag. I have a movie where the dialogue is advanced by the user pressing a button (the space bar). I have a speak function which prints out the dialogue to a dynamic text box. However, if I type in this:

speak(1, "Hello world!");
speak(2, "Hello back to you as well.");

Then, my first speak function is immediately overwritten by my second one...because they run at the same time. I'm not using the timeline so, I can't put a stop() function in or anything. I'm doing it all in ActionScript.

Is there a way to pause the movie and wait for the user to press the spacebar before loading up the second function. I was thinking of nesting functions to do it, but that seems overly complicated since I'll have nearly 20 lines of dialogue nested within one another in between moving my sprites around.

View 3 Replies

ActionScript 3.0 :: URL Request From User Input?

Nov 28, 2010

I am trying to make a generic multiple choice quiz, with questions to be loaded from an xml file. The hope is that I can give it to teaching colleagues as a resource, and they can create their own questions by just altering the xml file, as none of them know how to use flash. I can make all of it work beautifully for just one xml file's worth of questions, but I'd like to enable people to save several different xml files with different questions, and choose which one to use in the first frame of my swf. Here's what I have in the first frame, where there is simply a text input box (inputxml) and a 'Go' button.

Actionscript Code:
stop ();Go.addEventListener(MouseEvent.CLICK, fl_ClickToGoToNextFrame);var chosenFile:Stringfunction fl_ClickToGoToNextFrame(event:MouseEvent):void{Go.removeEventListener(MouseEvent.CLICK, fl_ClickToGoToNextFrame); 
chosenFile = inputxml.text;
nextFrame();}
[Code] .....

I have just changed over from Flash Pro 8 to CS5, and AS3 is still a bit new to me - am I doing something really daft?

View 2 Replies

ActionScript 3.0 :: How To Wait For User Input

May 1, 2011

Is there a way in as3 to pause the execution and wait for user input (click on yes or no for example)?[code]

View 6 Replies

ActionScript 2.0 :: Getting Variables From User Input?

Oct 11, 2004

I'm creating a simple flash movie that will allow me to setup an aim away message from the desktop or merely a web page, the code used is as follows:

aim:goaway?message=Message+Here+Go+to+aimisland.co m

s you can see there is a + after every word and the text is after Message+. I need to know how to get text which is entered into a text box to be inserted into the above code to complete the link.

View 3 Replies

ActionScript 2.0 :: Variables From User Input

Oct 11, 2004

I'm creating a simple flash movie that will allow me to setup an aim away message from the desktop or merely a web page, the code used is as follows:url... As you can see there is a + after every word and the text is after Message+.I need to know how to get text which is entered into a text box to be inserted into the above code to complete the link.

View 3 Replies

ActionScript 2.0 :: Tell If User Is Typing Into A Input Text Box?

Jan 17, 2009

I'm wondering if there is a way I can see if a user is typing into a input field.

Like if they are typing into the field a variable = 1

And if they are not or the field is empty it is = 0

View 1 Replies

ActionScript 3.0 :: Capture User Input When Hit The Next Button?

Mar 17, 2011

I am creating a game that has a gender selection and name entry box on a screen. When users hit the next button, I want to capture which gender they selected and what they typed for their name. I tried using the code found on the adobe website, but that captures every letter typed in real time.

I just started learning actionscript this week, so I'm a noob at it. Currently, when they click on the button boy1 it erases whatevers in the dynamic text box playeronesex and adds the word "woman". When they click the button girl1, it erases whatevers in playeronesex and adds the text "woman". I also need to know how to capture which they finally chose when they hit the next button.

Heres the actionscript for this frame:

//next button
stop();
onbone.addEventListener(MouseEvent.MOUSE_DOWN, nextone);
function nextone(event:MouseEvent):void {

[Code]....

View 2 Replies

Data Integration :: Saving User Input To Xml

May 22, 2007

I'm sorry this is a question from a server ignoramus, I've previously captured user input using a combination of cfml and text files. That was way back in 2002 and using AS 1.0. I'm now working in an environment where the server guy won't put any scripts on, and I mean none, no PHP, no ASP, no CFML, nothing. Would anyone know if there is a way of capturing user input without using a script, please? This prolly shows a really basic lack of understanding of how servers work but I'm a bit desperate. I know the Flash Learning Interactions can work with SCORM and pop results into LMSs that use SCORM and our LMS does use SCORM, but it seems to only be within the learning interactions and I don't know where to start to tailor this for the input I need to capture.

View 2 Replies

ActionScript 3.0 :: Playing Sound According To User Input

Jul 5, 2010

I want to stop the sound according to user input. For example if an user enters in a Textfield 4.32 seconds, I want to pause the song exactly at 4.32 seconds ( 432000 milliseconds.) I created a timer handler, which will fire every 1 millisecond and traced the soundChannel.position property. The last 2 sound position is
4318.911564625851 ( 4.31 seconds );
4365.351473922902 (4.36 seconds);
But how to stop at 4.32 seconds for the user?

View 1 Replies

Professional :: User Input To Control Animations?

Oct 25, 2011

I have an idea for a simple game/program and not sure if Flash is the way to go.After reading many articles I've come to the conclusion that if I wanna make my idea a reality then I need to do it myself but not sure where to start.Before spending the money on buying cs 5.5 want to make sure it can do what I need.So my question is can you have users input data that would then control your animations? 
For a simple example:I want a user to be able to input a number then depending on the number a certain animation sequence would occur.So say a user inputs the number 10 then my animation would walk over to a pile of say apples and pick up 10 apples.  If they input 5 the animation would pick up 5 apples etc...So my idea has nothing to do with apples but revolves around the user inputting numerical data which would then control what the animations do. 

View 3 Replies

C# :: 3D View Of The Input Which The User Can Move The Camera

Feb 17, 2010

A friend of mine asked for a simple program. Input: Coordinates of some points, spheres, planes etc. (from an excel document (strictly) ) Output: A 3D view of the input which the user can move the camera. The questions is, how can I do that easiest way. I have experience in C++, C#, Flash (AS), Java

View 2 Replies

ActionScript 3.0 :: User Input Added To An Array?

Nov 12, 2009

Ok I have 6 textboxes that the users will use to type in 6 different numbers from 1-49. What code would I need to add so that once the user has entered their 6 numbers, they are sent to and stored in an array?

View 2 Replies

ActionScript 3.0 :: Capturing Data From User Input?

Jan 23, 2011

I'm sure it's easy to do, but I just cannot figure it out. I've created a timer but want to let the user set default values to start at so they don't have to modify the start time each time the program starts.I was able to create a text box but it is un-editable in the actual program. It displays '00' nicely but it's useless. I haven't even gotten to the point where the data is pulled and stored.

ActionScript Code:
var timerHrs1:TextField = new TextField();
timerHrs1.type = TextFieldType.INPUT;

[code]......

View 3 Replies

ActionScript 3.0 :: Displaying User Input In Welcome Message

Feb 8, 2009

The goal is to have the user enter their name in the input text box and then click start. When they click start a ball starts rolling and a welcome message should display "Welcome + name". At first the ball is rolling fine and the name is displayed - but after about 3 seconds the frames sort of flip and "Welcome name" turns into just "Welcome" (name dissapears)

I'm sure it's something really dumb but my eyes are crossing.
- layer 1 is my circle image (myCircle)
- layer 2 is my button (startButton)
- layer 3 is the input field (inputName) and the dynamic field (displayName)

Here's the code:
stop();
var inputName:TextField = new TextField();
inputName.type = TextFieldType.INPUT;
inputName.x=200;
inputName.y=100;
inputName.width=150;
inputName.height=20;
inputName.border = true;
addChild(inputName);
[Code] .....

View 1 Replies

Load User Input Text In Flash

Jun 6, 2010

I am using Macromedia Flash MX 2004, and I am trying to make a flash video file where a user can input text (I got that to work properly).

And where the user-input-text is used later on in the flash movie,

I am looking for actionscript and beginner help for this to work, I'm not new to flash or to actionscript, but I'm still a newb.[url]...

View 3 Replies







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