RE: [Flashcoders] Getting Frames Per Second

2007-01-24 Thread Steven Sacks | BLITZ
> Is there a way to know the original fps of a loaded swf? I > mean, the fps to which it was compiled to, not the actual framerate? Sure, decompile it. :) http://www.sothink.com/ FYI, you can set Flash to 24fps and runtime framerate calculators will show it's running 35-38 fps. The player ain

Re: [Flashcoders] Getting Frames Per Second

2007-01-24 Thread Zárate
Is there a way to know the original fps of a loaded swf? I mean, the fps to which it was compiled to, not the actual framerate? Cheers, Juan On 1/23/07, Eskil Janson <[EMAIL PROTECTED]> wrote: Hi Daniel! If you want something more graphical, you can download my framechecker at: http://www.fl

Re: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Eskil Janson
Hi Daniel! If you want something more graphical, you can download my framechecker at: http://www.flashakademin.se/framechecker/framechecker.fla Drag the performacetester clip from the library of the fla to the stage of any .fla you want to test, and you will see how the framerate fluctuates ov

RE: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Marc Hoffman
Daniel, Try this, from Colin Moock: http://www.moock.org/webdesign/flash/actionscript/fps-speedometer/ A bit dated, but still should work fine or at least give you a headstart building your own. Marc Hoffman At 10:20 AM

Re: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread slangeberg
testing flash applications on slower computers and different OS. Daniel Holth -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Hairy Dog Digital Sent: Tuesday, January 23, 2007 11:17 AM To: 'Flashcoders mailing list' Subject: RE: [Flashcoders] Getti

RE: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Steven Sacks | BLITZ
In addition to being the best Flash debugging tool on the planet, Xray has a built in Framerate display. http://www.osflash.org/xray :) ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.fig

RE: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Holth, Daniel C.
st' Subject: RE: [Flashcoders] Getting Frames Per Second Hi Daniel, Just out of curiosity, why do you need to detect/see the framerate in your published SWF? ...Rob ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or sear

RE: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Hairy Dog Digital
Hi Daniel, Just out of curiosity, why do you need to detect/see the framerate in your published SWF? ...Rob ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/f

Re: [Flashcoders] Getting Frames Per Second

2007-01-23 Thread Hans Wichman
Hi, something like this? var lastTime = getTimer(); onEnterFrame() { trace("fps="+(1/(getTimer()-lastTime))); lastTime = getTimer() } greetz JC On 1/23/07, Holth, Daniel C. <[EMAIL PROTECTED]> wrote: So I feel like this should be obvious, but is there built in functionality in Flash 8 to

[Flashcoders] Getting Frames Per Second

2007-01-23 Thread Holth, Daniel C.
So I feel like this should be obvious, but is there built in functionality in Flash 8 to get the FPS of the currently running SWF? If there isn't, does anyone have some code snippets that do it? I tried setting intervals to check how many frames have passsed since the last check, but that eve