ActionScript 3.0 :: Use A GetTimer Method That Takes To Another Frame - Continues Counting

May 27, 2010

I am trying to use a getTimer method that takes me to another frame (frame is "memory") after a certain amount of time after the movieclip has been loaded. The frame that I want it to go was given the name already. The timer itself does count when tested, but it just continues counting.

[Code]....

View 2 Replies


Similar Posts:


AS3 :: Flex - GetTimer() Method And The Timer Class?

Jun 18, 2009

I'm in the process of making a game (a shmup) and I've started to question the accuracy of the timers in ActionScript. Sure, they're accurate enough when you want to time things on the order of a few seconds or deciseconds, but it seems to perform pretty poorly when you get to finer ranges. This makes it pretty tough to do things like have a spaceship firing a hundred lasers per second.

In the following sample, I tested how long (on average) the intervals were between 1000 timer ticks intended for 30ms. Time and time again, the results are ~35-36ms. Decreasing the time, I found the floor on the timer delay to be ~16-17ms. This gives me a max fps of ~60, which is great visually but also means I can't possibly fire more than 60 lasers per second :-(. I ran this test a few times at 100 and 1000 loops, but for both the 30ms test and the 1ms test the results didn't change. I print to a textField at the end because using trace() and launching the swf in debug mode seems to negatively affect the test. So what I'm wondering is:

Is this test a decent measure of the Timer class's performance, or are my results questionable? Will these results change dramatically on other machines? I understand this is dependent on the getTimer() method's accuracy, but the discussions I find on this topic usually center around getTimer()'s accuracy on larger intervals.

[CODE]...

View 5 Replies

ActionScript 3.0 :: Video Continues To Play When Go To Another Frame

Dec 11, 2009

My video continues to play when I click another button, I have tried using soundMix, but that cuts off all the sound to my other videos. Iam new and have been trying to serach for this problem for over 2+ weeks.

View 1 Replies

Actionscript 3 :: Make A Custom Method That Takes An Arbitrary Flex Component As An Argument?

May 15, 2011

I'm trying to write a custom fadeTo(component, x, y):void method, which takes an arbitrary Flex Component as an argument and moves it to a given location, but smoothly.

The problem I'm running into is the following.

I want to send the component itself as argument, like this: (using Button as an example only)

fadeTo(myButton, 200, 500);

(this should move myButton smoothly from its current position to the position indicated as parameter)

However, I don't really know what type an arbitrary Flex Component is. How should I handle that?

View 1 Replies

ActionScript 2.0 :: (getTimer-getTimer) Word "undefined" Is Displayed In The Textbox?

Oct 25, 2009

I'm making a racing game and am trying to have the final time displayed after I cross the finish line...In frame 4 (where the game begins) i have a setInterval timer that counts down from 20.when it reaches 0, my text is: startTime; where var startTime:Number = (getTimer()/1000).In frame 12 (where the game ends) i have

finalTime.text = endtime
// finalTime is a textbox
var endtime:Number = (_root.finishTime-_root.startTime);[code]...

when i finish the race, however, the word "undefined" is displayed in the textbox.

View 2 Replies

ActionScript 2.0 :: If Statement Frame Takes No Time?

Jan 16, 2009

I have a flash file that consists of a number of loops that play in series that allows me to change the duration of each part of the movie dependent on what is in the loop. Therefore loop 1 plays x number of times before moving on the loop 2 that plays y number of times and so on. I had worked out all my timings so that each loop last half a second. The number of times each loop plays is controlled by an if statement on the last frame of each loop. So far so good. In this main movie have another movie clip that runs independently of these loops and I noticed that although it was the same length as the main movie taking the loops into account, it would drift out of sync as the main movie progressed and looked as if it was running slow. However by tracing frame numbers of the two movies, I noticed that each time the main movie reaches on of the if statement frames although it appears to increment by one frame the other movie doesn't. By commenting out all the if statement frames both movie run in sync.

Therefore I conclude that a frame that controls the playhead position in this method does not actually last a full frame in duration, but jumps immediately to the new frame as soon as the command is encountered. Can I assume that this is constant and that frames used to move the playhead occupy no time in terms of the main timeline? Is there any documentation on this?

View 0 Replies

ActionScript 1/2 :: When Click A Separate Button That Takes Me Back To Frame 1

May 22, 2011

[Code]...

I am also having issues with the logo loading a second time when I click a separate button that takes me back to frame 1 with the code that creates the empty movie clip.

