Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
8answers
3k views

Flex profiling - what is [enterFrameEvent] doing?

I've been tasked with finding (and potentially fixing) some serious performance problems with a Flex application that was delivered to us. The application will consistently take up 50 to 100% of the ...
2
votes
2answers
198 views

Which Is More Efficient, Embeddeing an FLV or Compiling an FLV to a SWF and Loading it Dynamically?

Recently I took on a rather daunting task of creating an interactive music video for the popular show Ghost Whisperer. I was brought in late in the project and was confronted with a giant authoring ...
1
vote
2answers
156 views

Is there an equivalent of EnterFrame event in Expression Blend/WPF, If not how do we get around it?

i am moving from AS3 and Java to Expression Blend/WPF, but cant seem to figure out how to replicate EnterFrame event in C#, is there a update() or frameUpdate() function.
1
vote
3answers
1k views

check keyboard state without using KeyboardEvent in AS3

Is it possible to check for pressed keys without using the KeyboardEvent? I have an ENTER_FRAME event setup called enterFrameHandler and I want to check within the function enterFrameHandler if any ...
0
votes
3answers
122 views

AS3 Make enemy move towards mouse

package { import enemies.Enemy; import flash.display.Sprite; import flash.events.*; public class Main extends Sprite { // a place to store the enemy public var enemy:Enemy; private ...
0
votes
0answers
20 views

enterFrame and frame management

I am shooting a ball to the right of the screen (landscape) and programmatically scrolling the background until the ball comes to a stop. I'm using Runtime:addEventListener("enterFrame", ...
0
votes
3answers
478 views

A loop in enterframe?

I'm animating a bunch of words in AS3. Because I'm going to be using this on a mobile device, I want to use bitmaps rather than Sprites. So I've created WordObjects, which have a .bitmap property that ...
0
votes
1answer
767 views

AS3: Delay Enter Frame Animation

I've got a fade out animation using ENTER_FRAME. I want the fade out to start after 2-3 seconds. How can I create this delay? txtAlert.addEventListener(Event.ENTER_FRAME,animAlert); function ...
0
votes
1answer
317 views

Enter Frame does not detect hitTestObject precisely when tweenling

I have a function with Enter_Frame running and have it tween during the function. I know you could use object.y=object.y + 1 instead of the TweenLite i'm using now. But TweenLite gives the best effect ...