Re: [Flashcoders] as 3 help

2007-01-10 Thread eka
Hello :) Flash 9 IDE don't exist for the moment.. only a alpha release of Flash8 with optional extension to used Flex2 SDK. You can read the Flex2 sdk documentation to used AS3 in Flash with the AS3 extension or wait the final version of Flash 9 :)

RE: [Flashcoders] as 3 help

2007-01-10 Thread Merrill, Jason
Does anyone know if macromedia is going to add the help files to the flash 9 IDE? No, but Adobe will. Look at the Flex 2 docs online to see the the AS 3.0 docs. Jason Merrill Bank of America Learning Organizational Effectiveness ___

Re: [Flashcoders] as 3 help

2006-09-06 Thread Meinte van't Kruis
use the displayObjects' function AddEventListener, like this: this.addEventListener(Event.ENTER_FRAME,enterFrame); and then have function function enterFrame(e:Event){ } dont forgot the e:Event parameter in enterFrame, it will cause an error if you don't include that. Also, read the API ref,