View 2 Replies

Flex - Passing Optional Arguments (rest) Through To Another Method That Takes Optional Arguments?

Feb 3, 2010

I have a "format" method that works in a similar manner to the C# String.Format method, with the following signature:

[Code]...

View 3 Replies

Actionscript 3.0 :: Counting Down Instead Of Counting Up

Jan 15, 2009

I created a timer with found tutorials and the Flash help files and everything works fine. My timer counts up from 000.000,0 to 999.000,0. Now I would like to also be able to do the same, but counting down from 999.000,0 to 000.000,0
Easy enough I thought, but now . how to make some modifications in my code to count down.

My code for counting up is the follow:

Code: Select allvar hours:Number = 0;
var seconds:Number = 0;
var minutes:Number = 0;
var pauseTime:Number = 0;

[Code].....

View 2 Replies

ActionScript 2.0 :: Created By "frame By Frame" Method Or Write?

Feb 24, 2003

i got problem to create a elastic ball, my friend said it can be created by "frame by frame" method or write action script (use math calculation)

i confuse about it, how the math calculation done actually?

View 1 Replies

ActionScript 3.0 :: When Press "breckenridge" Button It Takes To "breckenridge" Scene And Stops On The First Frame

Mar 2, 2010

Using Actionscript 3 Have a button called "breckenridge". I also have a scene called "breckenridge". On a keyframe is the following code.

[Code]....

When I test the movie and I press the "breckenridge" button it takes me to the "breckenridge" scene and stops on the the first frame. Then I get the following error message

[Code]..

my main timeline, what I am assuming is my first scene called "aspen", stops at frame 300. What gives? Okay, I know everyone hates scenes because it causes navigation problems. However I have this .fla split into sections and I intend to add more stuff to each section in the future. The easiest way I can think to organize these sections with out having a hodge podge of added stuff jumbled on one time line is to break it into scenes.

View 3 Replies

ActionScript 2.0 :: Reset A GetTimer();?

Nov 28, 2005

How do I reset a getTimer();? My script for my "game" doesn't work, here's the code:

