Be a Supporter!

Need to get rid of lag in flash.

  • 448 Views
  • 3 Replies
New Topic Respond to this Topic
MatchboxDan
MatchboxDan
  • Member since: Jul. 14, 2009
  • Offline.
Forum Stats
Member
Level 07
Writer
Need to get rid of lag in flash. 2010-04-30 22:20:34 Reply

So I'm trying to make an animation, and when I preview it with test movie, it lags at about the 250th frame. This makes it so I can't see if it's in sync. I'd just like a simple way to preview my work without lag.
Thanks

Nutcasenightmare
Nutcasenightmare
  • Member since: Nov. 7, 2005
  • Offline.
Forum Stats
Supporter
Level 38
Game Developer
Response to Need to get rid of lag in flash. 2010-04-30 23:28:21 Reply

At 4/30/10 10:20 PM, MatchboxDan wrote: So I'm trying to make an animation, and when I preview it with test movie, it lags at about the 250th frame. This makes it so I can't see if it's in sync. I'd just like a simple way to preview my work without lag.
Thanks

You could put the movie on very low quality.

AS2:
_root._quality = "low"

AS3:
stage.quality = "low"

If even that doesn't work you'll just have to test your movie on a faster computer, or remove stuff from the movie.

Hope this helps. :)


Games, Toons, and Other Escapes From Reality.
NutcaseNightmare [dot] com

MatchboxDan
MatchboxDan
  • Member since: Jul. 14, 2009
  • Offline.
Forum Stats
Member
Level 07
Writer
Response to Need to get rid of lag in flash. 2010-05-01 01:08:02 Reply

You could put the movie on very low quality.

AS2:
_root._quality = "low"

AS3:
stage.quality = "low"

If even that doesn't work you'll just have to test your movie on a faster computer, or remove stuff from the movie.

Hope this helps. :)

Thanks, I'll try that.

MatchboxDan
MatchboxDan
  • Member since: Jul. 14, 2009
  • Offline.
Forum Stats
Member
Level 07
Writer
Response to Need to get rid of lag in flash. 2010-05-01 01:38:44 Reply

That worked pretty well, thanks man