Code:
on(press){
poang += 1;
_root.minpoang=poang;
this.gotoAndPlay(2);

[code]....

As you can see, I have tried to reset time to 0 again, but that doesn't work..[URL]

View 4 Replies

ActionScript 2.0 :: Reset The Value Of GetTimer?

Jun 4, 2002

I have an empty movie clip that tells another movie clip on the stage to move based on a variable that's based on the getTimer results something like:

onClipEvent (enterFrame) {
targetx = 0;
_root.slide.gotoAndPlay("move");

[Code].....

Now, what I want to do is to reset the value of getTimer so my movie will loop,

View 5 Replies

ActionScript 1/2 :: Catch When A Second Is Passed Using GetTimer

Jan 5, 2011

I'm trying to catch when a second is passed using getTimer. I don't want to use setInterval, because I'll need to pause, and unpause it. So.. here's my code:
 
[Code]...

What is wrong with this code? It seems that the time variable reachs 1000 milliseconds too fast.I'm not getting a second interval. How would I fix that?

View 1 Replies

ActionScript 1/2 :: Using GetTimer() As A Cache Killer?

Jan 31, 2011

I have recently been working on a Flash file that dynamically loads a movie based on the contents of a simple XML file. I was concerned about caching issues so tried to set up the code to avoid the XML file being cached causing the wrong content to be loaded. I did this by adding a dummy query string to the file link which is a numerical value generated by getTimer().In practice the system mostly worked but occasionally old content would load even though the XML had been changed. The code runs a setInterval that checks the XML every 20 seconds and checks if the loaded file specfied has changed. The code loads the XML with the following code:

The getTimer() functions starts counting in milliseconds as soon as the movie runs so there is a chance that the same query string is assigned to more than one file, meaning that an old cached version is loaded instead of the new, live file. I am now thinking about ways to improve this code and generate unique values for the query string. I thought using the epoch time - the time in milliseconds from which Flash calculates time and dates which is set to Jan 01 1970 - would generate a new value every millisecond and maybe adding an additional random number to that value to further reduce the chance of the same query string being generated more than once.

this.onEnterFrame = function () {
var nowDate:Date = new Date();
nowTime = nowDate.getTime();

[code].....

View 1 Replies

ActionScript 2.0 :: GetTimer >> Stall Timeline?

Apr 19, 2004

this doesn't work...what's wrong with it. i want to stall the timeline in an MC for 5 seconds.

Code:
now=getTimer();
if (now > 5000) {[code].........

View 14 Replies

ActionScript 2.0 :: How To GetTimer Doesn't Re-initialize

Aug 9, 2004

I have a simple slideshow that is non-interactive. It just loops five movie clips loaded externally. Each slide is shown for a certain amount of time that is determined with getTimer.The code for the slideshow is in the last frame of the root timeline. So, basically the slideshow starts when the root timeline finishes playing. The problem is that the timer works great the first time the code plays, but when I tell the player head to back up and enter the frame again, the clips play very rapidly, as though getTimer was not being initialized.

Here is the code:
stop();
square._alpha = 0;

[code].....

View 2 Replies

ActionScript 2.0 :: Any Way Of Capturing GetTimer Result?

May 18, 2007

Is it possible to capture the time in a timer? I have some English learning games for my students that use a timer. It works fine as it is. Its starts when they click start and ends when they drag the last thing into place. What I would like to do is have a bonus scene when students do exceptionally well and get some crazy low score. I don't know how to go about capturing the end time though.

View 1 Replies

ActionScript 3.0 :: GetTimer(); For Download Speed Variable

Sep 16, 2009

i have an .fla, which loads goes to different frames in the timeline according to the download speed of the user. i understand how it should work... start timer > upload file > stop timer > calculate download speed - easy?

so what is this simple code im missing to find the download speed? from my fruitless searching, the only relevant code i could find, is this:

Code:
var time1 = getTimer();
targetClip.loadMovie("example.swf");
targetClip.onLoad = function()

[Code]....

... but i have test this, which gives an undefined property error grrr.... so what is the actionscript 3, to find the value of the download speed?

View 4 Replies

Actionscript 3 :: GetTimer Results Between MOUSE_MOVE Events

Jun 27, 2010

I'm programatically dragging the play head back and forth along a timeline based on a mouse event listener. The faster the mouse drags the faster the playhead rips through the frames (it's linearly proportional). I'm also firing a starter=getTimer(); event at the inital mouse_move Event trigger (and only on the initial event) and then firing a ender=getTimer() at the end of the code that calculates the new playhead position, but only if the calculation has resulted in the playhead being told to move at least one frame (the mouse can move a few pixels before playhead will move one frame). In essence it's giving me a frame per second rate.

If I look a the delta of the two timers I rarely get anything but 0. Occasionally I'll get a 1 but not very often. There are a good few dozen heavy lines of code that need to be worked out between the initial mouse_move and the decision to move the play head, and this has to be done for a number of mouse position changes before the playhead will move at all and the second getTimer call is triggered. Does the mouseEvent trigger every ms or does it trigger at the frame rate (enterframe rate) of the doc. If so the smallest delta I should see is 31ms.

This runs as an app in the standalone swf player (10.1) and never in a browser.
Are my results indicative of this? Can the compiler really run this fast? How does one do very small timing tests that appear to be beyond the millisecond clock granularity?

View 1 Replies

Actionscript 3 :: Flash Game : GetTimer Inaccurate

Jan 17, 2012

I'm working on the game. The gameplay is based on a really small time lapse (you have only 5 secondes to do an action). My timer works great in Flash Player, i DO have 5 secondes. In a web browser (firefox, safari ..) the 5 seconds timer is now 8 seconds.

[Code]...

View 1 Replies

ActionScript 2.0 :: Combining Mouse.addListener And GetTimer?

Aug 4, 2003

I need to get my movie to check if the user has click anywhere on the interface (doesn't matter were), if there's not click after 60second, I need to send the movie back to frame1.I know is a combination of addListener(Mouse), onMouseMove and getTimer. but I'm not very good at action script yet to combine the three.

View 8 Replies

ActionScript 3.0 :: GetTimer() Returns The Same Value On Two Subsequent Frames?

Oct 9, 2011

I'm encoutering something pretty weird. My framerate is set to 60 and I have a function that listens to enterFrame events and calls getTimer() to calculate the time between steps. That usually works nicely, however when I run the swf in flash player 10.3 or 11 standalones, the time delta is detected for many steps as being '0' because getTimer() returns exactly the same thing as on the previous step. The flash movie as such doesn't skip frames (except it looks bad since everything moves according to the time delta) and the framerate is 60 as it should (EDIT: Not actually true, 0 ms frames are skipped). It doesn't even happen every time. Sometimes I run it with the aforementionned players and it's just fine, apparently for no reason. I have tried the debug and release players and the problem happens with both.I'm targeting flash player 10.0 and it works well with that standalone player, as it does with 10.1. Not targeting 10.3 might be part of the problem I guess, but I have no idea really. At any rate, I was wondering if anyone else encountered that problem before, and hopefully would know the cause. I have found nothing about it on the web so far.Technical info: I'm using flashDevelop 3.3.2 and the Flex 4.1 open source sdk

EDIT: It would seem it's not a getTimer problem. The time delta between frames is reported correctly but faulty frames do last 0ms.

View 4 Replies

ActionScript 2.0 :: GetTimer - How To Stall Timeline In MC For 5 Seconds

Apr 19, 2004

I want to stall the timeline in an MC for 5 seconds.
Code:
now=getTimer();
if (now > 5000) {
play();
} else {
gotoAndPlay(_currentframe - 1);
}

View 12 Replies

Actionscript 3 :: Call Method In A Frame From Inside A Movieclip

Feb 23, 2012

Possible Duplicate: currentFrame of root timeline from inside object In flash with as3.0, I have to call a function on the main stage from a movieClip I have this method in a frame on my scene:

[Code]...

and I would like to be able to call that method from within a movieClip, how do I point to the method?

View 1 Replies

ActionScript 1/2 :: Does GetTimer Function Affect Output Time

Feb 8, 2011

Does the getTimer function affect the output time? so it's seen different in each country? I've created adigital clock using the time received from a php. Customers see a different time than mine. (php file works perfectly and output the time in my timezone).

View 3 Replies

ActionScript 3.0 :: Pausing A Timer Without GetTimer (instead Of Stopping / Restarting)

Oct 20, 2010

I'm currently working on a detailed music media management application in Flash. There is a mp3 player which plays music and has a playback seeker (keeps track of current time for track and a tiny pin that that increases its x position as the track plays). I have a simple play & pause button that does appropriate functionality of playing & pausing the track, but the issue is that I have to pause the Timer associated with updating the playback seeker. The seekerTimer object has a delay of 1000 (1 second), while I'm listening to a track, the timer may have already excuted 600 ms, only waiting for 400 ms till the next timer event is dispatched to update the playback seeker. If I hit the pause button at 600 ms of execution time and I do a seekerTimer.stop(); and then a seekerTimer.start();, the timer does not resume its execution and instead restarts executing from 0 ms. This means that the playback seeker is not updated accordingly.

How can I pause the timer when I hit my pause button (essentially store the execution time), and then resume execution when I hit the play button? The play button doesn't have any parameters to start executing from a certain time. I looked at tutorials online but they all rely on the getTimer(); function, this returns a value of how long the Flash player has been running (from initialization). The issue is that the mp3 player in this Flash app doesn't initialize upon the application initalization (I know its a bit confusing).

View 3 Replies

ActionScript 2.0 :: GetTimer Function - Time Resets On MouseDown

Sep 27, 2005

I don't know how to do the actionscript tags so I am gonna use the PHP ones!
PHP Code:
function startTimer() {
initial = getTimer()/1000;
}

If this function gets called, what exactly happens here? Does it reset the timer? Or just gets the time the swf has been playing? Because when you use this mouse listener
PHP Code:
mouseListener = new Object();
mouseListener.onMouseDown = startTimer;
It actually resets the time everytime you mouseDown.
[Code] .....

View 3 Replies

ActionScript 2.0 :: Use GetTimer() To Call A Specific Function In Every 3 Seconds?

Dec 14, 2007

I calling a function using setInterval()... however, it behaves differently in IE7 and Firefox. It is working fine in Firefox but not in IE7.Can I use getTimer() to call a specific function in every 3 seconds...?

View 1 Replies

ActionScript 2.0 :: Accuracy Difference Between GetTimer And Date.getTime?

Aug 29, 2008

I came accross another issue regarding the accuracy between the getTimer and date.getTime functions.I use this simple script (AS2)

[Code]...

What happens if you let this simple app running is that the trace will show that the difference between the getTimer and date.getTime results slowly increases.I would assume some inaccuracy, but not one that would slowly increase during the lifetime of the application. The reason I want to compare the two values is that I want to see if someone is tampering with the application speed with a program such as Cheat Engine. And I noticed the date.getTime function isn't affected by that program, but the getTimer function is.

View 5 Replies







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